1 #### Makefile for the Emacs Manual and other documentation.
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.
9 # Tell make where to find source files; this is needed for the makefiles.
13 # The makeinfo program is part of the Texinfo distribution.
15 INFO_TARGETS
= ..
/info/emacs ..
/info/ccmode ..
/info/cl ..
/info/dired-x \
16 ..
/info/ediff ..
/info/forms ..
/info/gnus ..
/info/info \
17 ..
/info/mh-e ..
/info/sc ..
/info/vip ..
/info/viper
18 DVI_TARGETS
= emacs.
dvi cc-mode.
dvi cl.
dvi dired-x.
dvi ediff.
dvi forms.
dvi \
19 gnus.
dvi mh-e.
dvi sc.
dvi vip.
dvi viper.
dvi
20 INFOSOURCES
= info.texi info-stnd.texi
22 # The following rule does not work with all versions of `make'.
30 ${srcdir}/emacs.texi \
31 ${srcdir}/screen.texi \
32 ${srcdir}/commands.texi \
33 ${srcdir}/entering.texi \
34 ${srcdir}/basic.texi \
39 ${srcdir}/killing.texi \
41 ${srcdir}/display.texi \
42 ${srcdir}/search.texi \
43 ${srcdir}/fixit.texi \
44 ${srcdir}/files.texi \
45 ${srcdir}/buffers.texi \
46 ${srcdir}/windows.texi \
47 ${srcdir}/frames.texi \
48 ${srcdir}/major.texi \
49 ${srcdir}/indent.texi \
51 ${srcdir}/programs.texi \
52 ${srcdir}/building.texi \
53 ${srcdir}/abbrevs.texi \
54 ${srcdir}/picture.texi \
55 ${srcdir}/sending.texi \
56 ${srcdir}/rmail.texi \
57 ${srcdir}/dired.texi \
58 ${srcdir}/calendar.texi \
60 ${srcdir}/custom.texi \
61 ${srcdir}/trouble.texi \
62 ${srcdir}/cmdargs.texi \
66 ${srcdir}/glossary.texi
72 ..
/info/info: ${INFOSOURCES}
73 $(MAKEINFO
) --no-split
info.texi
75 info.
dvi: ${INFOSOURCES}
76 $(TEXI2DVI
) ${srcdir}/info.texi
78 ..
/info/emacs
: ${EMACSSOURCES}
79 $(MAKEINFO
) emacs.texi
81 emacs.
dvi: ${EMACSSOURCES}
82 $(TEXI2DVI
) ${srcdir}/emacs.texi
84 ..
/info/ccmode
: cc-mode.texi
85 $(MAKEINFO
) cc-mode.texi
86 cc-mode.
dvi: cc-mode.texi
87 $(TEXI2DVI
) ${srcdir}/cc-mode.texi
92 $(TEXI2DVI
) ${srcdir}/cl.texi
94 ..
/info/dired-x
: dired-x.texi
95 $(MAKEINFO
) dired-x.texi
96 dired-x.
dvi: dired-x.texi
97 $(TEXI2DVI
) ${srcdir}/dired-x.texi
99 ..
/info/ediff
: ediff.texi
100 $(MAKEINFO
) ediff.texi
101 ediff.
dvi: ediff.texi
102 $(TEXI2DVI
) ${srcdir}/ediff.texi
104 ..
/info/forms
: forms.texi
105 $(MAKEINFO
) forms.texi
106 forms.
dvi: forms.texi
107 $(TEXI2DVI
) ${srcdir}/forms.texi
109 ..
/info/mh-e
: mh-e.texi
110 $(MAKEINFO
) mh-e.texi
112 $(TEXI2DVI
) ${srcdir}/mh-e.texi
117 $(TEXI2DVI
) ${srcdir}/sc.texi
119 ..
/info/vip
: vip.texi
122 $(TEXI2DVI
) ${srcdir}/vip.texi
124 ..
/info/gnus
: gnus.texi
125 $(MAKEINFO
) gnus.texi
127 $(TEXI2DVI
) ${srcdir}/gnus.texi
129 ..
/etc
/GNU
: gnu1.texi gnu.texi
130 makeinfo --no-headers
-o ..
/etc
/GNU gnu1.texi
132 ..
/info/viper
: viper.texi viper-cmd.texi
133 $(MAKEINFO
) viper.texi
134 viper.
dvi: viper.texi viper-cmd.texi
135 $(TEXI2DVI
) ${srcdir}/viper.texi
138 rm -f
*.log
*.cp
*.fn
*.ky
*.pg
*.vr core
145 maintainer-clean
: distclean
146 rm -f
*.aux
*.cps
*.fns
*.kys
*.pgs
*.vrs
147 # Don't delete these, because they are outside the current directory.
148 # for file in $(INFO_TARGETS); do rm -f $${file}*; done
151 # Formerly this directory had texindex.c and getopt.c in it
152 # and this makefile built them to make texindex.
153 # That caused trouble because this is run entirely in the source directory.
154 # Since we expect to get texi2dvi from elsewhere,
155 # it is ok to expect texindex from elsewhere also.