* doc/automake.texi (Texinfo): Define MAKEINFO, MAKEINFOHTML,
[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 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
46 TEXI2PDF = $(TEXI2DVI) --pdf --batch
47 MAKEINFOHTML = $(MAKEINFO) --html
48 AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
49 endif %?LOCAL-TEXIS%
50
51
52 ## ---------- ##
53 ## Building.  ##
54 ## ---------- ##
55
56 ## The way to make PostScript, for those who want it.
57 if %?LOCAL-TEXIS%
58 DVIPS = dvips
59 .dvi.ps:
60         $(DVIPS) -o $@ $<
61 endif %?LOCAL-TEXIS%
62
63 .PHONY: dvi dvi-am html html-am info info-am pdf pdf-am ps ps-am
64 if %?SUBDIRS%
65 RECURSIVE_TARGETS += dvi-recursive html-recursive info-recursive
66 RECURSIVE_TARGETS += pdf-recursive ps-recursive
67 dvi: dvi-recursive
68 html: html-recursive
69 info: info-recursive
70 pdf: pdf-recursive
71 ps: ps-recursive
72 else !%?SUBDIRS%
73 dvi: dvi-am
74 html: html-am
75 info: info-am
76 pdf: pdf-am
77 ps: ps-am
78 endif !%?SUBDIRS%
79
80 if %?LOCAL-TEXIS%
81 dvi-am: $(DVIS)
82 html-am: $(HTMLS)
83 info-am: $(INFO_DEPS)
84 pdf-am: $(PDFS)
85 ps-am: $(PSS)
86 else ! %?LOCAL-TEXIS%
87 dvi-am:
88 html-am:
89 info-am:
90 pdf-am:
91 ps-am:
92 endif ! %?LOCAL-TEXIS%
93
94
95 ## ------------ ##
96 ## Installing.  ##
97 ## ------------ ##
98
99 ## Look in both . and srcdir because the info pages might have been
100 ## rebuilt in the build directory.  Can't cd to srcdir; that might
101 ## break a possible install-sh reference.
102 ##
103 ## Funny name due to --cygnus influence; we want to reserve
104 ## `install-info' for the user.
105 ##
106 ## TEXINFOS primary are always installed in infodir, hence install-data
107 ## is hard coded.
108 if %?INSTALL-INFO%
109 if %?LOCAL-TEXIS%
110 am__installdirs += $(DESTDIR)$(infodir)
111 install-data-am: install-info-am
112 endif %?LOCAL-TEXIS%
113 .PHONY: install-info
114 if %?SUBDIRS%
115 RECURSIVE_TARGETS += install-info-recursive
116 install-info: install-info-recursive
117 else !%?SUBDIRS%
118 install-info: install-info-am
119 endif !%?SUBDIRS%
120 endif %?INSTALL-INFO%
121
122 .PHONY: install-info-am
123 if %?LOCAL-TEXIS%
124 install-info-am: $(INFO_DEPS)
125         @$(NORMAL_INSTALL)
126         $(mkdir_p) $(DESTDIR)$(infodir)
127         @list='$(INFO_DEPS)'; \
128         for file in $$list; do \
129           if test -f $$file; then d=.; else d=$(srcdir); fi; \
130 ## 8+3 filesystems cannot deal with foo.info-N filenames: they all
131 ## conflict.  DJGPP comes with a tool, DJTAR, that will rename these
132 ## files to foo.iNN while extracting the archive.  DJGPP's makeinfo
133 ## is patched to grok these filenames.  However we have to account
134 ## for the renaming when installing the info files.
135 ##
136 ## If $file == foo.info, then $file_i == foo.i.  The reason we use two
137 ## shell commands instead of one ('s|\.info$$|.i|') is so that a suffix-less
138 ## `foo' becomes `foo.i' too.
139           file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
140           for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
141                        $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
142             if test -f $$ifile; then \
143 ## Strip directory
144               relfile=`echo "$$ifile" | sed 's|^.*/||'`; \
145               echo " $(INSTALL_DATA) $$ifile $(DESTDIR)$(infodir)/$$relfile"; \
146               $(INSTALL_DATA) $$ifile $(DESTDIR)$(infodir)/$$relfile; \
147             else : ; fi; \
148           done; \
149         done
150         @$(POST_INSTALL)
151 ## Only run this code if install-info actually exists, and it is not
152 ## the Debian install-info.  FIXME: once Debian install-info goes
153 ## away, we can remove this hack.  Some versions of Debian install-info
154 ## print their version on stderr (e.g. 1.8.3), other do it in
155 ## on stdout (e.g. 1.10.15).
156 ##
157 ## Do not use
158 ##    install-info --version 2>&1 | sed 1q | grep -v -i debian
159 ## as if install-info does not exist, grep -v will be happy, and
160 ## therefore the code will be triggered although install-info is missing.
161         @if (install-info --version && \
162              install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
163           list='$(INFO_DEPS)'; \
164           for file in $$list; do \
165 ## Strip directory
166             relfile=`echo "$$file" | sed 's|^.*/||'`; \
167 ## Run `:' after install-info in case install-info fails.  We really
168 ## don't care about failures here, because they can be spurious.  For
169 ## instance if you don't have a dir file, install-info will fail.  I
170 ## think instead it should create a new dir file for you.  This bug
171 ## causes the `make distcheck' target to fail reliably.
172             echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$relfile";\
173 ## Use `|| :' here because Sun make passes -e to sh; if install-info
174 ## fails then we'd fail if we used `;'.
175             install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$relfile || :;\
176           done; \
177         else : ; fi
178 else ! %?LOCAL-TEXIS%
179 install-info-am:
180 endif ! %?LOCAL-TEXIS%
181
182
183 ## -------------- ##
184 ## Uninstalling.  ##
185 ## -------------- ##
186
187 ?SUBDIRS?RECURSIVE_TARGETS += uninstall-info-recursive
188 ?SUBDIRS?uninstall-info: uninstall-info-recursive
189 ?INSTALL-INFO?uninstall-am: uninstall-info-am
190
191 .PHONY: uninstall-info-am
192
193 if %?LOCAL-TEXIS%
194 uninstall-info-am:
195         $(PRE_UNINSTALL)
196 ## Run two loops here so that we can handle PRE_UNINSTALL and
197 ## NORMAL_UNINSTALL correctly.
198         @if (install-info --version && \
199              install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
200           list='$(INFO_DEPS)'; \
201           for file in $$list; do \
202             relfile=`echo "$$file" | sed 's|^.*/||'`; \
203 ## install-info needs the actual info file.  We use the installed one,
204 ## rather than relying on one still being in srcdir or builddir.
205             echo " install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$relfile"; \
206             install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$relfile; \
207           done; \
208         else :; fi
209         @$(NORMAL_UNINSTALL)
210         @list='$(INFO_DEPS)'; \
211         for file in $$list; do \
212           relfile=`echo "$$file" | sed 's|^.*/||'`; \
213 ## DJGPP-style info files.  See comment in install-info-am.
214           relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
215           (if cd $(DESTDIR)$(infodir); then \
216              echo " rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9])"; \
217              rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
218            else :; fi); \
219         done
220 else ! %?LOCAL-TEXIS%
221 uninstall-info-am:
222 endif ! %?LOCAL-TEXIS%
223
224 if %?LOCAL-TEXIS%
225 .PHONY: dist-info
226 dist-info: $(INFO_DEPS)
227         @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
228         list='$(INFO_DEPS)'; \
229         for base in $$list; do \
230           case $$base in \
231             $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
232           esac; \
233           if test -f $$base; then d=.; else d=$(srcdir); fi; \
234           for file in $$d/$$base*; do \
235 ## Strip leading '$$d/'.
236             relfile=`expr "$$file" : "$$d/\(.*\)"`; \
237             test -f $(distdir)/$$relfile || \
238               cp -p $$file $(distdir)/$$relfile; \
239           done; \
240         done
241 endif %?LOCAL-TEXIS%
242
243
244 ## ---------- ##
245 ## Cleaning.  ##
246 ## ---------- ##
247
248 ## The funny name is due to --cygnus influence; in Cygnus mode,
249 ## `clean-info' is a target that users can use.
250
251 if %?LOCAL-TEXIS%
252 .PHONY mostlyclean-am: mostlyclean-aminfo
253 .PHONY: mostlyclean-aminfo
254 mostlyclean-aminfo:
255 ## Use `-rf', not just `-f', because %TEXICLEAN% also contains
256 ## any directory created by `makeinfo --html'.
257         -rm -rf %TEXICLEAN%
258
259 .PHONY maintainer-clean-am: maintainer-clean-aminfo
260 maintainer-clean-aminfo:
261         @list='$(INFO_DEPS)'; for i in $$list; do \
262 ## .iNN files are DJGPP-style info files.
263           i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
264           echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
265           rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
266         done
267
268 ?CYGNUS?.PHONY: clean-info
269 ?CYGNUS?clean-info: mostlyclean-aminfo
270 endif %?LOCAL-TEXIS%