]> code.delx.au - gnu-emacs/blob - nt/makefile.w32-in
(bootstrap): Make `all' explicitly in a recursive Make.
[gnu-emacs] / 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)
139 $(MAKE) $(MFLAGS) $(XMFLAGS) all
140
141 bootstrap-nmake: addsection
142 cd ..\lisp
143 $(MAKE) $(MFLAGS) bootstrap-clean
144 cd ..\src
145 $(MAKE) $(MFLAGS) clean
146 cd ..\lib-src
147 $(MAKE) $(MFLAGS) clean
148 cd ..\src
149 $(MAKE) $(MFLAGS) bootstrap
150 $(MAKE) $(MFLAGS) bootstrap-clean
151 cd ..\lisp
152 $(MAKE) $(MFLAGS) SHELL=$(SHELLTYPE) bootstrap
153 cd ..\lib-src
154 $(MAKE) $(MFLAGS) DOC
155 cd ..\nt
156
157 bootstrap-gmake: addsection
158 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean
159 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
160 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
161 $(MAKE) $(MFLAGS) $(XMFLAGS) XMFLAGS="$(XMFLAGS)" -C ../src bootstrap
162 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean
163 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap
164 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src DOC
165
166 bootstrap-clean: bootstrap-clean-$(MAKETYPE)
167
168 bootstrap-clean-nmake:
169 cd ..\src
170 $(MAKE) $(MFLAGS) bootstrap-clean
171 cd ..\lisp
172 $(MAKE) $(MFLAGS) bootstrap-clean
173
174 bootstrap-clean-gmake:
175 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean
176 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean
177
178 $(INSTALL_DIR):
179 - mkdir "$(INSTALL_DIR)"
180
181 $(INSTALL_DIR)/bin: $(INSTALL_DIR)
182 - mkdir "$(INSTALL_DIR)/bin"
183
184 #
185 # Build and install emacs in INSTALL_DIR
186 #
187 install: all $(INSTALL_DIR)/bin install-other-dirs-$(MAKETYPE)
188 - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin
189 - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin
190 - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin
191 - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin
192 - "$(INSTALL_DIR)/bin/addpm" -q
193 - $(DEL) ../same-dir.tst
194 - $(DEL) $(INSTALL_DIR)/same-dir.tst
195 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
196 - mkdir "$(INSTALL_DIR)/etc"
197 - mkdir "$(INSTALL_DIR)/info"
198 - mkdir "$(INSTALL_DIR)/lock"
199 - mkdir "$(INSTALL_DIR)/data"
200 - mkdir "$(INSTALL_DIR)/site-lisp"
201 - mkdir "$(INSTALL_DIR)/etc/icons"
202 $(IFNOTSAMEDIR) $(CP) ../site-lisp/subdirs.el $(INSTALL_DIR)/site-lisp $(ENDIF)
203 $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR) $(ENDIF)
204 - $(CP_DIR) icons $(INSTALL_DIR)/etc
205 $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR) $(ENDIF)
206 - $(DEL) ../same-dir.tst
207 - $(DEL) $(INSTALL_DIR)/same-dir.tst
208
209 install-other-dirs-nmake:
210 cd ..\lib-src
211 $(MAKE) $(MFLAGS) install
212 cd ..\src
213 $(MAKE) $(MFLAGS) install
214 cd ..\lisp
215 $(MAKE) $(MFLAGS) install
216 cd ..\leim
217 $(MAKE) $(MFLAGS) install
218 cd ..\nt
219
220 install-other-dirs-gmake:
221 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src install
222 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src install
223 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp install
224 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim install
225
226 force-info:
227 # Note that man/makefile knows how to
228 # put the info files in $(infodir),
229 # so we can do ok running make in the build dir.
230 info: force-info info-$(MAKETYPE)
231
232 info-nmake:
233 cd ..\man
234 $(MAKE) $(MFLAGS) info
235 cd ..\lispref
236 $(MAKE) $(MFLAGS) info
237 cd ..\lispintro
238 $(MAKE) $(MFLAGS) info
239
240 info-gmake:
241 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../man info
242 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lispref info
243 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lispintro info
244 #
245 # Maintenance
246 #
247 clean: clean-other-dirs-$(MAKETYPE)
248 - $(DEL) *~ $(COMPILER_TEMP_FILES)
249 - $(DEL_TREE) $(OBJDIR)
250 - $(DEL) stamp_BLD
251 - $(DEL) ../etc/DOC ../etc/DOC-X
252
253 clean-other-dirs-nmake:
254 cd ..\lib-src
255 $(MAKE) $(MFLAGS) clean
256 cd ..\src
257 $(MAKE) $(MFLAGS) clean
258 cd ..\lisp
259 $(MAKE) $(MFLAGS) clean
260 cd ..\lispintro
261 $(MAKE) $(MFLAGS) clean
262 cd ..\lispref
263 $(MAKE) $(MFLAGS) clean
264 cd ..\leim
265 $(MAKE) $(MFLAGS) clean
266 cd ..\man
267 $(MAKE) $(MFLAGS) clean
268 cd ..\nt
269
270 clean-other-dirs-gmake:
271 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
272 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
273 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp clean
274 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim clean
275
276 cleanall-other-dirs-nmake:
277 cd ..\lib-src
278 $(MAKE) $(MFLAGS) cleanall
279 cd ..\src
280 $(MAKE) $(MFLAGS) cleanall
281 cd ..\nt
282
283 cleanall-other-dirs-gmake:
284 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src cleanall
285 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src cleanall
286
287 cleanall: clean cleanall-other-dirs-$(MAKETYPE)
288 - $(DEL_TREE) obj
289 - $(DEL_TREE) obj-spd
290 - $(DEL_TREE) oo
291 - $(DEL_TREE) oo-spd
292
293 realclean: cleanall
294 - $(DEL_TREE) ../bin