* help.el (view-lossage): Fix docstring, lossage is now 300 keys.
[bpt/emacs.git] / doc / emacs / Makefile.in
CommitLineData
df42eec6 1#### Makefile for the Emacs Manual
8cf51b2c
GM
2
3# Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
1d51ea25 4# 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
8cf51b2c
GM
5
6# This file is part of GNU Emacs.
7
352c8b4a 8# GNU Emacs is free software: you can redistribute it and/or modify
8cf51b2c 9# it under the terms of the GNU General Public License as published by
352c8b4a
GM
10# the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.
8cf51b2c
GM
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
352c8b4a
GM
19# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20
8cf51b2c
GM
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.
25srcdir=@srcdir@
26top_srcdir=@top_srcdir@
27
28# Tell make where to find source files; this is needed for the makefiles.
29VPATH=@srcdir@
30
df42eec6
GM
31## Where the output files go.
32## Note that the setfilename command in the .texi files assumes this.
33infodir=../../info
8cf51b2c
GM
34
35# The makeinfo program is part of the Texinfo distribution.
36# Use --force so that it generates output even if there are errors.
37MAKEINFO = makeinfo --force
df42eec6
GM
38
39INFO_TARGETS = $(infodir)/emacs
40DVI_TARGETS = emacs.dvi
41
42
43TEXI2DVI = texi2dvi
8cf51b2c
GM
44
45# The following rule does not work with all versions of `make'.
46.SUFFIXES: .texi .dvi
47.texi.dvi:
df42eec6 48 $(TEXI2DVI) $<
8cf51b2c 49
8cf51b2c
GM
50ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
51
df42eec6 52
8cf51b2c
GM
53EMACS_XTRA=\
54 $(srcdir)/arevert-xtra.texi \
55 $(srcdir)/cal-xtra.texi \
56 $(srcdir)/dired-xtra.texi \
57 $(srcdir)/picture-xtra.texi \
58 $(srcdir)/emerge-xtra.texi \
59 $(srcdir)/vc-xtra.texi \
60 $(srcdir)/vc1-xtra.texi \
61 $(srcdir)/vc2-xtra.texi \
62 $(srcdir)/fortran-xtra.texi \
63 $(srcdir)/msdog-xtra.texi
64
65EMACSSOURCES= \
66 ${srcdir}/emacs.texi \
67 ${srcdir}/doclicense.texi \
68 ${srcdir}/gpl.texi \
69 ${srcdir}/screen.texi \
70 ${srcdir}/commands.texi \
71 ${srcdir}/entering.texi \
72 ${srcdir}/basic.texi \
73 ${srcdir}/mini.texi \
74 ${srcdir}/m-x.texi \
75 ${srcdir}/help.texi \
76 ${srcdir}/mark.texi \
77 ${srcdir}/killing.texi \
78 ${srcdir}/regs.texi \
79 ${srcdir}/display.texi \
80 ${srcdir}/search.texi \
81 ${srcdir}/fixit.texi \
82 ${srcdir}/files.texi \
83 ${srcdir}/buffers.texi \
84 ${srcdir}/windows.texi \
85 ${srcdir}/frames.texi \
86 ${srcdir}/mule.texi \
87 ${srcdir}/major.texi \
88 ${srcdir}/indent.texi \
89 ${srcdir}/text.texi \
90 ${srcdir}/programs.texi \
91 ${srcdir}/building.texi \
92 ${srcdir}/maintaining.texi \
93 ${srcdir}/abbrevs.texi \
94 ${srcdir}/sending.texi \
95 ${srcdir}/rmail.texi \
96 ${srcdir}/dired.texi \
97 ${srcdir}/calendar.texi \
98 ${srcdir}/misc.texi \
99 ${srcdir}/custom.texi \
100 ${srcdir}/trouble.texi \
101 ${srcdir}/cmdargs.texi \
102 ${srcdir}/xresources.texi \
103 ${srcdir}/anti.texi \
104 ${srcdir}/macos.texi \
105 ${srcdir}/msdog.texi \
106 ${srcdir}/gnu.texi \
107 ${srcdir}/glossary.texi \
108 ${srcdir}/ack.texi \
109 ${srcdir}/kmacro.texi \
110 $(EMACS_XTRA)
111
df42eec6 112info: $(infodir) $(INFO_TARGETS)
8cf51b2c 113
df42eec6 114$(infodir):
8cf51b2c
GM
115 mkdir $@
116
117dvi: $(DVI_TARGETS)
118
119# Note that all the Info targets build the Info files
120# in srcdir. There is no provision for Info files
121# to exist in the build directory.
122# In a distribution of Emacs, the Info files should be up to date.
123
df42eec6 124emacs : $(infodir)/emacs
8cf51b2c 125
df42eec6 126$(infodir)/emacs: ${EMACSSOURCES}
8cf51b2c
GM
127 cd $(srcdir); $(MAKEINFO) emacs.texi
128
129emacs.dvi: ${EMACSSOURCES}
130 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi
131
8cf51b2c
GM
132
133emacs-xtra.dvi: emacs-xtra.texi $(EMACS_XTRA)
134 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-xtra.texi
135
8cf51b2c
GM
136
137mostlyclean:
df42eec6
GM
138 rm -f *.log *.cp *.fn *.ky *.op *.ops *.pg *.vr core *.tp *.core
139 rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
8cf51b2c
GM
140
141clean: mostlyclean
142 rm -f *.dvi
143
144distclean: clean
df42eec6 145# rm -f Makefile
8cf51b2c
GM
146
147maintainer-clean: distclean
8cf51b2c
GM
148 for file in $(INFO_TARGETS); do rm -f $${file}*; done
149
150
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.
df42eec6
GM
156
157
158### Makefile ends here