Mercurial > emacs
annotate man/Makefile.in @ 24960:00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
for modes which don't define menus.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 19 Jul 1999 21:49:13 +0000 |
parents | 3d67195ddc6a |
children | 32338cfa9fef |
rev | line source |
---|---|
10686 | 1 #### Makefile for the Emacs Manual and other documentation. |
2 | |
3 # Where to find the source code. The source code for Emacs's C kernel is | |
4 # expected to be in ${srcdir}/src, and the source code for Emacs's | |
5 # utility programs is expected to be in ${srcdir}/lib-src. This is | |
6 # set by the configure script's `--srcdir' option. | |
7 srcdir=@srcdir@ | |
8 | |
9 # Tell make where to find source files; this is needed for the makefiles. | |
10 VPATH=@srcdir@ | |
11 | |
12 | |
13 # The makeinfo program is part of the Texinfo distribution. | |
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 | 16 ../info/dired-x ../info/ediff ../info/forms ../info/gnus \ |
17 ../info/info ../info/message ../info/mh-e ../info/reftex \ | |
18 ../info/sc ../info/vip ../info/viper ../info/widget | |
23820
3d67195ddc6a
(INFO_TARGETS): Delete customize.info.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
22105
diff
changeset
|
19 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
|
20 ediff.dvi forms.dvi gnus.dvi message.dvi mh-e.dvi \ |
6ee33d0e1682
(reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents:
19968
diff
changeset
|
21 reftex.dvi sc.dvi vip.dvi viper.dvi widget.dvi |
10686 | 22 INFOSOURCES = info.texi info-stnd.texi |
23 | |
24 # The following rule does not work with all versions of `make'. | |
25 .SUFFIXES: .texi .dvi | |
26 .texi.dvi: | |
27 texi2dvi $< | |
28 | |
29 TEXI2DVI = texi2dvi | |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
30 ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)" |
10686 | 31 |
32 EMACSSOURCES= \ | |
33 ${srcdir}/emacs.texi \ | |
34 ${srcdir}/screen.texi \ | |
35 ${srcdir}/commands.texi \ | |
36 ${srcdir}/entering.texi \ | |
37 ${srcdir}/basic.texi \ | |
38 ${srcdir}/mini.texi \ | |
39 ${srcdir}/m-x.texi \ | |
40 ${srcdir}/help.texi \ | |
41 ${srcdir}/mark.texi \ | |
42 ${srcdir}/killing.texi \ | |
43 ${srcdir}/regs.texi \ | |
44 ${srcdir}/display.texi \ | |
45 ${srcdir}/search.texi \ | |
46 ${srcdir}/fixit.texi \ | |
47 ${srcdir}/files.texi \ | |
48 ${srcdir}/buffers.texi \ | |
49 ${srcdir}/windows.texi \ | |
50 ${srcdir}/frames.texi \ | |
21965
3681d61e4ed8
(EMACSSOURCES): Add mule.texi.
Richard M. Stallman <rms@gnu.org>
parents:
21392
diff
changeset
|
51 ${srcdir}/mule.texi \ |
10686 | 52 ${srcdir}/major.texi \ |
53 ${srcdir}/indent.texi \ | |
54 ${srcdir}/text.texi \ | |
55 ${srcdir}/programs.texi \ | |
56 ${srcdir}/building.texi \ | |
57 ${srcdir}/abbrevs.texi \ | |
58 ${srcdir}/picture.texi \ | |
59 ${srcdir}/sending.texi \ | |
60 ${srcdir}/rmail.texi \ | |
61 ${srcdir}/dired.texi \ | |
62 ${srcdir}/calendar.texi \ | |
63 ${srcdir}/misc.texi \ | |
64 ${srcdir}/custom.texi \ | |
65 ${srcdir}/trouble.texi \ | |
66 ${srcdir}/cmdargs.texi \ | |
67 ${srcdir}/anti.texi \ | |
21968
42f675eaceff
(EMACSSOURCES): Add msdog.texi, ack.texi. Remove gnu1.texi.
Richard M. Stallman <rms@gnu.org>
parents:
21965
diff
changeset
|
68 ${srcdir}/msdog.texi \ |
10686 | 69 ${srcdir}/gnu.texi \ |
21968
42f675eaceff
(EMACSSOURCES): Add msdog.texi, ack.texi. Remove gnu1.texi.
Richard M. Stallman <rms@gnu.org>
parents:
21965
diff
changeset
|
70 ${srcdir}/glossary.texi \ |
42f675eaceff
(EMACSSOURCES): Add msdog.texi, ack.texi. Remove gnu1.texi.
Richard M. Stallman <rms@gnu.org>
parents:
21965
diff
changeset
|
71 ${srcdir}/ack.texi |
10686 | 72 |
73 info: $(INFO_TARGETS) | |
74 | |
75 dvi: $(DVI_TARGETS) | |
76 | |
15467
5211a1402647
(All info targets): Specify $(srcdir) in input files. Specify -I option.
Richard M. Stallman <rms@gnu.org>
parents:
14103
diff
changeset
|
77 # 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
|
78 # 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
|
79 # 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
|
80 # 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
|
81 |
10686 | 82 ../info/info: ${INFOSOURCES} |
15468
641d6a7398ff
(All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents:
15467
diff
changeset
|
83 cd $(srcdir); $(MAKEINFO) --no-split info.texi |
10686 | 84 |
85 info.dvi: ${INFOSOURCES} | |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
86 $(ENVADD) $(TEXI2DVI) ${srcdir}/info.texi |
10686 | 87 |
88 ../info/emacs: ${EMACSSOURCES} | |
15468
641d6a7398ff
(All info targets): cd $(srcdir) to do the work.
Richard M. Stallman <rms@gnu.org>
parents:
15467
diff
changeset
|
89 cd $(srcdir); $(MAKEINFO) emacs.texi |
10686 | 90 |
91 emacs.dvi: ${EMACSSOURCES} | |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
92 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi |
10686 | 93 |
14103
b6ec260d7c2c
(../info/ccmode): Renamed from ../info/cc-mode.
Karl Heuer <kwzh@gnu.org>
parents:
13666
diff
changeset
|
94 ../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
|
95 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
|
96 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
|
97 $(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
|
98 |
10686 | 99 ../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
|
100 cd $(srcdir); $(MAKEINFO) cl.texi |
10686 | 101 cl.dvi: cl.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
102 $(ENVADD) $(TEXI2DVI) ${srcdir}/cl.texi |
10686 | 103 |
104 ../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
|
105 cd $(srcdir); $(MAKEINFO) dired-x.texi |
10686 | 106 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
|
107 $(ENVADD) $(TEXI2DVI) ${srcdir}/dired-x.texi |
10686 | 108 |
12384
13dd2463be12
(../info/ediff, ediff.dvi): New targets.
Richard M. Stallman <rms@gnu.org>
parents:
11511
diff
changeset
|
109 ../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
|
110 cd $(srcdir); $(MAKEINFO) ediff.texi |
12384
13dd2463be12
(../info/ediff, ediff.dvi): New targets.
Richard M. Stallman <rms@gnu.org>
parents:
11511
diff
changeset
|
111 ediff.dvi: ediff.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
112 $(ENVADD) $(TEXI2DVI) ${srcdir}/ediff.texi |
12384
13dd2463be12
(../info/ediff, ediff.dvi): New targets.
Richard M. Stallman <rms@gnu.org>
parents:
11511
diff
changeset
|
113 |
10686 | 114 ../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
|
115 cd $(srcdir); $(MAKEINFO) forms.texi |
10686 | 116 forms.dvi: forms.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
117 $(ENVADD) $(TEXI2DVI) ${srcdir}/forms.texi |
10686 | 118 |
19968
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
119 ../info/gnus: gnus.texi |
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
120 cd $(srcdir); $(MAKEINFO) gnus.texi |
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
121 gnus.dvi: gnus.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
122 $(ENVADD) $(TEXI2DVI) ${srcdir}/gnus.texi |
19968
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
123 |
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
124 ../info/message: message.texi |
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
125 cd $(srcdir); $(MAKEINFO) message.texi |
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
126 message.dvi: message.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
127 $(ENVADD) $(TEXI2DVI) ${srcdir}/message.texi |
19968
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
128 |
11478
8a5fc4539429
(INFO_TARGETS, DVI_TARGETS): Add mh-e targets.
Richard M. Stallman <rms@gnu.org>
parents:
10686
diff
changeset
|
129 ../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
|
130 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
|
131 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
|
132 $(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
|
133 |
20863
6ee33d0e1682
(reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents:
19968
diff
changeset
|
134 ../info/reftex: reftex.texi |
6ee33d0e1682
(reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents:
19968
diff
changeset
|
135 cd $(srcdir); $(MAKEINFO) reftex.texi |
6ee33d0e1682
(reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents:
19968
diff
changeset
|
136 reftex.dvi: reftex.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
137 $(ENVADD) $(TEXI2DVI) ${srcdir}/reftex.texi |
20863
6ee33d0e1682
(reftex.dvi, ../info/reftex): New targets.
Richard M. Stallman <rms@gnu.org>
parents:
19968
diff
changeset
|
138 |
10686 | 139 ../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
|
140 cd $(srcdir); $(MAKEINFO) sc.texi |
10686 | 141 sc.dvi: sc.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
142 $(ENVADD) $(TEXI2DVI) ${srcdir}/sc.texi |
10686 | 143 |
144 ../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
|
145 cd $(srcdir); $(MAKEINFO) vip.texi |
10686 | 146 vip.dvi: vip.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
147 $(ENVADD) $(TEXI2DVI) ${srcdir}/vip.texi |
10686 | 148 |
19968
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
149 ../info/viper: viper.texi |
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
150 cd $(srcdir); $(MAKEINFO) viper.texi |
88dd57f50303
Merge changes mistakenly made to `Makefile'.
Paul Eggert <eggert@twinsun.com>
parents:
17335
diff
changeset
|
151 viper.dvi: viper.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
152 $(ENVADD) $(TEXI2DVI) ${srcdir}/viper.texi |
15525
521a4d5ccea0
Add rules for the Message manual.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
15468
diff
changeset
|
153 |
17335
d80b4f8daf6d
Added widget and custom manuals.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
15525
diff
changeset
|
154 ../info/widget: widget.texi |
d80b4f8daf6d
Added widget and custom manuals.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
15525
diff
changeset
|
155 cd $(srcdir); $(MAKEINFO) widget.texi |
d80b4f8daf6d
Added widget and custom manuals.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
15525
diff
changeset
|
156 widget.dvi: widget.texi |
21392
20bc0bd34ada
(ENVADD): Enviroment vars to pass to texi2dvi. Use
Andreas Schwab <schwab@suse.de>
parents:
20863
diff
changeset
|
157 $(ENVADD) $(TEXI2DVI) ${srcdir}/widget.texi |
17335
d80b4f8daf6d
Added widget and custom manuals.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
15525
diff
changeset
|
158 |
10686 | 159 ../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
|
160 cd $(srcdir) && makeinfo --no-headers -o ../etc/GNU gnu1.texi |
10686 | 161 |
162 mostlyclean: | |
163 rm -f *.log *.cp *.fn *.ky *.pg *.vr core | |
164 | |
165 clean: mostlyclean | |
166 rm -f *.dvi | |
167 | |
168 distclean: clean | |
169 | |
170 maintainer-clean: distclean | |
171 rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs | |
172 # Don't delete these, because they are outside the current directory. | |
173 # for file in $(INFO_TARGETS); do rm -f $${file}*; done | |
174 | |
175 | |
176 # Formerly this directory had texindex.c and getopt.c in it | |
177 # and this makefile built them to make texindex. | |
178 # That caused trouble because this is run entirely in the source directory. | |
179 # Since we expect to get texi2dvi from elsewhere, | |
180 # it is ok to expect texindex from elsewhere also. |