(bootstrap-gmake): Pass XMFLAGS="$(XMFLAGS)" command-line argument to sub-Make
[bpt/emacs.git] / nt / makefile.w32-in
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 # 2005, 2006 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 2, or (at your option)
12 # 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; see the file COPYING. If not, write to
21 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 # Boston, MA 02110-1301, USA.
23
24 ALL = addpm ddeclient runemacs cmdproxy addsection preprep
25
26 .PHONY: $(ALL)
27
28 TRES = $(BLD)/emacs.res
29
30 XMFLAGS =
31
32 addpm: stamp_BLD $(BLD)/addpm.exe
33 $(BLD)/addpm.exe: $(BLD)/addpm.$(O)
34 $(LINK) $(LINK_OUT)$@ \
35 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
36
37 ddeclient: stamp_BLD $(BLD)/ddeclient.exe
38 $(BLD)/ddeclient.exe: $(BLD)/ddeclient.$(O)
39 $(LINK) $(LINK_OUT)$@ \
40 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
41
42 cmdproxy: stamp_BLD $(BLD)/cmdproxy.exe
43 $(BLD)/cmdproxy.exe: $(BLD)/cmdproxy.$(O)
44 $(LINK) $(LINK_OUT)$@ \
45 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)
46
47 addsection: stamp_BLD $(BLD)/addsection.exe
48 $(BLD)/addsection.exe: $(BLD)/addsection.$(O)
49 $(LINK) $(LINK_OUT)$@ \
50 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)
51
52 preprep: stamp_BLD $(BLD)/preprep.exe
53 $(BLD)/preprep.exe: $(BLD)/preprep.$(O)
54 $(LINK) $(LINK_OUT)$@ \
55 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS)
56
57 #
58 # The resource file. NT 3.10 requires the use of cvtres; even though
59 # it is not necessary on later versions, it is still ok to use it.
60 #
61 $(TRES): emacs.rc stamp_BLD
62 $(RC) $(RC_OUT)$(BLD)/emacs.res $<
63
64 runemacs: stamp_BLD $(BLD)/runemacs.exe
65 $(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)
66 $(LINK) $(LINK_OUT)$@ $(SUBSYSTEM_WINDOWS) \
67 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
68
69 which-sh:
70 @echo Using $(THE_SHELL) as shell.
71
72 # These depend on stamp_BLD to make sure the $(BLD) directory is created
73 # before the compilation begins, even if Make runs several commands
74 # in parallel under "make -j".
75 #
76 $(BLD)/addpm.$(O) $(BLD)/ddeclient.$(O) $(BLD)/runemacs.$(O) $(BLD)/cmdproxy.$(O) $(BLD)/addsection.$(O) $(BLD)/preprep.$(O): stamp_BLD
77
78 #
79 # Build emacs
80 #
81 all: which-sh stamp_BLD $(ALL) maybe-bootstrap all-other-dirs-$(MAKETYPE)
82
83 all-other-dirs-nmake: addsection
84 cd ..\lib-src
85 $(MAKE) $(MFLAGS) $(XMFLAGS) all
86 cd ..\src
87 $(MAKE) $(MFLAGS) $(XMFLAGS) all
88 cd ..\lisp
89 $(MAKE) $(MFLAGS) $(XMFLAGS) all
90 cd ..\leim
91 $(MAKE) $(MFLAGS) $(XMFLAGS) all
92 cd ..\nt
93
94 all-other-dirs-gmake: addsection
95 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src all
96 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src all
97 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp all
98 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim all
99
100 recompile: recompile-$(MAKETYPE)
101
102 recompile-nmake:
103 cd ..\lisp
104 $(MAKE) $(MFLAGS) $(XMFLAGS) recompile
105 cd ..\nt
106
107 recompile-gmake:
108 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp recompile
109
110 #### Bootstrapping.
111
112 ### This is meant for Emacs maintainers only. It first cleans the
113 ### lisp subdirectory, removing all compiled Lisp files. Then a
114 ### special emacs executable is built from Lisp sources, which is then
115 ### used to compile Lisp files. The last step is a "normal" make.
116
117 maybe-bootstrap: maybe-bootstrap-$(SHELLTYPE)
118
119 # dummy target to force other targets to be evaluated.
120 doit:
121
122 maybe-bootstrap-CMD: doit
123 @echo .
124 @if not EXIST ..\lisp\abbrev.elc echo Essential Lisp files seem to be missing. You should either
125 @if not EXIST ..\lisp\abbrev.elc echo do 'make bootstrap' or create 'lisp/abbrev.elc' somehow
126 @echo .
127 @if not EXIST ..\lisp\abbrev.elc exit -1
128
129 maybe-bootstrap-SH: doit
130 @if [ ! -f ../lisp/abbrev.elc ] ; then \
131 echo; \
132 echo "Essential Lisp files seem to be missing. You should either"; \
133 echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow."; \
134 echo; \
135 exit -1; \
136 fi
137
138 bootstrap: addsection bootstrap-$(MAKETYPE) all
139
140 bootstrap-nmake: addsection
141 cd ..\lisp
142 $(MAKE) $(MFLAGS) bootstrap-clean
143 cd ..\src
144 $(MAKE) $(MFLAGS) clean
145 cd ..\lib-src
146 $(MAKE) $(MFLAGS) clean
147 cd ..\src
148 $(MAKE) $(MFLAGS) bootstrap
149 $(MAKE) $(MFLAGS) bootstrap-clean
150 cd ..\lisp
151 $(MAKE) $(MFLAGS) SHELL=$(SHELLTYPE) bootstrap
152 cd ..\lib-src
153 $(MAKE) $(MFLAGS) DOC
154 cd ..\nt
155
156 bootstrap-gmake: addsection
157 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean
158 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
159 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
160 $(MAKE) $(MFLAGS) $(XMFLAGS) XMFLAGS="$(XMFLAGS)" -C ../src bootstrap
161 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean
162 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap
163 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src DOC
164
165 bootstrap-clean: bootstrap-clean-$(MAKETYPE)
166
167 bootstrap-clean-nmake:
168 cd ..\src
169 $(MAKE) $(MFLAGS) bootstrap-clean
170 cd ..\lisp
171 $(MAKE) $(MFLAGS) bootstrap-clean
172
173 bootstrap-clean-gmake:
174 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean
175 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean
176
177 $(INSTALL_DIR):
178 - mkdir "$(INSTALL_DIR)"
179
180 $(INSTALL_DIR)/bin: $(INSTALL_DIR)
181 - mkdir "$(INSTALL_DIR)/bin"
182
183 #
184 # Build and install emacs in INSTALL_DIR
185 #
186 install: all $(INSTALL_DIR)/bin install-other-dirs-$(MAKETYPE)
187 - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin
188 - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin
189 - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin
190 - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin
191 - "$(INSTALL_DIR)/bin/addpm" -q
192 - $(DEL) ../same-dir.tst
193 - $(DEL) $(INSTALL_DIR)/same-dir.tst
194 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
195 - mkdir "$(INSTALL_DIR)/etc"
196 - mkdir "$(INSTALL_DIR)/info"
197 - mkdir "$(INSTALL_DIR)/lock"
198 - mkdir "$(INSTALL_DIR)/data"
199 - mkdir "$(INSTALL_DIR)/site-lisp"
200 - mkdir "$(INSTALL_DIR)/etc/icons"
201 $(IFNOTSAMEDIR) $(CP) ../site-lisp/subdirs.el $(INSTALL_DIR)/site-lisp $(ENDIF)
202 $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR) $(ENDIF)
203 - $(CP_DIR) icons $(INSTALL_DIR)/etc
204 $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR) $(ENDIF)
205 - $(DEL) ../same-dir.tst
206 - $(DEL) $(INSTALL_DIR)/same-dir.tst
207
208 install-other-dirs-nmake:
209 cd ..\lib-src
210 $(MAKE) $(MFLAGS) install
211 cd ..\src
212 $(MAKE) $(MFLAGS) install
213 cd ..\lisp
214 $(MAKE) $(MFLAGS) install
215 cd ..\leim
216 $(MAKE) $(MFLAGS) install
217 cd ..\nt
218
219 install-other-dirs-gmake:
220 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src install
221 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src install
222 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp install
223 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim install
224
225 force-info:
226 # Note that man/makefile knows how to
227 # put the info files in $(infodir),
228 # so we can do ok running make in the build dir.
229 info: force-info info-$(MAKETYPE)
230
231 info-nmake:
232 cd ..\man
233 $(MAKE) $(MFLAGS) info
234 cd ..\lispref
235 $(MAKE) $(MFLAGS) info
236 cd ..\lispintro
237 $(MAKE) $(MFLAGS) info
238
239 info-gmake:
240 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../man info
241 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lispref info
242 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lispintro info
243 #
244 # Maintenance
245 #
246 clean: clean-other-dirs-$(MAKETYPE)
247 - $(DEL) *~ $(COMPILER_TEMP_FILES)
248 - $(DEL_TREE) $(OBJDIR)
249 - $(DEL) ../etc/DOC ../etc/DOC-X
250
251 clean-other-dirs-nmake:
252 cd ..\lib-src
253 $(MAKE) $(MFLAGS) clean
254 cd ..\src
255 $(MAKE) $(MFLAGS) clean
256 cd ..\lisp
257 $(MAKE) $(MFLAGS) clean
258 cd ..\lispintro
259 $(MAKE) $(MFLAGS) clean
260 cd ..\lispref
261 $(MAKE) $(MFLAGS) clean
262 cd ..\leim
263 $(MAKE) $(MFLAGS) clean
264 cd ..\man
265 $(MAKE) $(MFLAGS) clean
266 cd ..\nt
267
268 clean-other-dirs-gmake:
269 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
270 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
271 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp clean
272 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim clean
273
274 cleanall-other-dirs-nmake:
275 cd ..\lib-src
276 $(MAKE) $(MFLAGS) cleanall
277 cd ..\src
278 $(MAKE) $(MFLAGS) cleanall
279 cd ..\nt
280
281 cleanall-other-dirs-gmake:
282 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src cleanall
283 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src cleanall
284
285 cleanall: clean cleanall-other-dirs-$(MAKETYPE)
286 - $(DEL_TREE) obj
287 - $(DEL_TREE) obj-spd
288 - $(DEL_TREE) oo
289 - $(DEL_TREE) oo-spd
290
291 realclean: cleanall
292 - $(DEL_TREE) ../bin