(Highlight Interactively): Correct description of hi-lock-file-patterns-policy.
[emacs.git] / nt / makefile.w32-in
blobf579855522e198f408c2ddf3b67ddb9fbd87d88f
1 #  -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.\r
2 #  Copyright (C) 2000, 2001, 2002, 2003, 2004,\r
3 #    2005, 2006, 2007 Free Software Foundation, Inc.\r
4 #\r
5 #  Top level makefile for building GNU Emacs on Windows NT\r
6 #\r
7 #  This file is part of GNU Emacs.\r
8 #\r
9 #  GNU Emacs is free software; you can redistribute it and/or modify\r
10 #  it under the terms of the GNU General Public License as published by\r
11 #  the Free Software Foundation; either version 2, or (at your option)\r
12 #  any later version.\r
13 #\r
14 #  GNU Emacs is distributed in the hope that it will be useful,\r
15 #  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
16 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
17 #  GNU General Public License for more details.\r
18 #\r
19 #  You should have received a copy of the GNU General Public License\r
20 #  along with GNU Emacs; see the file COPYING.  If not, write to\r
21 #  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\r
22 #  Boston, MA 02110-1301, USA.\r
24 # FIXME: This file uses DOS EOLs.  Convert to Unix after 22.1 is out\r
25 #        (and remove or replace this comment).\r
27 ALL             = addpm ddeclient runemacs cmdproxy addsection preprep\r
29 .PHONY: $(ALL)\r
31 TRES            = $(BLD)/emacs.res\r
33 XMFLAGS         =\r
35 addpm:            stamp_BLD $(BLD)/addpm.exe\r
36 $(BLD)/addpm.exe: $(BLD)/addpm.$(O)\r
37                   $(LINK) $(LINK_OUT)$@ \\r
38                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)\r
40 ddeclient:        stamp_BLD $(BLD)/ddeclient.exe\r
41 $(BLD)/ddeclient.exe: $(BLD)/ddeclient.$(O)\r
42                   $(LINK) $(LINK_OUT)$@ \\r
43                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)\r
45 cmdproxy:         stamp_BLD $(BLD)/cmdproxy.exe\r
46 $(BLD)/cmdproxy.exe: $(BLD)/cmdproxy.$(O)\r
47                   $(LINK) $(LINK_OUT)$@ \\r
48                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)\r
50 addsection:       stamp_BLD $(BLD)/addsection.exe\r
51 $(BLD)/addsection.exe: $(BLD)/addsection.$(O)\r
52                   $(LINK) $(LINK_OUT)$@ \\r
53                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)\r
55 preprep:          stamp_BLD $(BLD)/preprep.exe\r
56 $(BLD)/preprep.exe: $(BLD)/preprep.$(O)\r
57                   $(LINK) $(LINK_OUT)$@ \\r
58                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS)\r
60 #\r
61 # The resource file.  NT 3.10 requires the use of cvtres; even though\r
62 # it is not necessary on later versions, it is still ok to use it.\r
63 #\r
64 $(TRES):        emacs.rc stamp_BLD\r
65                 $(RC) $(RC_OUT)$(BLD)/emacs.res emacs.rc\r
67 runemacs:         stamp_BLD $(BLD)/runemacs.exe\r
68 $(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)\r
69                   $(LINK) $(LINK_OUT)$@ $(SUBSYSTEM_WINDOWS) \\r
70                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)\r
72 which-sh:\r
73         @echo Using $(THE_SHELL) as shell.\r
75 # These depend on stamp_BLD to make sure the $(BLD) directory is created\r
76 # before the compilation begins, even if Make runs several commands\r
77 # in parallel under "make -j".\r
78 #\r
79 $(BLD)/addpm.$(O) $(BLD)/ddeclient.$(O) $(BLD)/runemacs.$(O) $(BLD)/cmdproxy.$(O) $(BLD)/addsection.$(O) $(BLD)/preprep.$(O): stamp_BLD\r
81 #\r
82 # Build emacs\r
83 #\r
84 all:    which-sh stamp_BLD $(ALL) maybe-bootstrap all-other-dirs-$(MAKETYPE)\r
86 all-other-dirs-nmake: addsection\r
87         cd ..\lib-src\r
88         $(MAKE) $(MFLAGS) all\r
89         cd ..\src\r
90         $(MAKE) $(MFLAGS) all\r
91         cd ..\lisp\r
92         $(MAKE) $(MFLAGS) all\r
93         cd ..\leim\r
94         $(MAKE) $(MFLAGS) all\r
95         cd ..\nt\r
97 all-other-dirs-gmake: addsection\r
98         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src all\r
99         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src all\r
100         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp all\r
101         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim all\r
103 recompile:      recompile-$(MAKETYPE)\r
105 recompile-nmake:\r
106         cd ..\lisp\r
107         $(MAKE) $(MFLAGS) recompile\r
108         cd ..\nt\r
110 recompile-gmake:\r
111         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp recompile\r
113 #### Bootstrapping.\r
115 ### This is meant for Emacs maintainers only.  It first cleans the\r
116 ### lisp subdirectory, removing all compiled Lisp files.  Then a\r
117 ### special emacs executable is built from Lisp sources, which is then\r
118 ### used to compile Lisp files.  The last step is a "normal" make.\r
120 maybe-bootstrap: maybe-bootstrap-$(SHELLTYPE)\r
122 # dummy target to force other targets to be evaluated.\r
123 doit:\r
125 maybe-bootstrap-CMD:    doit\r
126         @echo .\r
127         @if not EXIST ..\lisp\abbrev.elc echo Essential Lisp files seem to be missing.  You should either\r
128         @if not EXIST ..\lisp\abbrev.elc echo do 'make bootstrap' or create 'lisp/abbrev.elc' somehow\r
129         @echo .\r
130         @if not EXIST ..\lisp\abbrev.elc exit -1\r
132 maybe-bootstrap-SH: doit\r
133         @if [ ! -f ../lisp/abbrev.elc ] ; then \\r
134           echo; \\r
135           echo "Essential Lisp files seem to be missing.  You should either"; \\r
136           echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow.";  \\r
137           echo; \\r
138           exit -1; \\r
139         fi\r
141 bootstrap:      addsection bootstrap-$(MAKETYPE)\r
142         $(MAKE) $(MFLAGS) $(XMFLAGS) all\r
144 bootstrap-nmake: addsection\r
145         cd ..\lisp\r
146         $(MAKE) $(MFLAGS) bootstrap-clean\r
147         cd ..\src\r
148         $(MAKE) $(MFLAGS) clean\r
149         cd ..\lib-src\r
150         $(MAKE) $(MFLAGS) clean\r
151         cd ..\src\r
152         $(MAKE) $(MFLAGS) bootstrap\r
153         $(MAKE) $(MFLAGS) bootstrap-clean\r
154         cd ..\lisp\r
155         $(MAKE) $(MFLAGS) SHELL=$(SHELLTYPE) bootstrap\r
156         cd ..\lib-src\r
157         $(MAKE) $(MFLAGS) DOC\r
158         cd ..\nt\r
160 bootstrap-gmake: addsection\r
161         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean\r
162         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean\r
163         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean\r
164         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap\r
165         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean\r
166         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap\r
167         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src DOC\r
169 bootstrap-clean: bootstrap-clean-$(MAKETYPE)\r
171 bootstrap-clean-nmake:\r
172         cd ..\src\r
173         $(MAKE) $(MFLAGS) bootstrap-clean\r
174         cd ..\lisp\r
175         $(MAKE) $(MFLAGS) bootstrap-clean\r
177 bootstrap-clean-gmake:\r
178         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean\r
179         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean\r
181 $(INSTALL_DIR):\r
182         - mkdir "$(INSTALL_DIR)"\r
184 $(INSTALL_DIR)/bin: $(INSTALL_DIR)\r
185         - mkdir "$(INSTALL_DIR)/bin"\r
188 # Build and install emacs in INSTALL_DIR\r
190 install: all $(INSTALL_DIR)/bin install-other-dirs-$(MAKETYPE)\r
191         - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin\r
192         - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin\r
193         - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin\r
194         - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin\r
195         - "$(INSTALL_DIR)/bin/addpm" -q\r
196         - $(DEL) ../same-dir.tst\r
197         - $(DEL) $(INSTALL_DIR)/same-dir.tst\r
198         echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"\r
199         - mkdir "$(INSTALL_DIR)/etc"\r
200         - mkdir "$(INSTALL_DIR)/info"\r
201         - mkdir "$(INSTALL_DIR)/lock"\r
202         - mkdir "$(INSTALL_DIR)/data"\r
203         - mkdir "$(INSTALL_DIR)/site-lisp"\r
204         - mkdir "$(INSTALL_DIR)/etc/icons"\r
205         $(IFNOTSAMEDIR) $(CP) ../site-lisp/subdirs.el $(INSTALL_DIR)/site-lisp $(ENDIF)\r
206         $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR) $(ENDIF)\r
207         - $(CP_DIR) icons $(INSTALL_DIR)/etc\r
208         $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR) $(ENDIF)\r
209         - $(DEL) ../same-dir.tst\r
210         - $(DEL) $(INSTALL_DIR)/same-dir.tst\r
212 install-other-dirs-nmake:\r
213         cd ..\lib-src\r
214         $(MAKE) $(MFLAGS) install\r
215         cd ..\src\r
216         $(MAKE) $(MFLAGS) install\r
217         cd ..\lisp\r
218         $(MAKE) $(MFLAGS) install\r
219         cd ..\leim\r
220         $(MAKE) $(MFLAGS) install\r
221         cd ..\nt\r
223 install-other-dirs-gmake:\r
224         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src install\r
225         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src install\r
226         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp install\r
227         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim install\r
229 force-info:\r
230 # Note that man/makefile knows how to\r
231 # put the info files in $(infodir),\r
232 # so we can do ok running make in the build dir.\r
233 info: force-info info-$(MAKETYPE)\r
235 info-nmake:\r
236         cd ..\man\r
237         $(MAKE) $(MFLAGS) info\r
238         cd ..\lispref\r
239         $(MAKE) $(MFLAGS) info\r
240         cd ..\lispintro\r
241         $(MAKE) $(MFLAGS) info\r
243 info-gmake:\r
244         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../man info\r
245         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lispref info\r
246         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lispintro info\r
248 # Maintenance\r
250 clean:  clean-other-dirs-$(MAKETYPE)\r
251         - $(DEL) *~ $(COMPILER_TEMP_FILES)\r
252         - $(DEL_TREE) $(OBJDIR)\r
253         - $(DEL) stamp_BLD\r
254         - $(DEL) ../etc/DOC ../etc/DOC-X\r
256 clean-other-dirs-nmake:\r
257         cd ..\lib-src\r
258         $(MAKE) $(MFLAGS) clean\r
259         cd ..\src\r
260         $(MAKE) $(MFLAGS) clean\r
261         cd ..\lisp\r
262         $(MAKE) $(MFLAGS) clean\r
263         cd ..\lispintro\r
264         $(MAKE) $(MFLAGS) clean\r
265         cd ..\lispref\r
266         $(MAKE) $(MFLAGS) clean\r
267         cd ..\leim\r
268         $(MAKE) $(MFLAGS) clean\r
269         cd ..\man\r
270         $(MAKE) $(MFLAGS) clean\r
271         cd ..\nt\r
273 clean-other-dirs-gmake:\r
274         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean\r
275         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean\r
276         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp clean\r
277         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim clean\r
279 cleanall-other-dirs-nmake:\r
280         cd ..\lib-src\r
281         $(MAKE) $(MFLAGS) cleanall\r
282         cd ..\src\r
283         $(MAKE) $(MFLAGS) cleanall\r
284         cd ..\nt\r
286 cleanall-other-dirs-gmake:\r
287         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src cleanall\r
288         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src cleanall\r
290 cleanall: clean cleanall-other-dirs-$(MAKETYPE)\r
291          - $(DEL_TREE) obj\r
292          - $(DEL_TREE) obj-spd\r
293          - $(DEL_TREE) oo\r
294          - $(DEL_TREE) oo-spd\r
296 realclean: cleanall\r
297         - $(DEL_TREE) ../bin\r