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)
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
19 ## We want to force the .info file to be built in srcdir. This is
20 ## probably the simplest way.
22 && $(MAKEINFO) `echo $< | sed 's,.*/,,'`
25 TEXINPUTS=$(srcdir):$$TEXINPUTS $(TEXI2DVI) $<
28 ## We want to force the .info file to be built in srcdir. This is
29 ## probably the simplest way.
31 && $(MAKEINFO) `echo $< | sed 's,.*/,,'`
34 TEXINPUTS=$(srcdir):$$TEXINPUTS $(TEXI2DVI) $<
36 ## Look in both . and srcdir because the info pages might have been
37 ## rebuilt in the build directory. Can't cd to srcdir; that might
38 ## break a possible install-sh reference.
39 install-info: $(INFO_DEPS)
41 $(mkinstalldirs) $(infodir)
42 for file in $(INFO_DEPS); do \
43 ## We use these strange circumlocutions because we want the "ifile" to
44 ## be relative, for the install.
45 for ifile in `cd $(srcdir) && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
46 if test -f $(srcdir)/$$ifile; then \
47 $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile; \
52 ## Only run this code if install-info actually exists.
53 if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
54 for file in $(INFO_DEPS); do \
55 install-info --info-dir=$(infodir) $$file; \
60 if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
63 for file in $(INFO_DEPS); do \
64 (cd $(infodir) && rm -f $$file $$file-[0-9] $$file-[0-9][0-9]); \
65 test -z $ii || install-info --info-dir=$(infodir) --remove $$file; \