diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-08-01 22:01:13 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-08-01 22:01:13 +0000 |
commit | fb4e1ba7a0121d1ec25d64c435bbe34d8af2c483 (patch) | |
tree | 56943425b2911615f1f19a77184fa1d158c23ab0 /gnu/usr.bin/texinfo/doc/Makefile.am | |
parent | 80b94d3721d130e60304019cc5c83ede42cd48a1 (diff) |
Import of FSF texinfo 3.11
Diffstat (limited to 'gnu/usr.bin/texinfo/doc/Makefile.am')
-rw-r--r-- | gnu/usr.bin/texinfo/doc/Makefile.am | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/gnu/usr.bin/texinfo/doc/Makefile.am b/gnu/usr.bin/texinfo/doc/Makefile.am new file mode 100644 index 00000000000..68efe846abb --- /dev/null +++ b/gnu/usr.bin/texinfo/doc/Makefile.am @@ -0,0 +1,56 @@ +## Makefile.am for texinfo/emacs. +## $Id: Makefile.am,v 1.1 1997/08/01 22:01:12 kstailey Exp $ +## Run automake in .. to produce Makefile.in from this. + +info_TEXINFOS = info-stnd.texi info.texi texinfo.texi + +# Use the makeinfo built in our distribution. +MAKEINFO = ../makeinfo/makeinfo + +# Include our texinfo.tex, not Automake's. +EXTRA_DIST = macro.texi userdoc.texi epsf.tex texinfo.tex + +# We try to discover this via configure just to give a better help message. +TEXMF = @TEXMF@ + +install-data-local: + @echo "WARNING: You must install texinfo.tex and epsf.tex manually," + @echo "WARNING: perhaps in $(TEXMF)/tex/texinfo/" + @echo "WARNING: and $(TEXMF)/tex/generic/dvips/ respectively." + @echo "WARNING: See doc/README for some considerations." + +# Do not create info files for distribution. +dist-info: + +# Do not try to build the info files in $(srcdir), +# since we don't distribute them. +.texi.info: + $(MAKEINFO) -I$(srcdir) `echo $< | sed 's,.*/,,'` +texinfo: $(srcdir)/texinfo.texi + $(MAKEINFO) -I$(srcdir) texinfo.texi + +# Do not try to install them from $(srcdir). +install-info-am: $(INFO_DEPS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(infodir) + @for file in $(INFO_DEPS); do \ + d=.; \ + for ifile in `cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \ + if test -f $$d/$$ifile; then \ + echo " $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile"; \ + $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \ + else : ; fi; \ + done; \ + done + @$(POST_INSTALL) + @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \ + for file in $(INFO_DEPS); do \ + echo " install-info --info-dir=$(infodir) $(infodir)/$$file";\ + install-info --info-dir=$(infodir) $(infodir)/$$file || :;\ + done; \ + else : ; fi + + +# Remove them at make distclean. +distclean-aminfo: + rm -f texinfo texinfo-* info*.info* |