Update copyright year to 2014 by running admin/update-copyright.
[bpt/emacs.git] / doc / emacs / makefile.w32-in
CommitLineData
345ef41d 1#### -*- Makefile -*- for the Emacs Manual
8cf51b2c 2
ba318903 3# Copyright (C) 2003-2014 Free Software Foundation, Inc.
8cf51b2c
GM
4
5# This file is part of GNU Emacs.
6
352c8b4a 7# GNU Emacs is free software: you can redistribute it and/or modify
8cf51b2c 8# it under the terms of the GNU General Public License as published by
352c8b4a
GM
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
8cf51b2c
GM
11
12# GNU Emacs is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16
17# You should have received a copy of the GNU General Public License
352c8b4a
GM
18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
8cf51b2c
GM
20
21# Where to find the source code. The source code for Emacs's C kernel is
22# expected to be in $(srcdir)/src, and the source code for Emacs's
23# utility programs is expected to be in $(srcdir)/lib-src. This is
24# set by the configure script's `--srcdir' option.
25srcdir=.
26
345ef41d 27infodir = $(srcdir)/../../info
8cf51b2c
GM
28
29# The makeinfo program is part of the Texinfo distribution.
bf3dae7e 30MAKEINFO = makeinfo
63a329f8 31MAKEINFO_OPTS = --force --enable-encoding -I$(srcdir)
8cf51b2c 32MULTI_INSTALL_INFO = $(srcdir)\..\..\nt\multi-install-info.bat
8045b906
GM
33INFO_EXT=.info
34INFO_OPTS=--no-split
35INFO_TARGETS = $(infodir)/emacs$(INFO_EXT)
8cf51b2c
GM
36DVI_TARGETS = emacs.dvi
37INFOSOURCES = info.texi
38
39# The following rule does not work with all versions of `make'.
40.SUFFIXES: .texi .dvi
41.texi.dvi:
42 texi2dvi $<
43
44TEXI2DVI = texi2dvi
45ENVADD = $(srcdir)\..\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" \
bf3dae7e 46 "MAKEINFO=$(MAKEINFO) $(MAKEINFO_OPTS)" /C
8cf51b2c
GM
47
48EMACS_XTRA=\
49 $(srcdir)/arevert-xtra.texi \
50 $(srcdir)/cal-xtra.texi \
51 $(srcdir)/dired-xtra.texi \
52 $(srcdir)/picture-xtra.texi \
53 $(srcdir)/emerge-xtra.texi \
54 $(srcdir)/vc-xtra.texi \
55 $(srcdir)/vc1-xtra.texi \
8cf51b2c
GM
56 $(srcdir)/fortran-xtra.texi \
57 $(srcdir)/msdog-xtra.texi
58
59EMACSSOURCES= \
60 $(srcdir)/emacs.texi \
6513b232 61 $(srcdir)/emacsver.texi \
8cf51b2c
GM
62 $(srcdir)/doclicense.texi \
63 $(srcdir)/screen.texi \
64 $(srcdir)/commands.texi \
65 $(srcdir)/entering.texi \
66 $(srcdir)/basic.texi \
67 $(srcdir)/mini.texi \
68 $(srcdir)/m-x.texi \
69 $(srcdir)/help.texi \
70 $(srcdir)/mark.texi \
71 $(srcdir)/killing.texi \
72 $(srcdir)/regs.texi \
73 $(srcdir)/display.texi \
74 $(srcdir)/search.texi \
75 $(srcdir)/fixit.texi \
76 $(srcdir)/files.texi \
77 $(srcdir)/buffers.texi \
78 $(srcdir)/windows.texi \
79 $(srcdir)/frames.texi \
80 $(srcdir)/mule.texi \
c160ddee 81 $(srcdir)/modes.texi \
8cf51b2c
GM
82 $(srcdir)/indent.texi \
83 $(srcdir)/text.texi \
84 $(srcdir)/programs.texi \
85 $(srcdir)/building.texi \
86 $(srcdir)/maintaining.texi \
87 $(srcdir)/abbrevs.texi \
88 $(srcdir)/sending.texi \
89 $(srcdir)/rmail.texi \
90 $(srcdir)/dired.texi \
91 $(srcdir)/calendar.texi \
92 $(srcdir)/misc.texi \
d43f5a42 93 $(srcdir)/package.texi \
8cf51b2c
GM
94 $(srcdir)/custom.texi \
95 $(srcdir)/trouble.texi \
96 $(srcdir)/cmdargs.texi \
97 $(srcdir)/xresources.texi \
98 $(srcdir)/anti.texi \
99 $(srcdir)/macos.texi \
100 $(srcdir)/msdog.texi \
101 $(srcdir)/gnu.texi \
102 $(srcdir)/glossary.texi \
103 $(srcdir)/ack.texi \
104 $(srcdir)/kmacro.texi \
105 $(EMACS_XTRA)
106
f272c0fd 107info: $(INFO_TARGETS)
8cf51b2c
GM
108
109dvi: $(DVI_TARGETS)
110
111# Note that all the Info targets build the Info files
112# in srcdir. There is no provision for Info files
113# to exist in the build directory.
114# In a distribution of Emacs, the Info files should be up to date.
115
f272c0fd 116$(infodir)/dir:
8cf51b2c
GM
117 $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
118
8045b906
GM
119$(infodir)/emacs$(INFO_EXT): $(EMACSSOURCES)
120 $(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ emacs.texi
8cf51b2c
GM
121
122emacs.dvi: $(EMACSSOURCES)
123 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs.texi
124
bf3dae7e
EZ
125emacs.html: $(EMACSSOURCES)
126 $(MAKEINFO) $(MAKEINFO_OPTS) --html -o $@ emacs.texi
127
8cf51b2c
GM
128emacs-xtra.dvi: emacs-xtra.texi $(EMACS_XTRA)
129 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-xtra.texi
130
131mostlyclean:
132 - $(DEL) *.log *.cp *.fn *.ky *.pg *.vr core *.tp *.core gnustmp.*
133
8045b906 134## FIXME $(infodir)/emacs* deletes too much, eg emacs-mime.
8cf51b2c
GM
135clean: mostlyclean
136 - $(DEL) *.dvi
137 - $(DEL) $(infodir)/emacs*
bf3dae7e 138 - $(DEL_TREE) emacs.html
8cf51b2c
GM
139
140distclean: clean
e7881076 141 - $(DEL) makefile
8cf51b2c
GM
142
143maintainer-clean: distclean
144 - $(DEL) *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
145# Don't delete these, because they are outside the current directory.
146# for file in $(INFO_TARGETS); do rm -f $${file}*; done
147
148
149# Formerly this directory had texindex.c and getopt.c in it
150# and this makefile built them to make texindex.
151# That caused trouble because this is run entirely in the source directory.
152# Since we expect to get texi2dvi from elsewhere,
153# it is ok to expect texindex from elsewhere also.