Can put version in AUTOMAKE_OPTIONS. Bug fixes
[automake.git] / texinfos.am
blobcafd9dfb7ca55e18439fb27eca25b6588a6cd64b
1 ## automake - create Makefile.in from Makefile.am
2 ## Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
4 ## This program is free software; you can redistribute it and/or modify
5 ## it under the terms of the GNU General Public License as published by
6 ## the Free Software Foundation; either version 2, or (at your option)
7 ## any later version.
9 ## This program is distributed in the hope that it will be useful,
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ## GNU General Public License for more details.
14 ## You should have received a copy of the GNU General Public License
15 ## along with this program; if not, write to the Free Software
16 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17 ## 02111-1307, USA.
18 .texi.info:
19         $(MAKEINFO) -I$(srcdir) $<
21 .texi.dvi:
22         TEXINPUTS=$(srcdir):$$TEXINPUTS $(TEXI2DVI) $<
24 ## Look in both . and srcdir because the info pages might have been
25 ## rebuilt in the build directory.  Can't cd to srcdir; that might
26 ## break a possible install-sh reference.
27 install-info: $(INFO_DEPS)
28         $(top_srcdir)/mkinstalldirs $(infodir)
29         for file in $(INFO_DEPS); do            \
30 ## We use these strange circumlocutions because we want the "ifile" to
31 ## be relative, for the install.
32           for ifile in `cd $(srcdir) && echo $$file*`; do \
33             $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile; \
34           done;                                 \
35 ## We need the 'else' because in some broken versions of sh 'if' will
36 ## return false if the test fails.  We use ':' because the GNU
37 ## standards prohibit us from using 'true'.
38 ## FIXME no one has install-info, so for now we just comment it out.
39 ##        if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
40 ##          install-info --infodir=$(infodir) $$d/$$file; \
41 ##        else :; fi;                           \
42         done
44 uninstall-info:
45         cd $(srcdir) && for file in *.info*; do \
46           rm -f $(infodir)/$$file; \
47         done