From 180b39b55b092de6636de644aaef4dc8bf270cf3 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 1 Feb 2003 17:50:27 +0000 Subject: [PATCH] * Makefile.am: move built files to nodist_ targets so they don't end up in the dist tarfile. (guile_TEXINFOS): remove autoconf-macros.texi. (nodist_guile_TEXINFOS): add autoconf-macros.texi. (autoconf-macros.texi): don't write to $(srcdir) -- breaks distcheck. --- doc/ref/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/ref/Makefile.am b/doc/ref/Makefile.am index 1ef1beded..40cc48c0b 100644 --- a/doc/ref/Makefile.am +++ b/doc/ref/Makefile.am @@ -33,16 +33,18 @@ guile_TEXINFOS = preface.texi intro.texi program.texi scheme-intro.texi \ slib.texi posix.texi \ expect.texi scsh.texi tcltk.texi scripts.texi gh.texi scm.texi \ debugging.texi indices.texi script-getopt.texi data-rep.texi \ - autoconf.texi autoconf-macros.texi tools.texi \ + autoconf.texi tools.texi \ extend.texi repl-modules.texi srfi-modules.texi misc-modules.texi +nodist_guile_TEXINFOS = autoconf-macros.texi + include $(top_srcdir)/am/pre-inst-guile # Automated snarfing autoconf.texi: autoconf-macros.texi autoconf-macros.texi: $(top_srcdir)/guile-config/guile.m4 - $(preinstguiletool)/snarf-guile-m4-docs $< > $(srcdir)/$@ + $(preinstguiletool)/snarf-guile-m4-docs $< > $@ # Optionally support building an HTML version of the reference manual.