1eb3e8442f
From-SVN: r18770
57 lines
1.8 KiB
Makefile
57 lines
1.8 KiB
Makefile
## Makefile.am for texinfo/emacs.
|
|
## $Id: Makefile.am,v 1.1 1998/03/23 04:42:12 law 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*
|