Version 0.25
[automake.git] / texinfos.am
blob7735374b72474636229604256062bec66b004bff
1 .texi.info:
2         $(MAKEINFO) -I$(srcdir) $<
4 .texi.dvi:
5         TEXINPUTS=$(srcdir):$$TEXINPUTS $(TEXI2DVI) $<
7 ## Look in both . and srcdir because the info pages might have been
8 ## rebuilt in the build directory.  Can't cd to srcdir; that might
9 ## break a possible install-sh reference.
10 install-info: $(INFO_DEPS)
11         $(top_srcdir)/mkinstalldirs $(infodir)
12         for file in $(INFO_DEPS); do            \
13           if test -f $$file; then               \
14             d=.;                                \
15           else                                  \
16             d=$(srcdir);                        \
17           fi;                                   \
18 ## This ${...} is in the shell, not in make.
19           for ifile in $${file}*; do            \
20             $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \
21           done;                                 \
22           $(SHELL) -c 'install-info --version' >/dev/null 2>&1 \
23             && install-info --infodir=$(infodir) $$d/$$file; \
24         done
26 uninstall-info:
27         cd $(srcdir) && for file in *.info*; do
28           rm -f $(infodir)/$$file; \
29         done