annotate man/Makefile.in @ 30287:237a66bc6cea

(Info-title-face-alist): Removed.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 18 Jul 2000 12:59:17 +0000
parents 9ec9be532ad2
children 0274b845303e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 #### Makefile for the Emacs Manual and other documentation.
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 # Where to find the source code. The source code for Emacs's C kernel is
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 # expected to be in ${srcdir}/src, and the source code for Emacs's
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 # utility programs is expected to be in ${srcdir}/lib-src. This is
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 # set by the configure script's `--srcdir' option.
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 srcdir=@srcdir@
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 # Tell make where to find source files; this is needed for the makefiles.
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 VPATH=@srcdir@
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 # The makeinfo program is part of the Texinfo distribution.
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 MAKEINFO = makeinfo
23820
3d67195ddc6a (INFO_TARGETS): Delete customize.info.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 22105
diff changeset
15 INFO_TARGETS = ../info/emacs ../info/ccmode ../info/cl \
22105
10196cc8877c Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 21968
diff changeset
16 ../info/dired-x ../info/ediff ../info/forms ../info/gnus \
10196cc8877c Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 21968
diff changeset
17 ../info/info ../info/message ../info/mh-e ../info/reftex \
25477
32338cfa9fef Add faq.
Dave Love <fx@gnu.org>
parents: 23820
diff changeset
18 ../info/sc ../info/vip ../info/viper ../info/widget \
27179
c587e73a28e4 (INFO_TARGETS): Rename emacs-faq to efaq (for
Eli Zaretskii <eliz@gnu.org>
parents: 27104
diff changeset
19 ../info/efaq ../info/ada-mode ../info/autotype \
29350
9ec9be532ad2 (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28866
diff changeset
20 ../info/idlwave ../info/eudc ../info/ebrowse ../info/pcl-cvs
23820
3d67195ddc6a (INFO_TARGETS): Delete customize.info.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 22105
diff changeset
21 DVI_TARGETS = emacs.dvi cc-mode.dvi cl.dvi dired-x.dvi \
20863
6ee33d0e1682 (reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 19968
diff changeset
22 ediff.dvi forms.dvi gnus.dvi message.dvi mh-e.dvi \
25914
5b157f24c1e8 (INFO_TARGETS, DVI_TARGETS): Add ada-mode.
Gerd Moellmann <gerd@gnu.org>
parents: 25477
diff changeset
23 reftex.dvi sc.dvi vip.dvi viper.dvi widget.dvi faq.dvi \
29350
9ec9be532ad2 (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28866
diff changeset
24 ada-mode.dvi autotype.dvi idlwave.dvi eudc.dvi ebrowse.dvi \
9ec9be532ad2 (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28866
diff changeset
25 pcl-cvs.dvi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 INFOSOURCES = info.texi info-stnd.texi
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 # The following rule does not work with all versions of `make'.
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 .SUFFIXES: .texi .dvi
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 .texi.dvi:
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 texi2dvi $<
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 TEXI2DVI = texi2dvi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
34 ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 EMACSSOURCES= \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 ${srcdir}/emacs.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 ${srcdir}/screen.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 ${srcdir}/commands.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 ${srcdir}/entering.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 ${srcdir}/basic.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 ${srcdir}/mini.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 ${srcdir}/m-x.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 ${srcdir}/help.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 ${srcdir}/mark.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 ${srcdir}/killing.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 ${srcdir}/regs.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 ${srcdir}/display.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 ${srcdir}/search.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 ${srcdir}/fixit.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 ${srcdir}/files.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 ${srcdir}/buffers.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 ${srcdir}/windows.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54 ${srcdir}/frames.texi \
21965
3681d61e4ed8 (EMACSSOURCES): Add mule.texi.
Richard M. Stallman <rms@gnu.org>
parents: 21392
diff changeset
55 ${srcdir}/mule.texi \
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56 ${srcdir}/major.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 ${srcdir}/indent.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58 ${srcdir}/text.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 ${srcdir}/programs.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 ${srcdir}/building.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 ${srcdir}/abbrevs.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 ${srcdir}/picture.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 ${srcdir}/sending.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 ${srcdir}/rmail.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 ${srcdir}/dired.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 ${srcdir}/calendar.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67 ${srcdir}/misc.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68 ${srcdir}/custom.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 ${srcdir}/trouble.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 ${srcdir}/cmdargs.texi \
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71 ${srcdir}/anti.texi \
21968
42f675eaceff (EMACSSOURCES): Add msdog.texi, ack.texi. Remove gnu1.texi.
Richard M. Stallman <rms@gnu.org>
parents: 21965
diff changeset
72 ${srcdir}/msdog.texi \
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73 ${srcdir}/gnu.texi \
21968
42f675eaceff (EMACSSOURCES): Add msdog.texi, ack.texi. Remove gnu1.texi.
Richard M. Stallman <rms@gnu.org>
parents: 21965
diff changeset
74 ${srcdir}/glossary.texi \
42f675eaceff (EMACSSOURCES): Add msdog.texi, ack.texi. Remove gnu1.texi.
Richard M. Stallman <rms@gnu.org>
parents: 21965
diff changeset
75 ${srcdir}/ack.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
76
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77 info: $(INFO_TARGETS)
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79 dvi: $(DVI_TARGETS)
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80
15467
5211a1402647 (All info targets): Specify $(srcdir) in input files. Specify -I option.
Richard M. Stallman <rms@gnu.org>
parents: 14103
diff changeset
81 # Note that all the Info targets build the Info files
5211a1402647 (All info targets): Specify $(srcdir) in input files. Specify -I option.
Richard M. Stallman <rms@gnu.org>
parents: 14103
diff changeset
82 # in srcdir. There is no provision for Info files
5211a1402647 (All info targets): Specify $(srcdir) in input files. Specify -I option.
Richard M. Stallman <rms@gnu.org>
parents: 14103
diff changeset
83 # to exist in the build directory.
5211a1402647 (All info targets): Specify $(srcdir) in input files. Specify -I option.
Richard M. Stallman <rms@gnu.org>
parents: 14103
diff changeset
84 # In a distribution of Emacs, the Info files should be up to date.
5211a1402647 (All info targets): Specify $(srcdir) in input files. Specify -I option.
Richard M. Stallman <rms@gnu.org>
parents: 14103
diff changeset
85
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 ../info/info: ${INFOSOURCES}
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
87 cd $(srcdir); $(MAKEINFO) --no-split info.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 info.dvi: ${INFOSOURCES}
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
90 $(ENVADD) $(TEXI2DVI) ${srcdir}/info.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 ../info/emacs: ${EMACSSOURCES}
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
93 cd $(srcdir); $(MAKEINFO) emacs.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95 emacs.dvi: ${EMACSSOURCES}
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
96 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97
14103
b6ec260d7c2c (../info/ccmode): Renamed from ../info/cc-mode.
Karl Heuer <kwzh@gnu.org>
parents: 13666
diff changeset
98 ../info/ccmode: cc-mode.texi
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
99 cd $(srcdir); $(MAKEINFO) cc-mode.texi
13666
e97eebb1206d (../info/cc-mode, cc-mode.dvi): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 12384
diff changeset
100 cc-mode.dvi: cc-mode.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
101 $(ENVADD) $(TEXI2DVI) ${srcdir}/cc-mode.texi
13666
e97eebb1206d (../info/cc-mode, cc-mode.dvi): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 12384
diff changeset
102
25914
5b157f24c1e8 (INFO_TARGETS, DVI_TARGETS): Add ada-mode.
Gerd Moellmann <gerd@gnu.org>
parents: 25477
diff changeset
103 ../info/ada-mode: ada-mode.texi
5b157f24c1e8 (INFO_TARGETS, DVI_TARGETS): Add ada-mode.
Gerd Moellmann <gerd@gnu.org>
parents: 25477
diff changeset
104 cd $(srcdir); $(MAKEINFO) ada-mode.texi
5b157f24c1e8 (INFO_TARGETS, DVI_TARGETS): Add ada-mode.
Gerd Moellmann <gerd@gnu.org>
parents: 25477
diff changeset
105 ada-mode.dvi: ada-mode.texi
5b157f24c1e8 (INFO_TARGETS, DVI_TARGETS): Add ada-mode.
Gerd Moellmann <gerd@gnu.org>
parents: 25477
diff changeset
106 $(ENVADD) $(TEXI2DVI) ${srcdir}/ada-mode.texi
5b157f24c1e8 (INFO_TARGETS, DVI_TARGETS): Add ada-mode.
Gerd Moellmann <gerd@gnu.org>
parents: 25477
diff changeset
107
29350
9ec9be532ad2 (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28866
diff changeset
108 ../info/pcl-cvs: pcl-cvs.texi
9ec9be532ad2 (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28866
diff changeset
109 cd $(srcdir); $(MAKEINFO) pcl-cvs.texi
9ec9be532ad2 (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28866
diff changeset
110 pcl-cvs.dvi: pcl-cvs.texi
9ec9be532ad2 (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28866
diff changeset
111 $(ENVADD) $(TEXI2DVI) ${srcdir}/pcl-cvs.texi
9ec9be532ad2 (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28866
diff changeset
112
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 ../info/cl: cl.texi
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
114 cd $(srcdir); $(MAKEINFO) cl.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 cl.dvi: cl.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
116 $(ENVADD) $(TEXI2DVI) ${srcdir}/cl.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 ../info/dired-x: dired-x.texi
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
119 cd $(srcdir); $(MAKEINFO) dired-x.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 dired-x.dvi: dired-x.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
121 $(ENVADD) $(TEXI2DVI) ${srcdir}/dired-x.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122
12384
13dd2463be12 (../info/ediff, ediff.dvi): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 11511
diff changeset
123 ../info/ediff: ediff.texi
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
124 cd $(srcdir); $(MAKEINFO) ediff.texi
12384
13dd2463be12 (../info/ediff, ediff.dvi): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 11511
diff changeset
125 ediff.dvi: ediff.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
126 $(ENVADD) $(TEXI2DVI) ${srcdir}/ediff.texi
12384
13dd2463be12 (../info/ediff, ediff.dvi): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 11511
diff changeset
127
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 ../info/forms: forms.texi
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
129 cd $(srcdir); $(MAKEINFO) forms.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 forms.dvi: forms.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
131 $(ENVADD) $(TEXI2DVI) ${srcdir}/forms.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132
19968
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
133 ../info/gnus: gnus.texi
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
134 cd $(srcdir); $(MAKEINFO) gnus.texi
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
135 gnus.dvi: gnus.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
136 $(ENVADD) $(TEXI2DVI) ${srcdir}/gnus.texi
19968
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
137
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
138 ../info/message: message.texi
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
139 cd $(srcdir); $(MAKEINFO) message.texi
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
140 message.dvi: message.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
141 $(ENVADD) $(TEXI2DVI) ${srcdir}/message.texi
19968
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
142
11478
8a5fc4539429 (INFO_TARGETS, DVI_TARGETS): Add mh-e targets.
Richard M. Stallman <rms@gnu.org>
parents: 10686
diff changeset
143 ../info/mh-e: mh-e.texi
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
144 cd $(srcdir); $(MAKEINFO) mh-e.texi
11478
8a5fc4539429 (INFO_TARGETS, DVI_TARGETS): Add mh-e targets.
Richard M. Stallman <rms@gnu.org>
parents: 10686
diff changeset
145 mh-e.dvi: mh-e.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
146 $(ENVADD) $(TEXI2DVI) ${srcdir}/mh-e.texi
11478
8a5fc4539429 (INFO_TARGETS, DVI_TARGETS): Add mh-e targets.
Richard M. Stallman <rms@gnu.org>
parents: 10686
diff changeset
147
20863
6ee33d0e1682 (reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 19968
diff changeset
148 ../info/reftex: reftex.texi
6ee33d0e1682 (reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 19968
diff changeset
149 cd $(srcdir); $(MAKEINFO) reftex.texi
6ee33d0e1682 (reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 19968
diff changeset
150 reftex.dvi: reftex.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
151 $(ENVADD) $(TEXI2DVI) ${srcdir}/reftex.texi
20863
6ee33d0e1682 (reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents: 19968
diff changeset
152
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 ../info/sc: sc.texi
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
154 cd $(srcdir); $(MAKEINFO) sc.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 sc.dvi: sc.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
156 $(ENVADD) $(TEXI2DVI) ${srcdir}/sc.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 ../info/vip: vip.texi
15468
641d6a7398ff (All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents: 15467
diff changeset
159 cd $(srcdir); $(MAKEINFO) vip.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160 vip.dvi: vip.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
161 $(ENVADD) $(TEXI2DVI) ${srcdir}/vip.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162
19968
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
163 ../info/viper: viper.texi
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
164 cd $(srcdir); $(MAKEINFO) viper.texi
88dd57f50303 Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents: 17335
diff changeset
165 viper.dvi: viper.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
166 $(ENVADD) $(TEXI2DVI) ${srcdir}/viper.texi
15525
521a4d5ccea0 Add rules for the Message manual.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents: 15468
diff changeset
167
17335
d80b4f8daf6d Added widget and custom manuals.
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 15525
diff changeset
168 ../info/widget: widget.texi
d80b4f8daf6d Added widget and custom manuals.
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 15525
diff changeset
169 cd $(srcdir); $(MAKEINFO) widget.texi
d80b4f8daf6d Added widget and custom manuals.
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 15525
diff changeset
170 widget.dvi: widget.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
171 $(ENVADD) $(TEXI2DVI) ${srcdir}/widget.texi
17335
d80b4f8daf6d Added widget and custom manuals.
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 15525
diff changeset
172
27179
c587e73a28e4 (INFO_TARGETS): Rename emacs-faq to efaq (for
Eli Zaretskii <eliz@gnu.org>
parents: 27104
diff changeset
173 ../info/efaq: faq.texi
25477
32338cfa9fef Add faq.
Dave Love <fx@gnu.org>
parents: 23820
diff changeset
174 cd $(srcdir); $(MAKEINFO) faq.texi
32338cfa9fef Add faq.
Dave Love <fx@gnu.org>
parents: 23820
diff changeset
175 faq.dvi: faq.texi
32338cfa9fef Add faq.
Dave Love <fx@gnu.org>
parents: 23820
diff changeset
176 $(ENVADD) $(TEXI2DVI) ${srcdir}/faq.texi
32338cfa9fef Add faq.
Dave Love <fx@gnu.org>
parents: 23820
diff changeset
177
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 ../etc/GNU: gnu1.texi gnu.texi
21392
20bc0bd34ada (ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents: 20863
diff changeset
179 cd $(srcdir) && makeinfo --no-headers -o ../etc/GNU gnu1.texi
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180
26150
96712277c1da Add autotype.
Dave Love <fx@gnu.org>
parents: 25996
diff changeset
181 ../info/autotype: autotype.texi
96712277c1da Add autotype.
Dave Love <fx@gnu.org>
parents: 25996
diff changeset
182 cd $(srcdir); $(MAKEINFO) autotype.texi
96712277c1da Add autotype.
Dave Love <fx@gnu.org>
parents: 25996
diff changeset
183 autotype.dvi: autotype.texi
96712277c1da Add autotype.
Dave Love <fx@gnu.org>
parents: 25996
diff changeset
184 $(ENVADD) $(TEXI2DVI) ${srcdir}/autotype.texi
96712277c1da Add autotype.
Dave Love <fx@gnu.org>
parents: 25996
diff changeset
185
27104
02916c79485d (INFO_TARGETS, DVI_TARGETS): Add idlwave.
Eli Zaretskii <eliz@gnu.org>
parents: 26150
diff changeset
186 ../info/idlwave: idlwave.texi
02916c79485d (INFO_TARGETS, DVI_TARGETS): Add idlwave.
Eli Zaretskii <eliz@gnu.org>
parents: 26150
diff changeset
187 cd $(srcdir); $(MAKEINFO) idlwave.texi
02916c79485d (INFO_TARGETS, DVI_TARGETS): Add idlwave.
Eli Zaretskii <eliz@gnu.org>
parents: 26150
diff changeset
188 idlwave.dvi: idlwave.texi
02916c79485d (INFO_TARGETS, DVI_TARGETS): Add idlwave.
Eli Zaretskii <eliz@gnu.org>
parents: 26150
diff changeset
189 $(ENVADD) $(TEXI2DVI) ${srcdir}/idlwave.texi
02916c79485d (INFO_TARGETS, DVI_TARGETS): Add idlwave.
Eli Zaretskii <eliz@gnu.org>
parents: 26150
diff changeset
190
27314
556645e6675e (INFO_TARGETS): Add eudc.
Gerd Moellmann <gerd@gnu.org>
parents: 27179
diff changeset
191 ../info/eudc: eudc.texi
556645e6675e (INFO_TARGETS): Add eudc.
Gerd Moellmann <gerd@gnu.org>
parents: 27179
diff changeset
192 cd $(srcdir); $(MAKEINFO) eudc.texi
556645e6675e (INFO_TARGETS): Add eudc.
Gerd Moellmann <gerd@gnu.org>
parents: 27179
diff changeset
193 eudc.dvi: eudc.texi
556645e6675e (INFO_TARGETS): Add eudc.
Gerd Moellmann <gerd@gnu.org>
parents: 27179
diff changeset
194 $(ENVADD) $(TEXI2DVI) ${srcdir}/eudc.texi
556645e6675e (INFO_TARGETS): Add eudc.
Gerd Moellmann <gerd@gnu.org>
parents: 27179
diff changeset
195
28866
b8fc13474751 (INFO_TARGETS): Add info/ebrowse.
Gerd Moellmann <gerd@gnu.org>
parents: 27314
diff changeset
196 ../info/ebrowse: ebrowse.texi
b8fc13474751 (INFO_TARGETS): Add info/ebrowse.
Gerd Moellmann <gerd@gnu.org>
parents: 27314
diff changeset
197 cd $(srcdir); $(MAKEINFO) ebrowse.texi
b8fc13474751 (INFO_TARGETS): Add info/ebrowse.
Gerd Moellmann <gerd@gnu.org>
parents: 27314
diff changeset
198 ebrowse.dvi: ebrowse.texi
b8fc13474751 (INFO_TARGETS): Add info/ebrowse.
Gerd Moellmann <gerd@gnu.org>
parents: 27314
diff changeset
199 $(ENVADD) $(TEXI2DVI) ${srcdir}/ebrowse.texi
b8fc13474751 (INFO_TARGETS): Add info/ebrowse.
Gerd Moellmann <gerd@gnu.org>
parents: 27314
diff changeset
200
10686
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
201 mostlyclean:
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 rm -f *.log *.cp *.fn *.ky *.pg *.vr core
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
203
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204 clean: mostlyclean
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 rm -f *.dvi
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
207 distclean: clean
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
209 maintainer-clean: distclean
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
210 rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
211 # Don't delete these, because they are outside the current directory.
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
212 # for file in $(INFO_TARGETS); do rm -f $${file}*; done
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
213
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
215 # Formerly this directory had texindex.c and getopt.c in it
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216 # and this makefile built them to make texindex.
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 # That caused trouble because this is run entirely in the source directory.
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 # Since we expect to get texi2dvi from elsewhere,
535aea7d22a3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 # it is ok to expect texindex from elsewhere also.