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