Trailing whitespace deleted.
[bpt/emacs.git] / man / Makefile.in
CommitLineData
3ff8ce93
RS
1#### Makefile for the Emacs Manual and other documentation.
2
b3ae7a0a
GM
3# Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2001
4# Free Software Foundation, Inc.
5
6# This file is part of GNU Emacs.
7
8# GNU Emacs is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2, or (at your option)
11# any later version.
12
13# GNU Emacs is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17
18# You should have received a copy of the GNU General Public License
19# along with GNU Emacs; see the file COPYING. If not, write to
20# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21# Boston, MA 02111-1307, USA.
22
3ff8ce93
RS
23# Where to find the source code. The source code for Emacs's C kernel is
24# expected to be in ${srcdir}/src, and the source code for Emacs's
25# utility programs is expected to be in ${srcdir}/lib-src. This is
26# set by the configure script's `--srcdir' option.
27srcdir=@srcdir@
28
29# Tell make where to find source files; this is needed for the makefiles.
30VPATH=@srcdir@
31
32
33# The makeinfo program is part of the Texinfo distribution.
34MAKEINFO = makeinfo
04cf41b4 35INFO_TARGETS = ../info/emacs ../info/ccmode ../info/cl \
933bdce2
RS
36 ../info/dired-x ../info/ediff ../info/forms ../info/gnus \
37 ../info/info ../info/message ../info/mh-e ../info/reftex \
84e7cd78 38 ../info/sc ../info/vip ../info/viper ../info/widget \
1128d4c6 39 ../info/efaq ../info/ada-mode ../info/autotype ../info/calc \
db2672fe 40 ../info/idlwave ../info/eudc ../info/ebrowse ../info/pcl-cvs \
543951ab 41 ../info/woman ../info/emacs-mime ../info/eshell \
7ed9159a 42 ../info/speedbar ../info/tramp ../info/ses
ef0ce4e0 43DVI_TARGETS = emacs.dvi calc.dvi cc-mode.dvi cl.dvi dired-x.dvi \
cf96540d 44 ediff.dvi forms.dvi gnus.dvi message.dvi mh-e.dvi \
a226b66d 45 reftex.dvi sc.dvi vip.dvi viper.dvi widget.dvi faq.dvi \
6684834d 46 ada-mode.dvi autotype.dvi idlwave.dvi eudc.dvi ebrowse.dvi \
543951ab 47 pcl-cvs.dvi woman.dvi emacs-mime.dvi eshell.dvi \
7ed9159a 48 speedbar.dvi tramp.dvi ses.dvi
444c5586 49INFOSOURCES = info.texi
3ff8ce93
RS
50
51# The following rule does not work with all versions of `make'.
52.SUFFIXES: .texi .dvi
53.texi.dvi:
54 texi2dvi $<
55
56TEXI2DVI = texi2dvi
177c0ea7 57ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
3ff8ce93
RS
58
59EMACSSOURCES= \
60 ${srcdir}/emacs.texi \
78f743c7 61 ${srcdir}/doclicense.texi \
3ff8ce93
RS
62 ${srcdir}/screen.texi \
63 ${srcdir}/commands.texi \
64 ${srcdir}/entering.texi \
65 ${srcdir}/basic.texi \
66 ${srcdir}/mini.texi \
67 ${srcdir}/m-x.texi \
68 ${srcdir}/help.texi \
69 ${srcdir}/mark.texi \
70 ${srcdir}/killing.texi \
71 ${srcdir}/regs.texi \
72 ${srcdir}/display.texi \
73 ${srcdir}/search.texi \
74 ${srcdir}/fixit.texi \
75 ${srcdir}/files.texi \
76 ${srcdir}/buffers.texi \
77 ${srcdir}/windows.texi \
78 ${srcdir}/frames.texi \
32395fcf 79 ${srcdir}/mule.texi \
3ff8ce93
RS
80 ${srcdir}/major.texi \
81 ${srcdir}/indent.texi \
82 ${srcdir}/text.texi \
83 ${srcdir}/programs.texi \
84 ${srcdir}/building.texi \
78f743c7 85 ${srcdir}/maintaining.texi \
3ff8ce93
RS
86 ${srcdir}/abbrevs.texi \
87 ${srcdir}/picture.texi \
88 ${srcdir}/sending.texi \
89 ${srcdir}/rmail.texi \
90 ${srcdir}/dired.texi \
91 ${srcdir}/calendar.texi \
92 ${srcdir}/misc.texi \
93 ${srcdir}/custom.texi \
94 ${srcdir}/trouble.texi \
95 ${srcdir}/cmdargs.texi \
78f743c7 96 ${srcdir}/xresources.texi \
3ff8ce93 97 ${srcdir}/anti.texi \
78f743c7 98 ${srcdir}/macos.texi \
11f7f688 99 ${srcdir}/msdog.texi \
3ff8ce93 100 ${srcdir}/gnu.texi \
11f7f688
RS
101 ${srcdir}/glossary.texi \
102 ${srcdir}/ack.texi
3ff8ce93
RS
103
104info: $(INFO_TARGETS)
105
106dvi: $(DVI_TARGETS)
107
e8edd7c5
RS
108# Note that all the Info targets build the Info files
109# in srcdir. There is no provision for Info files
110# to exist in the build directory.
111# In a distribution of Emacs, the Info files should be up to date.
112
7c836af3 113# The following target uses an explicit -o switch to work around
db921254
EZ
114# the @setfilename directive in info.texi, which is required for
115# the Texinfo distribution.
116
3ff8ce93 117../info/info: ${INFOSOURCES}
db921254 118 cd $(srcdir); $(MAKEINFO) --no-split info.texi -o $@
3ff8ce93
RS
119
120info.dvi: ${INFOSOURCES}
2ca250f9 121 $(ENVADD) $(TEXI2DVI) ${srcdir}/info.texi
3ff8ce93
RS
122
123../info/emacs: ${EMACSSOURCES}
b9aed9ca 124 cd $(srcdir); $(MAKEINFO) emacs.texi
3ff8ce93
RS
125
126emacs.dvi: ${EMACSSOURCES}
2ca250f9 127 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi
3ff8ce93 128
0a8ad7c4
EZ
129# This target is here so you could easily get the list of the *.texi
130# files which belong to the Emacs manual (as opposed to the separate
131# manuals for CL, CC Mode, Ebrowse, etc.). With this target, you can
132# say things like "grep foo `make emacsman`".
133emacsman:
134 @echo $(EMACSSOURCES)
135
0aa97803 136../info/ccmode: cc-mode.texi
b9aed9ca 137 cd $(srcdir); $(MAKEINFO) cc-mode.texi
40bb1f49 138cc-mode.dvi: cc-mode.texi
2ca250f9 139 $(ENVADD) $(TEXI2DVI) ${srcdir}/cc-mode.texi
40bb1f49 140
a226b66d
GM
141../info/ada-mode: ada-mode.texi
142 cd $(srcdir); $(MAKEINFO) ada-mode.texi
143ada-mode.dvi: ada-mode.texi
144 $(ENVADD) $(TEXI2DVI) ${srcdir}/ada-mode.texi
145
6684834d
SM
146../info/pcl-cvs: pcl-cvs.texi
147 cd $(srcdir); $(MAKEINFO) pcl-cvs.texi
148pcl-cvs.dvi: pcl-cvs.texi
149 $(ENVADD) $(TEXI2DVI) ${srcdir}/pcl-cvs.texi
150
572a0c97
JW
151../info/eshell: eshell.texi
152 cd $(srcdir); $(MAKEINFO) eshell.texi
153eshell.dvi: eshell.texi
154 $(ENVADD) $(TEXI2DVI) ${srcdir}/eshell.texi
155
3ff8ce93 156../info/cl: cl.texi
b9aed9ca 157 cd $(srcdir); $(MAKEINFO) cl.texi
3ff8ce93 158cl.dvi: cl.texi
2ca250f9 159 $(ENVADD) $(TEXI2DVI) ${srcdir}/cl.texi
3ff8ce93
RS
160
161../info/dired-x: dired-x.texi
b9aed9ca 162 cd $(srcdir); $(MAKEINFO) dired-x.texi
3ff8ce93 163dired-x.dvi: dired-x.texi
2ca250f9 164 $(ENVADD) $(TEXI2DVI) ${srcdir}/dired-x.texi
3ff8ce93 165
11022425 166../info/ediff: ediff.texi
b9aed9ca 167 cd $(srcdir); $(MAKEINFO) ediff.texi
11022425 168ediff.dvi: ediff.texi
2ca250f9 169 $(ENVADD) $(TEXI2DVI) ${srcdir}/ediff.texi
11022425 170
3ff8ce93 171../info/forms: forms.texi
b9aed9ca 172 cd $(srcdir); $(MAKEINFO) forms.texi
3ff8ce93 173forms.dvi: forms.texi
2ca250f9 174 $(ENVADD) $(TEXI2DVI) ${srcdir}/forms.texi
3ff8ce93 175
5f016f40
PE
176../info/gnus: gnus.texi
177 cd $(srcdir); $(MAKEINFO) gnus.texi
178gnus.dvi: gnus.texi
177c0ea7 179 sed -e '/@iflatex/,/@end iflatex/d' ${srcdir}/gnus.texi > gnustmp.texi
55c875c2
DL
180 $(ENVADD) $(TEXI2DVI) gnustmp.texi
181 cp gnustmp.dvi $*.dvi
182 rm gnustmp.*
5f016f40
PE
183
184../info/message: message.texi
185 cd $(srcdir); $(MAKEINFO) message.texi
186message.dvi: message.texi
2ca250f9 187 $(ENVADD) $(TEXI2DVI) ${srcdir}/message.texi
5f016f40 188
f32cdadd 189../info/mh-e: mh-e.texi
b9aed9ca 190 cd $(srcdir); $(MAKEINFO) mh-e.texi
f32cdadd 191mh-e.dvi: mh-e.texi
2ca250f9 192 $(ENVADD) $(TEXI2DVI) ${srcdir}/mh-e.texi
f32cdadd 193
cf96540d
RS
194../info/reftex: reftex.texi
195 cd $(srcdir); $(MAKEINFO) reftex.texi
196reftex.dvi: reftex.texi
2ca250f9 197 $(ENVADD) $(TEXI2DVI) ${srcdir}/reftex.texi
cf96540d 198
3ff8ce93 199../info/sc: sc.texi
b9aed9ca 200 cd $(srcdir); $(MAKEINFO) sc.texi
3ff8ce93 201sc.dvi: sc.texi
2ca250f9 202 $(ENVADD) $(TEXI2DVI) ${srcdir}/sc.texi
3ff8ce93
RS
203
204../info/vip: vip.texi
b9aed9ca 205 cd $(srcdir); $(MAKEINFO) vip.texi
3ff8ce93 206vip.dvi: vip.texi
2ca250f9 207 $(ENVADD) $(TEXI2DVI) ${srcdir}/vip.texi
3ff8ce93 208
5f016f40
PE
209../info/viper: viper.texi
210 cd $(srcdir); $(MAKEINFO) viper.texi
211viper.dvi: viper.texi
2ca250f9 212 $(ENVADD) $(TEXI2DVI) ${srcdir}/viper.texi
168054a6 213
791f12e4
PA
214../info/widget: widget.texi
215 cd $(srcdir); $(MAKEINFO) widget.texi
216widget.dvi: widget.texi
2ca250f9 217 $(ENVADD) $(TEXI2DVI) ${srcdir}/widget.texi
791f12e4 218
429fc7c6 219../info/efaq: faq.texi
84e7cd78
DL
220 cd $(srcdir); $(MAKEINFO) faq.texi
221faq.dvi: faq.texi
222 $(ENVADD) $(TEXI2DVI) ${srcdir}/faq.texi
223
3ff8ce93 224../etc/GNU: gnu1.texi gnu.texi
2ca250f9 225 cd $(srcdir) && makeinfo --no-headers -o ../etc/GNU gnu1.texi
3ff8ce93 226
6bfff064
DL
227../info/autotype: autotype.texi
228 cd $(srcdir); $(MAKEINFO) autotype.texi
229autotype.dvi: autotype.texi
230 $(ENVADD) $(TEXI2DVI) ${srcdir}/autotype.texi
231
1128d4c6
EZ
232../info/calc: calc.texi
233 cd $(srcdir); $(MAKEINFO) calc.texi
ef0ce4e0
EZ
234
235calc.dvi: calc.texi
236 $(ENVADD) $(TEXI2DVI) ${srcdir}/calc.texi
1128d4c6 237
73ec1670
EZ
238# This is produced with --no-split to avoid making files whose
239# names clash on DOS 8+3 filesystems
4598da60 240../info/idlwave: idlwave.texi
73ec1670 241 cd $(srcdir); $(MAKEINFO) --no-split idlwave.texi
4598da60
EZ
242idlwave.dvi: idlwave.texi
243 $(ENVADD) $(TEXI2DVI) ${srcdir}/idlwave.texi
244
20ed8664
GM
245../info/eudc: eudc.texi
246 cd $(srcdir); $(MAKEINFO) eudc.texi
247eudc.dvi: eudc.texi
248 $(ENVADD) $(TEXI2DVI) ${srcdir}/eudc.texi
249
2f155bc2
GM
250../info/ebrowse: ebrowse.texi
251 cd $(srcdir); $(MAKEINFO) ebrowse.texi
252ebrowse.dvi: ebrowse.texi
253 $(ENVADD) $(TEXI2DVI) ${srcdir}/ebrowse.texi
254
db2672fe
EZ
255../info/woman: woman.texi
256 cd $(srcdir); $(MAKEINFO) woman.texi
257woman.dvi: woman.texi
258 $(ENVADD) $(TEXI2DVI) ${srcdir}/woman.texi
259
543951ab
EL
260../info/speedbar: speedbar.texi
261 cd $(srcdir); $(MAKEINFO) speedbar.texi
262speedbar.dvi: speedbar.texi
263 $(ENVADD) $(TEXI2DVI) ${srcdir}/speedbar.texi
82bb16f8
DL
264
265../info/emacs-mime: emacs-mime.texi
266 cd $(srcdir); $(MAKEINFO) emacs-mime.texi
267emacs-mime.dvi: emacs-mime.texi
268 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-mime.texi
269
d591a834
KG
270../info/tramp: tramp.texi
271 cd $(srcdir); $(MAKEINFO) tramp.texi
272tramp.dvi: tramp.texi
273 $(ENVADD) $(TEXI2DVI) ${srcdir}/tramp.texi
274
7ed9159a
JY
275../info/ses: ses.texi
276 cd $(srcdir); $(MAKEINFO) ses.texi
277ses.dvi: ses.texi
278 $(ENVADD) $(TEXI2DVI) ${srcdir}/ses.texi
279
3ff8ce93 280mostlyclean:
8da1a051 281 rm -f *.log *.cp *.fn *.ky *.pg *.vr core *.tp *.core gnustmp.*
3ff8ce93
RS
282
283clean: mostlyclean
284 rm -f *.dvi
285
286distclean: clean
287
288maintainer-clean: distclean
8da1a051 289 rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
3ff8ce93
RS
290# Don't delete these, because they are outside the current directory.
291# for file in $(INFO_TARGETS); do rm -f $${file}*; done
292
293
294# Formerly this directory had texindex.c and getopt.c in it
295# and this makefile built them to make texindex.
296# That caused trouble because this is run entirely in the source directory.
297# Since we expect to get texi2dvi from elsewhere,
298# it is ok to expect texindex from elsewhere also.