]> code.delx.au - gnu-emacs/blob - doc/emacs/Makefile.in
3f2f635dc7cc528e8dfbfb03f7e8525fb8a32765
[gnu-emacs] / doc / emacs / Makefile.in
1 #### Makefile for the Emacs Manual
2
3 # Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 # 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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 3 of the License, or
11 # (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
20
21
22 # Where to find the source code. $(srcdir) will be the man
23 # subdirectory of the source tree. This is
24 # set by the configure script's `--srcdir' option.
25 srcdir=@srcdir@
26 top_srcdir=@top_srcdir@
27
28 # Tell make where to find source files; this is needed for the makefiles.
29 VPATH=@srcdir@
30
31 ## Where the output files go.
32 ## Note that the setfilename command in the .texi files assumes this.
33 infodir=../../info
34 # Directory with the (customized) texinfo.tex file.
35 texinfodir = $(srcdir)/../misc
36
37 # The makeinfo program is part of the Texinfo distribution.
38 # Use --force so that it generates output even if there are errors.
39 MAKEINFO = makeinfo --force
40
41 INFO_TARGETS = $(infodir)/emacs
42 DVI_TARGETS = emacs.dvi
43
44
45 TEXI2DVI = texi2dvi
46 TEXI2PDF = texi2pdf
47
48 # The following rule does not work with all versions of `make'.
49 .SUFFIXES: .texi .dvi
50 .texi.dvi:
51 $(TEXI2DVI) $<
52
53 ENVADD = TEXINPUTS="$(srcdir):$(texinfodir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
54
55
56 EMACS_XTRA=\
57 $(srcdir)/arevert-xtra.texi \
58 $(srcdir)/cal-xtra.texi \
59 $(srcdir)/dired-xtra.texi \
60 $(srcdir)/picture-xtra.texi \
61 $(srcdir)/emerge-xtra.texi \
62 $(srcdir)/vc-xtra.texi \
63 $(srcdir)/vc1-xtra.texi \
64 $(srcdir)/fortran-xtra.texi \
65 $(srcdir)/msdog-xtra.texi
66
67 EMACSSOURCES= \
68 ${srcdir}/emacs.texi \
69 ${srcdir}/doclicense.texi \
70 ${srcdir}/gpl.texi \
71 ${srcdir}/screen.texi \
72 ${srcdir}/commands.texi \
73 ${srcdir}/entering.texi \
74 ${srcdir}/basic.texi \
75 ${srcdir}/mini.texi \
76 ${srcdir}/m-x.texi \
77 ${srcdir}/help.texi \
78 ${srcdir}/mark.texi \
79 ${srcdir}/killing.texi \
80 ${srcdir}/regs.texi \
81 ${srcdir}/display.texi \
82 ${srcdir}/search.texi \
83 ${srcdir}/fixit.texi \
84 ${srcdir}/files.texi \
85 ${srcdir}/buffers.texi \
86 ${srcdir}/windows.texi \
87 ${srcdir}/frames.texi \
88 ${srcdir}/mule.texi \
89 ${srcdir}/major.texi \
90 ${srcdir}/indent.texi \
91 ${srcdir}/text.texi \
92 ${srcdir}/programs.texi \
93 ${srcdir}/building.texi \
94 ${srcdir}/maintaining.texi \
95 ${srcdir}/abbrevs.texi \
96 ${srcdir}/sending.texi \
97 ${srcdir}/rmail.texi \
98 ${srcdir}/dired.texi \
99 ${srcdir}/calendar.texi \
100 ${srcdir}/misc.texi \
101 ${srcdir}/custom.texi \
102 ${srcdir}/trouble.texi \
103 ${srcdir}/cmdargs.texi \
104 ${srcdir}/xresources.texi \
105 ${srcdir}/anti.texi \
106 ${srcdir}/macos.texi \
107 ${srcdir}/msdog.texi \
108 ${srcdir}/gnu.texi \
109 ${srcdir}/glossary.texi \
110 ${srcdir}/ack.texi \
111 ${srcdir}/kmacro.texi \
112 $(EMACS_XTRA)
113
114 info: $(infodir) $(INFO_TARGETS)
115
116 $(infodir):
117 mkdir $@
118
119 dvi: $(DVI_TARGETS)
120
121 # Note that all the Info targets build the Info files
122 # in srcdir. There is no provision for Info files
123 # to exist in the build directory.
124 # In a distribution of Emacs, the Info files should be up to date.
125
126 emacs : $(infodir)/emacs
127
128 $(infodir)/emacs: ${EMACSSOURCES}
129 cd $(srcdir); $(MAKEINFO) emacs.texi
130
131 emacs.dvi: ${EMACSSOURCES}
132 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi
133
134 emacs.pdf: ${EMACSSOURCES}
135 $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs.texi
136
137
138 emacs-xtra.dvi: emacs-xtra.texi $(EMACS_XTRA)
139 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-xtra.texi
140
141 emacs-xtra.pdf: emacs-xtra.texi $(EMACS_XTRA)
142 $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs-xtra.texi
143
144
145 mostlyclean:
146 rm -f *.log *.cp *.fn *.ky *.op *.ops *.pg *.vr core *.tp *.core
147 rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
148
149 clean: mostlyclean
150 rm -f *.dvi
151
152 distclean: clean
153 # rm -f Makefile
154
155 maintainer-clean: distclean
156 for file in $(INFO_TARGETS); do rm -f $${file}*; done
157
158
159 # Formerly this directory had texindex.c and getopt.c in it
160 # and this makefile built them to make texindex.
161 # That caused trouble because this is run entirely in the source directory.
162 # Since we expect to get texi2dvi from elsewhere,
163 # it is ok to expect texindex from elsewhere also.
164
165
166 ### Makefile ends here