1 ## automake - create Makefile.in from Makefile.am
2 ## Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 ## Free Software Foundation, Inc.
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ## GNU General Public License for more details.
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 ## The way to make PostScript, for those who want it.
25 ## Look in both . and srcdir because the info pages might have been
26 ## rebuilt in the build directory. Can't cd to srcdir; that might
27 ## break a possible install-sh reference.
28 ## Funny name due to --cygnus influence; we want to reserve
29 ## `install-info' for the user.
30 ?INSTALL-INFO?_am_installdirs += $(DESTDIR)$(infodir)
31 .PHONY: install-info-am
32 ?INSTALL-INFO?install-data-am: install-info-am
33 install-info-am: $(INFO_DEPS)
35 $(mkinstalldirs) $(DESTDIR)$(infodir)
36 @list='$(INFO_DEPS)'; \
37 for file in $$list; do \
38 ?CYGNUS? if test -f $$file; then d=.; else d=$(srcdir); fi; \
39 ?!CYGNUS? d=$(srcdir); \
40 ## We use these strange circumlocutions because we want the "ifile" to
41 ## be relative, for the install.
42 for ifile in `CDPATH=: && cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
43 if test -f $$d/$$ifile; then \
44 echo " $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile"; \
45 $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile; \
50 ## Only run this code if install-info actually exists, and it is not
51 ## the Debian install-info. FIXME: once Debian install-info goes
52 ## away, we can remove this hack.
53 @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
54 list='$(INFO_DEPS)'; \
55 for file in $$list; do \
56 ## Run `:' after install-info in case install-info fails. We really
57 ## don't care about failures here, because they can be spurious. For
58 ## instance if you don't have a dir file, install-info will fail. I
59 ## think instead it should create a new dir file for you. This bug
60 ## causes the `make distcheck' target to fail reliably.
61 echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file";\
62 ## Use `|| :' here because Sun make passes -e to sh; if install-info
63 ## fails then we'd fail if we used `;'.
64 install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file || :;\
68 .PHONY: uninstall-info
69 ?INSTALL-INFO?uninstall-am: uninstall-info
72 ## Run two loops here so that we can handle PRE_UNINSTALL and
73 ## NORMAL_UNINSTALL correctly.
74 @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
75 list='$(INFO_DEPS)'; \
76 for file in $$list; do \
77 ## install-info needs the actual info file. We use the installed one,
78 ## rather than relying on one still being in srcdir or builddir.
79 echo " install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$file"; \
80 install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$file; \
84 @list='$(INFO_DEPS)'; \
85 for file in $$list; do \
86 (if cd $(DESTDIR)$(infodir); then \
87 echo " rm -f $$file $$file-[0-9] $$file-[0-9][0-9])"; \
88 rm -f $$file $$file-[0-9] $$file-[0-9][0-9]; \
93 dist-info: $(INFO_DEPS)
94 list='$(INFO_DEPS)'; \
95 for base in $$list; do \
96 ## In Cygnus mode, allow info file to be in source or build dir. In
97 ## other modes, allow only source dir.
98 ?!CYGNUS? d=$(srcdir); \
99 ?CYGNUS? if test -f $$base; then d=.; else d=$(srcdir); fi; \
100 for file in `CDPATH=: && cd $$d && eval echo $$base*`; do \
101 test -f $(distdir)/$$file \
102 || cp -p $$d/$$file $(distdir)/$$file; \
107 ## How to clean. The funny name is due to --cygnus influence; in
108 ## Cygnus mode, `clean-info' is a target that users can use.
110 .PHONY: mostlyclean-aminfo
111 mostlyclean-am: mostlyclean-aminfo
115 .PHONY: maintainer-clean-aminfo
116 maintainer-clean-am: maintainer-clean-aminfo
117 maintainer-clean-aminfo:
118 ## Eww. But how else can we find all the output files from makeinfo?
119 ?!CYGNUS? cd $(srcdir) && \
120 for i in $(INFO_DEPS); do \
122 if test "`echo $$i-[0-9]*`" != "$$i-[0-9]*"; then \
127 ?CYGNUS?.PHONY: clean-info
128 ?CYGNUS?clean-info: mostlyclean-aminfo