Anchor regexps in doc/ `make dist' rules.
[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}/emacs.texi \
74 ${srcdir}/emacsver.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 ## This seems pointless. The info/ directory exists in both the
121 ## repository and the release tarfiles. We do not use any
122 ## equivalent of mkdir -p/mkinstalldirs, so this is not a general
123 ## solution anyway. The second test -d is for parallel builds.
124 mkinfodir = @cd ${srcdir}; test -d ${infodir} || mkdir ${infodir} || test -d ${infodir}
125
126 .PHONY: info dvi pdf
127
128 info: $(infodir)/emacs
129 dvi: emacs.dvi
130 pdf: emacs.pdf
131
132 # Note that all the Info targets build the Info files in srcdir.
133 # There is no provision for Info files to exist in the build directory.
134 # In a distribution of Emacs, the Info files should be up to date.
135
136 $(infodir)/emacs: ${EMACSSOURCES}
137 $(mkinfodir)
138 cd $(srcdir); $(MAKEINFO) $< -o $@
139
140 emacs.dvi: ${EMACSSOURCES}
141 $(ENVADD) $(TEXI2DVI) $<
142
143 emacs.pdf: ${EMACSSOURCES}
144 $(ENVADD) $(TEXI2PDF) $<
145
146
147 emacs-xtra.dvi: $(EMACS_XTRA)
148 $(ENVADD) $(TEXI2DVI) $<
149
150 emacs-xtra.pdf: $(EMACS_XTRA)
151 $(ENVADD) $(TEXI2PDF) $<
152
153 .PHONY: mostlyclean clean distclean maintainer-clean infoclean
154
155 ## Temp files.
156 mostlyclean:
157 rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \
158 *.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs
159
160 ## Products not in the release tarfiles.
161 clean: mostlyclean
162 rm -f emacs.dvi emacs-xtra.dvi emacs.pdf emacs-xtra.pdf
163 rm -f emacs-manual-${version}.tar*
164
165 distclean: clean
166
167 ## In the standalone tarfile, the clean rule runs this.
168 infoclean:
169 -cd $(srcdir) && cd $(infodir) && rm -f emacs emacs-[1-9] emacs-[1-9][0-9]
170
171 maintainer-clean: distclean infoclean
172
173 .PHONY: dist
174
175 ## Make a standalone tarfile of the Emacs manual sources.
176 ## The [c] is a dumb way to prevent configure expanding it.
177 dist:
178 rm -rf emacs-manual-${version}
179 mkdir emacs-manual-${version}
180 cp ${srcdir}/*.texi ${texinfodir}/texinfo.tex \
181 ${srcdir}/ChangeLog* emacs-manual-${version}/
182 sed -e 's/@sr[c]dir@/./' -e 's/^\(texinfodir *=\).*/\1 ./' \
183 -e 's/^\(infodir *=\).*/\1 ./' -e 's/^\(clean:.*\)/\1 infoclean/' \
184 -e "s/@ver[s]ion@/${version}/" \
185 ${srcdir}/Makefile.in > emacs-manual-${version}/Makefile
186 tar -cf emacs-manual-${version}.tar emacs-manual-${version}
187 rm -rf emacs-manual-${version}
188
189 ### Makefile ends here