]> code.delx.au - gnu-emacs/blob - nt/makefile.w32-in
Add 2012 to FSF copyright years for Emacs files (do not merge to trunk)
[gnu-emacs] / nt / makefile.w32-in
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 # 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
4 #
5 # Top level makefile for building GNU Emacs on Windows NT
6 #
7 # This file is part of GNU Emacs.
8
9 # GNU Emacs is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13
14 # GNU Emacs is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22
23 # FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out
24 # (and remove or replace this comment).
25
26 TRES = $(BLD)/emacs.res
27 CLIENTRES = $(BLD)/emacsclient.res
28
29 XMFLAGS =
30
31 ALL = addpm ddeclient runemacs cmdproxy addsection preprep
32
33 .PHONY: $(ALL)
34
35
36 addpm: stamp_BLD $(BLD)/addpm.exe
37 $(BLD)/addpm.exe: $(BLD)/addpm.$(O)
38 $(LINK) $(LINK_OUT)$@ \
39 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) \
40 $(USER32) $(OLE32) $(UUID) $(SHELL32)
41
42 ddeclient: stamp_BLD $(BLD)/ddeclient.exe
43 $(BLD)/ddeclient.exe: $(BLD)/ddeclient.$(O)
44 $(LINK) $(LINK_OUT)$@ \
45 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
46
47 cmdproxy: stamp_BLD $(BLD)/cmdproxy.exe
48 $(BLD)/cmdproxy.exe: $(BLD)/cmdproxy.$(O)
49 $(LINK) $(LINK_OUT)$@ \
50 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)
51
52 addsection: stamp_BLD $(BLD)/addsection.exe
53 $(BLD)/addsection.exe: $(BLD)/addsection.$(O)
54 $(LINK) $(LINK_OUT)$@ \
55 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)
56
57 preprep: stamp_BLD $(BLD)/preprep.exe
58 $(BLD)/preprep.exe: $(BLD)/preprep.$(O)
59 $(LINK) $(LINK_OUT)$@ \
60 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS)
61
62 #
63 # The resource file. NT 3.10 requires the use of cvtres; even though
64 # it is not necessary on later versions, it is still ok to use it.
65 #
66 $(TRES): emacs.rc icons/emacs.ico emacs.manifest stamp_BLD
67 $(RC) $(RC_OUT)$(TRES) emacs.rc
68
69 $(CLIENTRES): emacsclient.rc stamp_BLD
70 $(RC) $(RC_OUT)$(CLIENTRES) emacsclient.rc
71
72 runemacs: stamp_BLD $(BLD)/runemacs.exe
73 $(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)
74 $(LINK) $(LINK_OUT)$@ $(SUBSYSTEM_WINDOWS) \
75 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
76
77 which-sh:
78 @echo Using $(THE_SHELL) as shell.
79
80 # These depend on stamp_BLD to make sure the $(BLD) directory is created
81 # before the compilation begins, even if Make runs several commands
82 # in parallel under "make -j".
83 #
84 $(BLD)/addpm.$(O) $(BLD)/ddeclient.$(O) $(BLD)/runemacs.$(O) $(BLD)/cmdproxy.$(O) $(BLD)/addsection.$(O) $(BLD)/preprep.$(O): stamp_BLD
85
86 #
87 # Build emacs
88 #
89 all: which-sh stamp_BLD $(ALL) $(CLIENTRES) maybe-bootstrap all-other-dirs-$(MAKETYPE)
90
91 all-other-dirs-nmake: addsection
92 cd ..\lib-src
93 $(MAKE) $(MFLAGS) all
94 cd ..\src
95 $(MAKE) $(MFLAGS) all
96 cd ..\lisp
97 $(MAKE) $(MFLAGS) all
98 cd ..\leim
99 $(MAKE) $(MFLAGS) all
100 cd ..\nt
101
102 all-other-dirs-gmake: addsection
103 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src all
104 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src all
105 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp all
106 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim all
107
108 recompile: recompile-$(MAKETYPE)
109
110 recompile-nmake:
111 cd ..\lisp
112 $(MAKE) $(MFLAGS) recompile
113 cd ..\nt
114
115 recompile-gmake:
116 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp recompile
117
118 #### Bootstrapping.
119
120 ### This is meant for Emacs maintainers only. It first cleans the
121 ### lisp subdirectory, removing all compiled Lisp files. Then a
122 ### special emacs executable is built from Lisp sources, which is then
123 ### used to compile Lisp files. The last step is a "normal" make.
124
125 maybe-bootstrap: maybe-bootstrap-$(SHELLTYPE)
126
127 # dummy target to force other targets to be evaluated.
128 doit:
129
130 maybe-bootstrap-CMD: doit
131 @echo .
132 @if not EXIST ..\lisp\abbrev.elc echo Essential Lisp files seem to be missing. You should either
133 @if not EXIST ..\lisp\abbrev.elc echo do 'make bootstrap' or create 'lisp/abbrev.elc' somehow
134 @echo .
135 @if not EXIST ..\lisp\abbrev.elc exit -1
136
137 maybe-bootstrap-SH: doit
138 @if [ ! -f ../lisp/abbrev.elc ] ; then \
139 echo; \
140 echo "Essential Lisp files seem to be missing. You should either"; \
141 echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow."; \
142 echo; \
143 exit -1; \
144 fi
145
146 # Bootstrap depends on cmdproxy because some Lisp functions
147 # loaded during bootstrap may need to run shell commands.
148 bootstrap: addsection cmdproxy bootstrap-$(MAKETYPE)
149 $(MAKE) $(MFLAGS) $(XMFLAGS) all
150
151 bootstrap-nmake: addsection cmdproxy
152 cd ..\lisp
153 $(MAKE) $(MFLAGS) bootstrap-clean
154 cd ..\src
155 $(MAKE) $(MFLAGS) clean
156 cd ..\lib-src
157 $(MAKE) $(MFLAGS) clean
158 cd ..\src
159 $(MAKE) $(MFLAGS) bootstrap
160 $(MAKE) $(MFLAGS) bootstrap-clean
161 cd ..\nt
162 $(CP) $(BLD)/cmdproxy.exe ../bin
163 cd ..\lisp
164 $(MAKE) $(MFLAGS) SHELL=$(SHELLTYPE) bootstrap
165 cd ..\lib-src
166 $(MAKE) $(MFLAGS) DOC
167 cd ..\nt
168
169 bootstrap-gmake: addsection cmdproxy
170 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean
171 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
172 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
173 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap
174 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean
175 $(CP) $(BLD)/cmdproxy.exe ../bin
176 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap
177 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src DOC
178
179 bootstrap-clean: bootstrap-clean-$(MAKETYPE)
180
181 bootstrap-clean-nmake:
182 cd ..\src
183 $(MAKE) $(MFLAGS) bootstrap-clean
184 cd ..\lisp
185 $(MAKE) $(MFLAGS) bootstrap-clean
186
187 bootstrap-clean-gmake:
188 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean
189 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean
190
191 $(INSTALL_DIR):
192 - mkdir "$(INSTALL_DIR)"
193
194 $(INSTALL_DIR)/bin: $(INSTALL_DIR)
195 - mkdir "$(INSTALL_DIR)/bin"
196
197 #
198 # Build and install emacs in INSTALL_DIR
199 #
200 install: all $(INSTALL_DIR)/bin install-other-dirs-$(MAKETYPE)
201 - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin
202 - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin
203 - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin
204 - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin
205 - "$(INSTALL_DIR)/bin/addpm" -q
206 - $(DEL) ../same-dir.tst
207 - $(DEL) $(INSTALL_DIR)/same-dir.tst
208 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
209 - mkdir "$(INSTALL_DIR)/etc"
210 - mkdir "$(INSTALL_DIR)/info"
211 - mkdir "$(INSTALL_DIR)/lock"
212 - mkdir "$(INSTALL_DIR)/data"
213 - mkdir "$(INSTALL_DIR)/site-lisp"
214 - mkdir "$(INSTALL_DIR)/etc/icons"
215 $(IFNOTSAMEDIR) $(CP) ../site-lisp/subdirs.el $(INSTALL_DIR)/site-lisp $(ENDIF)
216 $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR) $(ENDIF)
217 - $(CP_DIR) icons $(INSTALL_DIR)/etc
218 $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR) $(ENDIF)
219 $(IFNOTSAMEDIR) $(CP) ../COPYING $(INSTALL_DIR) $(ENDIF)
220 - $(CP) ../COPYING $(INSTALL_DIR)/bin
221 - $(DEL) ../same-dir.tst
222 - $(DEL) $(INSTALL_DIR)/same-dir.tst
223
224 install-other-dirs-nmake:
225 cd ..\lib-src
226 $(MAKE) $(MFLAGS) install
227 cd ..\src
228 $(MAKE) $(MFLAGS) install
229 cd ..\lisp
230 $(MAKE) $(MFLAGS) install
231 cd ..\leim
232 $(MAKE) $(MFLAGS) install
233 cd ..\nt
234
235 install-other-dirs-gmake:
236 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src install
237 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src install
238 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp install
239 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim install
240
241 force-info:
242 # Note that doc/emacs/makefile knows how to
243 # put the info files in $(infodir),
244 # so we can do ok running make in the build dir.
245 info: force-info info-$(MAKETYPE)
246
247 info-nmake:
248 cd ..\doc\emacs
249 $(MAKE) $(MFLAGS) info
250 cd ..\misc
251 $(MAKE) $(MFLAGS) info
252 cd ..\lispref
253 $(MAKE) $(MFLAGS) info
254 cd ..\lispintro
255 $(MAKE) $(MFLAGS) info
256 cd $(MAKEDIR)
257
258 info-gmake:
259 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/emacs info
260 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/misc info
261 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispref info
262 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispintro info
263 #
264 # Maintenance
265 #
266 clean: clean-other-dirs-$(MAKETYPE)
267 - $(DEL) $(COMPILER_TEMP_FILES)
268 - $(DEL_TREE) $(OBJDIR)
269 - $(DEL) stamp_BLD
270 - $(DEL) ../etc/DOC ../etc/DOC-X
271
272 clean-other-dirs-nmake:
273 cd ..\lib-src
274 $(MAKE) $(MFLAGS) clean
275 cd ..\src
276 $(MAKE) $(MFLAGS) clean
277 cd ..\doc\lispintro
278 $(MAKE) $(MFLAGS) clean
279 cd ..\doc\lispref
280 $(MAKE) $(MFLAGS) clean
281 cd ..\leim
282 $(MAKE) $(MFLAGS) clean
283 cd ..\doc\emacs
284 $(MAKE) $(MFLAGS) clean
285 cd ..\doc\misc
286 $(MAKE) $(MFLAGS) clean
287 cd ..\nt
288
289 clean-other-dirs-gmake:
290 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
291 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
292 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim clean
293 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/emacs clean
294 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/misc clean
295 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispintro clean
296 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispref clean
297
298 cleanall-other-dirs-nmake:
299 cd ..\lib-src
300 $(MAKE) $(MFLAGS) cleanall
301 cd ..\src
302 $(MAKE) $(MFLAGS) cleanall
303 cd ..\nt
304
305 cleanall-other-dirs-gmake:
306 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src cleanall
307 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src cleanall
308
309 # We used to delete *~ here, but that might inadvertently remove
310 # precious files if it happens to match their short 8+3 aliases.
311 cleanall: clean cleanall-other-dirs-$(MAKETYPE)
312 - $(DEL_TREE) obj
313 - $(DEL_TREE) obj-spd
314 - $(DEL_TREE) oo
315 - $(DEL_TREE) oo-spd
316
317 top-distclean:
318 - $(DEL) $(COMPILER_TEMP_FILES)
319 - $(DEL_TREE) obj
320 - $(DEL_TREE) obj-spd
321 - $(DEL_TREE) oo
322 - $(DEL_TREE) oo-spd
323 - $(DEL) stamp_BLD
324 - $(DEL) ../etc/DOC ../etc/DOC-X
325 - $(DEL) config.log Makefile
326
327 distclean: distclean-other-dirs-$(MAKETYPE) top-distclean
328
329 distclean-other-dirs-nmake:
330 cd ..\lib-src
331 $(MAKE) $(MFLAGS) distclean
332 cd ..\src
333 $(MAKE) $(MFLAGS) distclean
334 cd ..\lisp
335 $(MAKE) $(MFLAGS) distclean
336 cd ..\leim
337 $(MAKE) $(MFLAGS) distclean
338 cd ..\doc\emacs
339 $(MAKE) $(MFLAGS) distclean
340 cd ..\doc\misc
341 $(MAKE) $(MFLAGS) distclean
342 cd ..\doc\lispintro
343 $(MAKE) $(MFLAGS) distclean
344 cd ..\doc\lispref
345 $(MAKE) $(MFLAGS) distclean
346 cd ..\nt
347
348 distclean-other-dirs-gmake:
349 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src distclean
350 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src distclean
351 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp distclean
352 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim distclean
353 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/emacs distclean
354 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/misc distclean
355 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispintro distclean
356 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispref distclean
357
358 maintainer-clean: maintainer-clean-other-dirs-$(MAKETYPE) top-distclean
359
360 maintainer-clean-other-dirs-nmake:
361 cd ..\lib-src
362 $(MAKE) $(MFLAGS) maintainer-clean
363 cd ..\src
364 $(MAKE) $(MFLAGS) maintainer-clean
365 cd ..\lisp
366 $(MAKE) $(MFLAGS) maintainer-clean
367 cd ..\leim
368 $(MAKE) $(MFLAGS) maintainer-clean
369 cd ..\doc\emacs
370 $(MAKE) $(MFLAGS) maintainer-clean
371 cd ..\doc\misc
372 $(MAKE) $(MFLAGS) maintainer-clean
373 cd ..\doc\lispintro
374 $(MAKE) $(MFLAGS) maintainer-clean
375 cd ..\doc\lispref
376 $(MAKE) $(MFLAGS) maintainer-clean
377 cd ..\nt
378
379 maintainer-clean-other-dirs-gmake:
380 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src maintainer-clean
381 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src maintainer-clean
382 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp maintainer-clean
383 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim maintainer-clean
384 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/emacs maintainer-clean
385 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/misc maintainer-clean
386 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispintro maintainer-clean
387 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispref maintainer-clean
388
389 realclean: cleanall
390 - $(DEL_TREE) ../bin