Make the installation/uninstallation of Info pages follow the
[platform/upstream/automake.git] / lib / am / texinfos.am
1 ## automake - create Makefile.in from Makefile.am
2 ## Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 ## Free Software Foundation, Inc.
4
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)
8 ## any later version.
9
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.
14
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
18 ## 02111-1307, USA.
19
20 ## The way to make PostScript, for those who want it.
21 DVIPS = dvips
22 .dvi.ps:
23         $(DVIPS) $< -o $@
24
25 .PHONY: info info-am dvi dvi-am
26 ?SUBDIRS?.PHONY info: info-recursive
27 ?SUBDIRS?.PHONY dvi: dvi-recursive
28 ?!SUBDIRS?info: info-am
29 ?!SUBDIRS?dvi: dvi-am
30 info-am: $(INFO_DEPS)
31 dvi-am: $(DVIS)
32
33 ## Look in both . and srcdir because the info pages might have been
34 ## rebuilt in the build directory.  Can't cd to srcdir; that might
35 ## break a possible install-sh reference.
36 ##
37 ## Funny name due to --cygnus influence; we want to reserve
38 ## `install-info' for the user.
39 ##
40 ## TEXINFOS primary are always installed in infodir, hence install-data
41 ## is hard coded.
42 ?INSTALL-INFO?_am_installdirs += $(DESTDIR)$(infodir)
43 ?SUBDIRS?.PHONY install-info: install-info-recursive
44 ?!SUBDIRS?.PHONY install-info: install-info-am
45 ?INSTALL-INFO?install-data-am: install-info-am
46 install-info-am: $(INFO_DEPS)
47         @$(NORMAL_INSTALL)
48         $(mkinstalldirs) $(DESTDIR)$(infodir)
49         @list='$(INFO_DEPS)'; \
50         for file in $$list; do \
51 ?CYGNUS?          if test -f $$file; then d=.; else d=$(srcdir); fi; \
52 ?!CYGNUS?         d=$(srcdir); \
53 ## We use these strange circumlocutions because we want the "ifile" to
54 ## be relative, for the install.
55           for ifile in `CDPATH=: && cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
56             if test -f $$d/$$ifile; then \
57               echo " $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile"; \
58               $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile; \
59             else : ; fi; \
60           done; \
61         done
62         @$(POST_INSTALL)
63 ## Only run this code if install-info actually exists, and it is not
64 ## the Debian install-info.  FIXME: once Debian install-info goes
65 ## away, we can remove this hack.
66         @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
67           list='$(INFO_DEPS)'; \
68           for file in $$list; do \
69 ## Run `:' after install-info in case install-info fails.  We really
70 ## don't care about failures here, because they can be spurious.  For
71 ## instance if you don't have a dir file, install-info will fail.  I
72 ## think instead it should create a new dir file for you.  This bug
73 ## causes the `make distcheck' target to fail reliably.
74             echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file";\
75 ## Use `|| :' here because Sun make passes -e to sh; if install-info
76 ## fails then we'd fail if we used `;'.
77             install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file || :;\
78           done; \
79         else : ; fi
80
81
82 ## ------------------------- ##
83 ## Uninstalling info pages.  ##
84 ## ------------------------- ##
85
86 ?SUBDIRS?.PHONY uninstall-info: uninstall-info-recursive
87 ?!SUBDIRS?.PHONY uninstall-info: uninstall-info-am
88 ?INSTALL-INFO?uninstall-am: uninstall-info-am
89 uninstall-info-am:
90         $(PRE_UNINSTALL)
91 ## Run two loops here so that we can handle PRE_UNINSTALL and
92 ## NORMAL_UNINSTALL correctly.
93         @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
94           list='$(INFO_DEPS)'; \
95           for file in $$list; do \
96 ## install-info needs the actual info file.  We use the installed one,
97 ## rather than relying on one still being in srcdir or builddir.
98             echo " install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$file"; \
99             install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$file; \
100           done; \
101         else :; fi
102         @$(NORMAL_UNINSTALL)
103         @list='$(INFO_DEPS)'; \
104         for file in $$list; do \
105           (if cd $(DESTDIR)$(infodir); then \
106              echo " rm -f $$file $$file-[0-9] $$file-[0-9][0-9])"; \
107              rm -f $$file $$file-[0-9] $$file-[0-9][0-9]; \
108            else :; fi); \
109         done
110
111 .PHONY: dist-info
112 dist-info: $(INFO_DEPS)
113         list='$(INFO_DEPS)'; \
114         for base in $$list; do \
115 ## In Cygnus mode, allow info file to be in source or build dir.  In
116 ## other modes, allow only source dir.
117 ?!CYGNUS?         d=$(srcdir); \
118 ?CYGNUS?          if test -f $$base; then d=.; else d=$(srcdir); fi; \
119           for file in `CDPATH=: && cd $$d && eval echo $$base*`; do \
120             test -f $(distdir)/$$file \
121             || cp -p $$d/$$file $(distdir)/$$file; \
122           done; \
123         done
124
125
126 ## How to clean.  The funny name is due to --cygnus influence; in
127 ## Cygnus mode, `clean-info' is a target that users can use.
128
129 .PHONY: mostlyclean-aminfo
130 mostlyclean-am: mostlyclean-aminfo
131 mostlyclean-aminfo:
132 %TEXICLEAN%
133
134 .PHONY: maintainer-clean-aminfo
135 maintainer-clean-am: maintainer-clean-aminfo
136 maintainer-clean-aminfo:
137 ## Eww.  But how else can we find all the output files from makeinfo?
138 ?!CYGNUS?       cd $(srcdir) && \
139         for i in $(INFO_DEPS); do \
140           rm -f $$i; \
141           if test "`echo $$i-[0-9]*`" != "$$i-[0-9]*"; then \
142             rm -f $$i-[0-9]*; \
143           fi; \
144         done
145
146 ?CYGNUS?.PHONY: clean-info
147 ?CYGNUS?clean-info: mostlyclean-aminfo