* lib/am/texinfos.am (install-info-am, uninstall-info-am): Be robust
[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 ## ----------- ##
21 ## Variables.  ##
22 ## ----------- ##
23
24 if %?LOCAL-TEXIS%
25 if ! %?CYGNUS%
26 MAKEINFO = @MAKEINFO@
27 TEXI2DVI = texi2dvi
28
29 else %?CYGNUS%
30
31 ## Find these programs wherever they may lie.  Yes, this has
32 ## intimate knowledge of the structure of the texinfo distribution.
33 MAKEINFO = `if test -f $(top_builddir)/../texinfo/makeinfo/makeinfo; then \
34             echo $(top_builddir)/../texinfo/makeinfo/makeinfo; \
35           else \
36             echo makeinfo; \
37           fi`
38
39 TEXI2DVI = `if test -f $(top_srcdir)/../texinfo/util/texi2dvi; then \
40              echo $(top_srcdir)/../texinfo/util/texi2dvi; \
41            else \
42              echo texi2dvi; \
43            fi`
44 endif %?CYGNUS%
45 endif %?LOCAL-TEXIS%
46
47
48 ## ---------- ##
49 ## Building.  ##
50 ## ---------- ##
51
52 ## The way to make PostScript, for those who want it.
53 if %?LOCAL-TEXIS%
54 DVIPS = dvips
55 .dvi.ps:
56         $(DVIPS) $< -o $@
57 endif %?LOCAL-TEXIS%
58
59 .PHONY: info info-am dvi dvi-am
60 if %?SUBDIRS%
61 RECURSIVE_TARGETS += info-recursive dvi-recursive
62 .PHONY info: info-recursive
63 .PHONY dvi: dvi-recursive
64 else !%?SUBDIRS%
65 info: info-am
66 dvi: dvi-am
67 endif !%?SUBDIRS%
68
69 if %?LOCAL-TEXIS%
70 info-am: $(INFO_DEPS)
71 dvi-am: $(DVIS)
72 else ! %?LOCAL-TEXIS%
73 info-am:
74 dvi-am:
75 endif ! %?LOCAL-TEXIS%
76
77
78 ## ------------ ##
79 ## Installing.  ##
80 ## ------------ ##
81
82 ## Look in both . and srcdir because the info pages might have been
83 ## rebuilt in the build directory.  Can't cd to srcdir; that might
84 ## break a possible install-sh reference.
85 ##
86 ## Funny name due to --cygnus influence; we want to reserve
87 ## `install-info' for the user.
88 ##
89 ## TEXINFOS primary are always installed in infodir, hence install-data
90 ## is hard coded.
91 if %?INSTALL-INFO%
92 if %?LOCAL-TEXIS%
93 _am_installdirs += $(DESTDIR)$(infodir)
94 install-data-am: install-info-am
95 endif %?LOCAL-TEXIS%
96 if %?SUBDIRS%
97 RECURSIVE_TARGETS += install-info-recursive
98 .PHONY install-info: install-info-recursive
99 else !%?SUBDIRS%
100 .PHONY install-info: install-info-am
101 endif !%?SUBDIRS%
102 endif %?INSTALL-INFO%
103
104 if %?LOCAL-TEXIS%
105 install-info-am: $(INFO_DEPS)
106         @$(NORMAL_INSTALL)
107         $(mkinstalldirs) $(DESTDIR)$(infodir)
108         @list='$(INFO_DEPS)'; \
109         for file in $$list; do \
110 ?CYGNUS?          if test -f $$file; then d=.; else d=$(srcdir); fi; \
111 ?!CYGNUS?         d=$(srcdir); \
112 ## We use these strange circumlocutions because we want the "ifile" to
113 ## be relative, for the install.
114           for ifile in `CDPATH=: && cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
115             if test -f $$d/$$ifile; then \
116               echo " $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile"; \
117               $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile; \
118             else : ; fi; \
119           done; \
120         done
121         @$(POST_INSTALL)
122 ## Only run this code if install-info actually exists, and it is not
123 ## the Debian install-info.  FIXME: once Debian install-info goes
124 ## away, we can remove this hack.  Debian install-info v1.8.3
125 ## prints version info to stderr.
126 ##
127 ## Do not use
128 ##    install-info --version 2>&1 | sed 1q | fgrep -s -v -i debian
129 ## as if install-info does not exist, fgrep -v will be happy, and
130 ## therefore the code will be triggered although install-info is missing.
131         @if (install-info --version && \
132              install-info --version | fgrep -i -v debian) >/dev/null 2>&1; then \
133           list='$(INFO_DEPS)'; \
134           for file in $$list; do \
135 ## Run `:' after install-info in case install-info fails.  We really
136 ## don't care about failures here, because they can be spurious.  For
137 ## instance if you don't have a dir file, install-info will fail.  I
138 ## think instead it should create a new dir file for you.  This bug
139 ## causes the `make distcheck' target to fail reliably.
140             echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file";\
141 ## Use `|| :' here because Sun make passes -e to sh; if install-info
142 ## fails then we'd fail if we used `;'.
143             install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file || :;\
144           done; \
145         else : ; fi
146 else ! %?LOCAL-TEXIS%
147 install-info-am:
148 endif ! %?LOCAL-TEXIS%
149
150
151 ## -------------- ##
152 ## Uninstalling.  ##
153 ## -------------- ##
154
155 ?SUBDIRS?RECURSIVE_TARGETS += uninstall-info-recursive
156 ?SUBDIRS?.PHONY uninstall-info: uninstall-info-recursive
157 ?!SUBDIRS?.PHONY uninstall-info: uninstall-info-am
158 ?INSTALL-INFO?uninstall-am: uninstall-info-am
159
160 if %?LOCAL-TEXIS%
161 uninstall-info-am:
162         $(PRE_UNINSTALL)
163 ## Run two loops here so that we can handle PRE_UNINSTALL and
164 ## NORMAL_UNINSTALL correctly.  Debian install-info v1.8.3 prints
165 ## version info to stderr.
166         @if (install-info --version && \
167              install-info --version | fgrep -i -v debian) >/dev/null 2>&1; then \
168           list='$(INFO_DEPS)'; \
169           for file in $$list; do \
170 ## install-info needs the actual info file.  We use the installed one,
171 ## rather than relying on one still being in srcdir or builddir.
172             echo " install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$file"; \
173             install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$file; \
174           done; \
175         else :; fi
176         @$(NORMAL_UNINSTALL)
177         @list='$(INFO_DEPS)'; \
178         for file in $$list; do \
179           (if cd $(DESTDIR)$(infodir); then \
180              echo " rm -f $$file $$file-[0-9] $$file-[0-9][0-9])"; \
181              rm -f $$file $$file-[0-9] $$file-[0-9][0-9]; \
182            else :; fi); \
183         done
184 else ! %?LOCAL-TEXIS%
185 uninstall-info-am:
186 endif ! %?LOCAL-TEXIS%
187
188 if %?LOCAL-TEXIS%
189 .PHONY: dist-info
190 dist-info: $(INFO_DEPS)
191         list='$(INFO_DEPS)'; \
192         for base in $$list; do \
193 ## In Cygnus mode, allow info file to be in source or build dir.  In
194 ## other modes, allow only source dir.
195 ?!CYGNUS?         d=$(srcdir); \
196 ?CYGNUS?          if test -f $$base; then d=.; else d=$(srcdir); fi; \
197           for file in `CDPATH=: && cd $$d && eval echo $$base*`; do \
198             test -f $(distdir)/$$file \
199             || cp -p $$d/$$file $(distdir)/$$file; \
200           done; \
201         done
202 endif %?LOCAL-TEXIS%
203
204
205 ## ---------- ##
206 ## Cleaning.  ##
207 ## ---------- ##
208
209 ## The funny name is due to --cygnus influence; in Cygnus mode,
210 ## `clean-info' is a target that users can use.
211
212 if %?LOCAL-TEXIS%
213 .PHONY: mostlyclean-aminfo
214 mostlyclean-am: mostlyclean-aminfo
215 mostlyclean-aminfo:
216         -rm -f %TEXICLEAN%
217
218 .PHONY: maintainer-clean-aminfo
219 maintainer-clean-am: maintainer-clean-aminfo
220 maintainer-clean-aminfo:
221 ## Eww.  But how else can we find all the output files from makeinfo?
222 ?!CYGNUS?       cd $(srcdir) && \
223         for i in $(INFO_DEPS); do \
224           rm -f $$i; \
225           if test "`echo $$i-[0-9]*`" != "$$i-[0-9]*"; then \
226             rm -f $$i-[0-9]*; \
227           fi; \
228         done
229
230 ?CYGNUS?.PHONY: clean-info
231 ?CYGNUS?clean-info: mostlyclean-aminfo
232 endif %?LOCAL-TEXIS%