(CLIENTRES): New variable and build target.
[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, 2008 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 TRES = $(BLD)/emacs.res
28 CLIENTRES = $(BLD)/emacsclient.res
29
30 XMFLAGS =
31
32 ALL = addpm ddeclient runemacs cmdproxy addsection preprep $(CLIENTRES)
33
34 .PHONY: $(ALL)
35
36
37 addpm: stamp_BLD $(BLD)/addpm.exe
38 $(BLD)/addpm.exe: $(BLD)/addpm.$(O)
39 $(LINK) $(LINK_OUT)$@ \
40 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
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 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) 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 man/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 ..\man
249 $(MAKE) $(MFLAGS) info
250 cd ..\lispref
251 $(MAKE) $(MFLAGS) info
252 cd ..\lispintro
253 $(MAKE) $(MFLAGS) info
254
255 info-gmake:
256 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../man info
257 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lispref info
258 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lispintro info
259 #
260 # Maintenance
261 #
262 clean: clean-other-dirs-$(MAKETYPE)
263 - $(DEL) $(COMPILER_TEMP_FILES)
264 - $(DEL_TREE) $(OBJDIR)
265 - $(DEL) stamp_BLD
266 - $(DEL) ../etc/DOC ../etc/DOC-X
267
268 clean-other-dirs-nmake:
269 cd ..\lib-src
270 $(MAKE) $(MFLAGS) clean
271 cd ..\src
272 $(MAKE) $(MFLAGS) clean
273 cd ..\lisp
274 $(MAKE) $(MFLAGS) clean
275 cd ..\lispintro
276 $(MAKE) $(MFLAGS) clean
277 cd ..\lispref
278 $(MAKE) $(MFLAGS) clean
279 cd ..\leim
280 $(MAKE) $(MFLAGS) clean
281 cd ..\man
282 $(MAKE) $(MFLAGS) clean
283 cd ..\nt
284
285 clean-other-dirs-gmake:
286 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
287 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
288 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp clean
289 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim clean
290
291 cleanall-other-dirs-nmake:
292 cd ..\lib-src
293 $(MAKE) $(MFLAGS) cleanall
294 cd ..\src
295 $(MAKE) $(MFLAGS) cleanall
296 cd ..\nt
297
298 cleanall-other-dirs-gmake:
299 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src cleanall
300 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src cleanall
301
302 # We used to delete *~ here, but that might inadvertently remove
303 # precious files if it happens to match their short 8+3 aliases.
304 cleanall: clean cleanall-other-dirs-$(MAKETYPE)
305 - $(DEL_TREE) obj
306 - $(DEL_TREE) obj-spd
307 - $(DEL_TREE) oo
308 - $(DEL_TREE) oo-spd
309
310 realclean: cleanall
311 - $(DEL_TREE) ../bin