* lib/am/texinfos.am (install-info-am, uninstall-info-am): Install
[platform/upstream/automake.git] / lib / am / texinfos.am
1 ## automake - create Makefile.in from Makefile.am
2
3 ## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4 ## Free Software Foundation, Inc.
5
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2, or (at your option)
9 ## any later version.
10
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 ## 02111-1307, USA.
20
21 ## ----------- ##
22 ## Variables.  ##
23 ## ----------- ##
24
25 if %?LOCAL-TEXIS%
26 if ! %?CYGNUS%
27 MAKEINFO = @MAKEINFO@
28 TEXI2DVI = texi2dvi
29
30 else %?CYGNUS%
31
32 ## Find these programs wherever they may lie.  Yes, this has
33 ## intimate knowledge of the structure of the texinfo distribution.
34 MAKEINFO = `if test -f $(top_builddir)/../texinfo/makeinfo/makeinfo; then \
35             echo $(top_builddir)/../texinfo/makeinfo/makeinfo; \
36           else \
37             echo makeinfo; \
38           fi`
39
40 TEXI2DVI = `if test -f $(top_srcdir)/../texinfo/util/texi2dvi; then \
41              echo $(top_srcdir)/../texinfo/util/texi2dvi; \
42            else \
43              echo texi2dvi; \
44            fi`
45 endif %?CYGNUS%
46
47 TEXI2PDF = $(TEXI2DVI) --pdf --batch
48 endif %?LOCAL-TEXIS%
49
50
51 ## ---------- ##
52 ## Building.  ##
53 ## ---------- ##
54
55 ## The way to make PostScript, for those who want it.
56 if %?LOCAL-TEXIS%
57 DVIPS = dvips
58 .dvi.ps:
59         $(DVIPS) -o $@ $<
60 endif %?LOCAL-TEXIS%
61
62 .PHONY: info info-am dvi dvi-am pdf pdf-am
63 if %?SUBDIRS%
64 RECURSIVE_TARGETS += info-recursive dvi-recursive pdf-recursive ps-recursive
65 .PHONY info: info-recursive
66 .PHONY dvi: dvi-recursive
67 .PHONY pdf: pdf-recursive
68 .PHONY ps: ps-recursive
69 else !%?SUBDIRS%
70 info: info-am
71 dvi: dvi-am
72 pdf: pdf-am
73 ps: ps-am
74 endif !%?SUBDIRS%
75
76 if %?LOCAL-TEXIS%
77 info-am: $(INFO_DEPS)
78 dvi-am: $(DVIS)
79 pdf-am: $(PDFS)
80 ps-am: $(PSS)
81 else ! %?LOCAL-TEXIS%
82 info-am:
83 dvi-am:
84 pdf-am:
85 ps-am:
86 endif ! %?LOCAL-TEXIS%
87
88
89 ## ------------ ##
90 ## Installing.  ##
91 ## ------------ ##
92
93 ## Look in both . and srcdir because the info pages might have been
94 ## rebuilt in the build directory.  Can't cd to srcdir; that might
95 ## break a possible install-sh reference.
96 ##
97 ## Funny name due to --cygnus influence; we want to reserve
98 ## `install-info' for the user.
99 ##
100 ## TEXINFOS primary are always installed in infodir, hence install-data
101 ## is hard coded.
102 if %?INSTALL-INFO%
103 if %?LOCAL-TEXIS%
104 am__installdirs += $(DESTDIR)$(infodir)
105 install-data-am: install-info-am
106 endif %?LOCAL-TEXIS%
107 if %?SUBDIRS%
108 RECURSIVE_TARGETS += install-info-recursive
109 .PHONY install-info: install-info-recursive
110 else !%?SUBDIRS%
111 install-info: install-info-am
112 endif !%?SUBDIRS%
113 endif %?INSTALL-INFO%
114
115 .PHONY: install-info-am
116
117 if %?LOCAL-TEXIS%
118 install-info-am: $(INFO_DEPS)
119         @$(NORMAL_INSTALL)
120         $(mkinstalldirs) $(DESTDIR)$(infodir)
121         @list='$(INFO_DEPS)'; \
122         for file in $$list; do \
123           if test -f $$file; then d=.; else d=$(srcdir); fi; \
124 ## 8+3 filesystems cannot deal with foo.info-N filenames: they all
125 ## conflict.  DJGPP comes with a tool, DJTAR, that will rename these
126 ## files to foo.iNN while extracting the archive.  DJGPP's makeinfo
127 ## is patched to grok these filenames.  However we have to account
128 ## for the renaming when installing the info files.
129 ##
130 ## If $file == foo.info, then $file_i == foo.i.  The reason we use two
131 ## shell commands instead of one ('s|\.info$$|.i|') is so that a suffix-less
132 ## `foo' becomes `foo.i' too.
133           file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
134           for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
135                        $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
136             if test -f $$ifile; then \
137 ## Strip directory
138               relfile=`echo "$$ifile" | sed 's|^.*/||'`; \
139               echo " $(INSTALL_DATA) $$ifile $(DESTDIR)$(infodir)/$$relfile"; \
140               $(INSTALL_DATA) $$ifile $(DESTDIR)$(infodir)/$$relfile; \
141             else : ; fi; \
142           done; \
143         done
144         @$(POST_INSTALL)
145 ## Only run this code if install-info actually exists, and it is not
146 ## the Debian install-info.  FIXME: once Debian install-info goes
147 ## away, we can remove this hack.  Debian install-info v1.8.3
148 ## prints version info to stderr.
149 ##
150 ## Do not use
151 ##    install-info --version 2>&1 | sed 1q | grep -s -v -i debian
152 ## as if install-info does not exist, grep -v will be happy, and
153 ## therefore the code will be triggered although install-info is missing.
154         @if (install-info --version && \
155              install-info --version | grep -i -v debian) >/dev/null 2>&1; then \
156           list='$(INFO_DEPS)'; \
157           for file in $$list; do \
158 ## Strip directory
159             relfile=`echo "$$file" | sed 's|^.*/||'`; \
160 ## Run `:' after install-info in case install-info fails.  We really
161 ## don't care about failures here, because they can be spurious.  For
162 ## instance if you don't have a dir file, install-info will fail.  I
163 ## think instead it should create a new dir file for you.  This bug
164 ## causes the `make distcheck' target to fail reliably.
165             echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$relfile";\
166 ## Use `|| :' here because Sun make passes -e to sh; if install-info
167 ## fails then we'd fail if we used `;'.
168             install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$relfile || :;\
169           done; \
170         else : ; fi
171 else ! %?LOCAL-TEXIS%
172 install-info-am:
173 endif ! %?LOCAL-TEXIS%
174
175
176 ## -------------- ##
177 ## Uninstalling.  ##
178 ## -------------- ##
179
180 ?SUBDIRS?RECURSIVE_TARGETS += uninstall-info-recursive
181 ?SUBDIRS?.PHONY uninstall-info: uninstall-info-recursive
182 ?INSTALL-INFO?uninstall-am: uninstall-info-am
183
184 .PHONY: uninstall-info-am
185
186 if %?LOCAL-TEXIS%
187 uninstall-info-am:
188         $(PRE_UNINSTALL)
189 ## Run two loops here so that we can handle PRE_UNINSTALL and
190 ## NORMAL_UNINSTALL correctly.  Debian install-info v1.8.3 prints
191 ## version info to stderr.
192         @if (install-info --version && \
193              install-info --version | grep -i -v debian) >/dev/null 2>&1; then \
194           list='$(INFO_DEPS)'; \
195           for file in $$list; do \
196             relfile=`echo "$$file" | sed 's|^.*/||'`; \
197 ## install-info needs the actual info file.  We use the installed one,
198 ## rather than relying on one still being in srcdir or builddir.
199             echo " install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$relfile"; \
200             install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$relfile; \
201           done; \
202         else :; fi
203         @$(NORMAL_UNINSTALL)
204         @list='$(INFO_DEPS)'; \
205         for file in $$list; do \
206           relfile=`echo "$$file" | sed 's|^.*/||'`; \
207 ## DJGPP-style info files.  See comment in install-info-am.
208           relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
209           (if cd $(DESTDIR)$(infodir); then \
210              echo " rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9])"; \
211              rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
212            else :; fi); \
213         done
214 else ! %?LOCAL-TEXIS%
215 uninstall-info-am:
216 endif ! %?LOCAL-TEXIS%
217
218 if %?LOCAL-TEXIS%
219 .PHONY: dist-info
220 dist-info: $(INFO_DEPS)
221         list='$(INFO_DEPS)'; \
222         for base in $$list; do \
223           if test -f $$base; then d=.; else d=$(srcdir); fi; \
224           for file in $$d/$$base*; do \
225 ## Strip leading '$$d/'.
226             relfile=`expr "$$file" : "$$d/\(.*\)"`; \
227             test -f $(distdir)/$$relfile || \
228               cp -p $$file $(distdir)/$$relfile; \
229           done; \
230         done
231 endif %?LOCAL-TEXIS%
232
233
234 ## ---------- ##
235 ## Cleaning.  ##
236 ## ---------- ##
237
238 ## The funny name is due to --cygnus influence; in Cygnus mode,
239 ## `clean-info' is a target that users can use.
240
241 if %?LOCAL-TEXIS%
242 .PHONY: mostlyclean-aminfo
243 mostlyclean-am: mostlyclean-aminfo
244 mostlyclean-aminfo:
245         -rm -f %TEXICLEAN%
246
247 .PHONY: maintainer-clean-aminfo
248 maintainer-clean-am: maintainer-clean-aminfo
249 maintainer-clean-aminfo:
250         @list='$(INFO_DEPS)'; for i in $$list; do \
251 ## .iNN files are DJGPP-style info files.
252           i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
253           echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
254           rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
255         done
256
257 ?CYGNUS?.PHONY: clean-info
258 ?CYGNUS?clean-info: mostlyclean-aminfo
259 endif %?LOCAL-TEXIS%