Don't change the global function-key-map anny more.
[emacs.git] / doc / emacs / makefile.w32-in
blobd34ab66de4b6df97694c5e729dd9c8157575a00d
1 #### -*- Makefile -*- for the Emacs Manual
3 # Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
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.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 # Boston, MA 02110-1301, USA.
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.
26 srcdir=.
28 infodir = $(srcdir)/../../info
30 # The makeinfo program is part of the Texinfo distribution.
31 MAKEINFO = makeinfo --force
32 MULTI_INSTALL_INFO = $(srcdir)\..\..\nt\multi-install-info.bat
33 INFO_TARGETS = $(infodir)/emacs
34 DVI_TARGETS =   emacs.dvi
35 INFOSOURCES = info.texi
37 # The following rule does not work with all versions of `make'.
38 .SUFFIXES: .texi .dvi
39 .texi.dvi:
40         texi2dvi $<
42 TEXI2DVI = texi2dvi
43 ENVADD = $(srcdir)\..\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" \
44          "MAKEINFO=$(MAKEINFO) -I$(srcdir)" /C
46 EMACS_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 \
54         $(srcdir)/vc2-xtra.texi \
55         $(srcdir)/fortran-xtra.texi \
56         $(srcdir)/msdog-xtra.texi
58 EMACSSOURCES= \
59         $(srcdir)/emacs.texi \
60         $(srcdir)/doclicense.texi \
61         $(srcdir)/screen.texi \
62         $(srcdir)/commands.texi \
63         $(srcdir)/entering.texi \
64         $(srcdir)/basic.texi \
65         $(srcdir)/mini.texi \
66         $(srcdir)/m-x.texi \
67         $(srcdir)/help.texi \
68         $(srcdir)/mark.texi \
69         $(srcdir)/killing.texi \
70         $(srcdir)/regs.texi \
71         $(srcdir)/display.texi \
72         $(srcdir)/search.texi \
73         $(srcdir)/fixit.texi \
74         $(srcdir)/files.texi \
75         $(srcdir)/buffers.texi \
76         $(srcdir)/windows.texi \
77         $(srcdir)/frames.texi \
78         $(srcdir)/mule.texi \
79         $(srcdir)/major.texi \
80         $(srcdir)/indent.texi \
81         $(srcdir)/text.texi \
82         $(srcdir)/programs.texi \
83         $(srcdir)/building.texi \
84         $(srcdir)/maintaining.texi \
85         $(srcdir)/abbrevs.texi \
86         $(srcdir)/sending.texi \
87         $(srcdir)/rmail.texi \
88         $(srcdir)/dired.texi \
89         $(srcdir)/calendar.texi \
90         $(srcdir)/misc.texi \
91         $(srcdir)/custom.texi \
92         $(srcdir)/trouble.texi \
93         $(srcdir)/cmdargs.texi \
94         $(srcdir)/xresources.texi \
95         $(srcdir)/anti.texi \
96         $(srcdir)/macos.texi \
97         $(srcdir)/msdog.texi \
98         $(srcdir)/gnu.texi \
99         $(srcdir)/glossary.texi \
100         $(srcdir)/ack.texi \
101         $(srcdir)/kmacro.texi \
102         $(EMACS_XTRA)
104 info: $(INFO_TARGETS)
106 dvi: $(DVI_TARGETS)
108 # Note that all the Info targets build the Info files
109 # in srcdir.  There is no provision for Info files
110 # to exist in the build directory.
111 # In a distribution of Emacs, the Info files should be up to date.
113 $(infodir)/dir:
114         $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
116 $(infodir)/emacs: $(EMACSSOURCES)
117         $(MAKEINFO) emacs.texi
119 emacs.dvi: $(EMACSSOURCES)
120         $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs.texi
122 emacs-xtra.dvi: emacs-xtra.texi $(EMACS_XTRA)
123         $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-xtra.texi
125 mostlyclean:
126         - $(DEL) *.log *.cp *.fn *.ky *.pg *.vr core *.tp *.core gnustmp.*
128 clean: mostlyclean
129         - $(DEL) *.dvi
130         - $(DEL) $(infodir)/emacs*
132 distclean: clean
134 maintainer-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
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.