Add 2012 to FSF copyright years for Emacs files (do not merge to trunk)
[bpt/emacs.git] / doc / emacs / makefile.w32-in
CommitLineData
345ef41d 1#### -*- Makefile -*- for the Emacs Manual
8cf51b2c 2
49f70d46 3# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
1d51ea25 4# 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. The source code for Emacs's C kernel is
23# expected to be in $(srcdir)/src, and the source code for Emacs's
24# utility programs is expected to be in $(srcdir)/lib-src. This is
25# set by the configure script's `--srcdir' option.
26srcdir=.
27
345ef41d 28infodir = $(srcdir)/../../info
8cf51b2c
GM
29
30# The makeinfo program is part of the Texinfo distribution.
31MAKEINFO = makeinfo --force
32MULTI_INSTALL_INFO = $(srcdir)\..\..\nt\multi-install-info.bat
33INFO_TARGETS = $(infodir)/emacs
34DVI_TARGETS = emacs.dvi
35INFOSOURCES = info.texi
36
37# The following rule does not work with all versions of `make'.
38.SUFFIXES: .texi .dvi
39.texi.dvi:
40 texi2dvi $<
41
42TEXI2DVI = texi2dvi
43ENVADD = $(srcdir)\..\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" \
44 "MAKEINFO=$(MAKEINFO) -I$(srcdir)" /C
45
46EMACS_XTRA=\
47 $(srcdir)/arevert-xtra.texi \
48 $(srcdir)/cal-xtra.texi \
49 $(srcdir)/dired-xtra.texi \
50 $(srcdir)/picture-xtra.texi \
51 $(srcdir)/emerge-xtra.texi \
52 $(srcdir)/vc-xtra.texi \
53 $(srcdir)/vc1-xtra.texi \
8cf51b2c
GM
54 $(srcdir)/fortran-xtra.texi \
55 $(srcdir)/msdog-xtra.texi
56
57EMACSSOURCES= \
58 $(srcdir)/emacs.texi \
59 $(srcdir)/doclicense.texi \
60 $(srcdir)/screen.texi \
61 $(srcdir)/commands.texi \
62 $(srcdir)/entering.texi \
63 $(srcdir)/basic.texi \
64 $(srcdir)/mini.texi \
65 $(srcdir)/m-x.texi \
66 $(srcdir)/help.texi \
67 $(srcdir)/mark.texi \
68 $(srcdir)/killing.texi \
69 $(srcdir)/regs.texi \
70 $(srcdir)/display.texi \
71 $(srcdir)/search.texi \
72 $(srcdir)/fixit.texi \
73 $(srcdir)/files.texi \
74 $(srcdir)/buffers.texi \
75 $(srcdir)/windows.texi \
76 $(srcdir)/frames.texi \
77 $(srcdir)/mule.texi \
78 $(srcdir)/major.texi \
79 $(srcdir)/indent.texi \
80 $(srcdir)/text.texi \
81 $(srcdir)/programs.texi \
82 $(srcdir)/building.texi \
83 $(srcdir)/maintaining.texi \
84 $(srcdir)/abbrevs.texi \
85 $(srcdir)/sending.texi \
86 $(srcdir)/rmail.texi \
87 $(srcdir)/dired.texi \
88 $(srcdir)/calendar.texi \
89 $(srcdir)/misc.texi \
90 $(srcdir)/custom.texi \
91 $(srcdir)/trouble.texi \
92 $(srcdir)/cmdargs.texi \
93 $(srcdir)/xresources.texi \
94 $(srcdir)/anti.texi \
95 $(srcdir)/macos.texi \
96 $(srcdir)/msdog.texi \
97 $(srcdir)/gnu.texi \
98 $(srcdir)/glossary.texi \
99 $(srcdir)/ack.texi \
100 $(srcdir)/kmacro.texi \
101 $(EMACS_XTRA)
102
f272c0fd 103info: $(INFO_TARGETS)
8cf51b2c
GM
104
105dvi: $(DVI_TARGETS)
106
107# Note that all the Info targets build the Info files
108# in srcdir. There is no provision for Info files
109# to exist in the build directory.
110# In a distribution of Emacs, the Info files should be up to date.
111
f272c0fd 112$(infodir)/dir:
8cf51b2c
GM
113 $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
114
115$(infodir)/emacs: $(EMACSSOURCES)
116 $(MAKEINFO) emacs.texi
117
118emacs.dvi: $(EMACSSOURCES)
119 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs.texi
120
121emacs-xtra.dvi: emacs-xtra.texi $(EMACS_XTRA)
122 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-xtra.texi
123
124mostlyclean:
125 - $(DEL) *.log *.cp *.fn *.ky *.pg *.vr core *.tp *.core gnustmp.*
126
127clean: mostlyclean
128 - $(DEL) *.dvi
129 - $(DEL) $(infodir)/emacs*
130
131distclean: clean
e7881076 132 - $(DEL) makefile
8cf51b2c
GM
133
134maintainer-clean: distclean
135 - $(DEL) *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
136# Don't delete these, because they are outside the current directory.
137# for file in $(INFO_TARGETS); do rm -f $${file}*; done
138
139
140# Formerly this directory had texindex.c and getopt.c in it
141# and this makefile built them to make texindex.
142# That caused trouble because this is run entirely in the source directory.
143# Since we expect to get texi2dvi from elsewhere,
144# it is ok to expect texindex from elsewhere also.