* configure.in (AC_OUTPUT): Remove doc/emacs/emacsver.texi.
[bpt/emacs.git] / 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
5 # Free Software Foundation, Inc.
6
7 # This file is part of GNU Emacs.
8
9 # GNU Emacs is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13
14 # GNU Emacs is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22 SHELL = /bin/sh
23
24 # Where to find the source code. $(srcdir) will be the doc/emacs subdirectory
25 # of the source tree. This is set by configure's `--srcdir' option.
26 srcdir=@srcdir@
27
28 # Tell make where to find source files; this is needed for the makefiles.
29 VPATH=@srcdir@
30
31 # Only for make dist.
32 version=@version@
33
34 ## Where the output files go.
35 ## Note that the setfilename command in the .texi files assumes this.
36 ## This is a bit funny. Because the info files are in the
37 ## distribution tarfiles, they are always made in $scrdir/../../info,
38 ## even for out-of-tree builds. So infodir is really relative to srcdir.
39 ## The use of VPATH makes it work out, but why not set
40 ## infodir = $(srcdir)/../../info and make it explicit?
41 infodir=../../info
42 # Directory with the (customized) texinfo.tex file.
43 texinfodir = $(srcdir)/../misc
44
45 # The makeinfo program is part of the Texinfo distribution.
46 # Use --force so that it generates output even if there are errors.
47 MAKEINFO = makeinfo --force
48
49 TEXI2DVI = texi2dvi
50 TEXI2PDF = texi2pdf
51
52 # The following rule does not work with all versions of `make'.
53 .SUFFIXES: .texi .dvi
54 .texi.dvi:
55 $(TEXI2DVI) $<
56
57 ENVADD = TEXINPUTS="$(srcdir):$(texinfodir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
58
59
60 EMACS_XTRA= \
61 ${srcdir}/emacs-xtra.texi \
62 $(srcdir)/arevert-xtra.texi \
63 $(srcdir)/cal-xtra.texi \
64 $(srcdir)/dired-xtra.texi \
65 $(srcdir)/picture-xtra.texi \
66 $(srcdir)/emerge-xtra.texi \
67 $(srcdir)/vc-xtra.texi \
68 $(srcdir)/vc1-xtra.texi \
69 $(srcdir)/fortran-xtra.texi \
70 $(srcdir)/msdog-xtra.texi
71
72 EMACSSOURCES= \
73 ${srcdir}/emacsver.texi \
74 ${srcdir}/emacs.texi \
75 ${srcdir}/doclicense.texi \
76 ${srcdir}/gpl.texi \
77 ${srcdir}/screen.texi \
78 ${srcdir}/commands.texi \
79 ${srcdir}/entering.texi \
80 ${srcdir}/basic.texi \
81 ${srcdir}/mini.texi \
82 ${srcdir}/m-x.texi \
83 ${srcdir}/help.texi \
84 ${srcdir}/mark.texi \
85 ${srcdir}/killing.texi \
86 ${srcdir}/regs.texi \
87 ${srcdir}/display.texi \
88 ${srcdir}/search.texi \
89 ${srcdir}/fixit.texi \
90 ${srcdir}/files.texi \
91 ${srcdir}/buffers.texi \
92 ${srcdir}/windows.texi \
93 ${srcdir}/frames.texi \
94 ${srcdir}/mule.texi \
95 ${srcdir}/major.texi \
96 ${srcdir}/indent.texi \
97 ${srcdir}/text.texi \
98 ${srcdir}/programs.texi \
99 ${srcdir}/building.texi \
100 ${srcdir}/maintaining.texi \
101 ${srcdir}/abbrevs.texi \
102 ${srcdir}/sending.texi \
103 ${srcdir}/rmail.texi \
104 ${srcdir}/dired.texi \
105 ${srcdir}/calendar.texi \
106 ${srcdir}/misc.texi \
107 ${srcdir}/custom.texi \
108 ${srcdir}/trouble.texi \
109 ${srcdir}/cmdargs.texi \
110 ${srcdir}/xresources.texi \
111 ${srcdir}/anti.texi \
112 ${srcdir}/macos.texi \
113 ${srcdir}/msdog.texi \
114 ${srcdir}/gnu.texi \
115 ${srcdir}/glossary.texi \
116 ${srcdir}/ack.texi \
117 ${srcdir}/kmacro.texi \
118 $(EMACS_XTRA)
119
120 .PHONY: info dvi pdf
121
122 info: $(infodir)/emacs
123
124 $(infodir):
125 mkdir $@ || test -d $@
126
127 dvi: emacs.dvi
128 pdf: emacs.pdf
129
130 # Note that all the Info targets build the Info files in srcdir.
131 # There is no provision for Info files to exist in the build directory.
132 # In a distribution of Emacs, the Info files should be up to date.
133
134 $(infodir)/emacs: $(infodir) ${EMACSSOURCES}
135 cd $(srcdir); $(MAKEINFO) emacs.texi -o $@
136
137 emacs.dvi: ${EMACSSOURCES}
138 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi
139
140 emacs.pdf: ${EMACSSOURCES}
141 $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs.texi
142
143
144 emacs-xtra.dvi: $(EMACS_XTRA)
145 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-xtra.texi
146
147 emacs-xtra.pdf: $(EMACS_XTRA)
148 $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs-xtra.texi
149
150 .PHONY: mostlyclean clean distclean maintainer-clean infoclean
151
152 ## Temp files.
153 mostlyclean:
154 rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \
155 *.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs
156
157 ## Products not in the release tarfiles.
158 clean: mostlyclean
159 rm -f emacs.dvi emacs-xtra.dvi emacs.pdf emacs-xtra.pdf
160 rm -f emacs-manual-${version}.tar*
161
162 distclean: clean
163
164 ## In the standalone tarfile, the clean rule runs this.
165 infoclean:
166 -cd $(infodir) && rm -f emacs emacs-[1-9] emacs-[1-9][0-9]
167
168 maintainer-clean: distclean infoclean
169
170 .PHONY: dist
171
172 ## Make a standalone tarfile of the Emacs manual sources.
173 ## The [c] is a dumb way to prevent configure expanding it.
174 dist:
175 rm -rf emacs-manual-${version}
176 mkdir emacs-manual-${version}
177 cp ${srcdir}/*.texi ${texinfodir}/texinfo.tex \
178 ${srcdir}/ChangeLog* emacs-manual-${version}/
179 sed -e 's/@sr[c]dir@/./' -e 's/\(texinfodir *=\).*/\1 ./' \
180 -e 's/\(infodir *=\).*/\1 ./' -e 's/^\(clean:.*\)/\1 infoclean/' \
181 -e "s/@ver[s]ion@/${version}/" \
182 ${srcdir}/Makefile.in > emacs-manual-${version}/Makefile
183 sed -e "s/@ver[s]ion@/${version}/" \
184 ${srcdir}/emacsver.texi.in > emacs-manual-${version}/emacsver.texi
185 tar -cf emacs-manual-${version}.tar emacs-manual-${version}
186 rm -rf emacs-manual-${version}
187
188 ### Makefile ends here