Remove unidata-gen related rules.
[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 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 $(IFNOTSAMEDIR) $(CP) ../COPYING $(INSTALL_DIR) $(ENDIF)
215 - $(CP) ../COPYING $(INSTALL_DIR)/bin
216 - $(DEL) ../same-dir.tst
217 - $(DEL) $(INSTALL_DIR)/same-dir.tst
218
219 install-other-dirs-nmake:
220 cd ..\lib-src
221 $(MAKE) $(MFLAGS) install
222 cd ..\src
223 $(MAKE) $(MFLAGS) install
224 cd ..\lisp
225 $(MAKE) $(MFLAGS) install
226 cd ..\leim
227 $(MAKE) $(MFLAGS) install
228 cd ..\nt
229
230 install-other-dirs-gmake:
231 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src install
232 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src install
233 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp install
234 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim install
235
236 force-info:
237 # Note that doc/emacs/makefile knows how to
238 # put the info files in $(infodir),
239 # so we can do ok running make in the build dir.
240 info: force-info info-$(MAKETYPE)
241
242 info-nmake:
243 cd ..\doc\emacs
244 $(MAKE) $(MFLAGS) info
245 cd ..\misc
246 $(MAKE) $(MFLAGS) info
247 cd ..\lispref
248 $(MAKE) $(MFLAGS) info
249 cd ..\lispintro
250 $(MAKE) $(MFLAGS) info
251 cd $(MAKEDIR)
252
253 info-gmake:
254 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/emacs info
255 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/misc info
256 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispref info
257 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispintro info
258 #
259 # Maintenance
260 #
261 clean: clean-other-dirs-$(MAKETYPE)
262 - $(DEL) $(COMPILER_TEMP_FILES)
263 - $(DEL_TREE) $(OBJDIR)
264 - $(DEL) stamp_BLD
265 - $(DEL) ../etc/DOC ../etc/DOC-X
266
267 clean-other-dirs-nmake:
268 cd ..\lib-src
269 $(MAKE) $(MFLAGS) clean
270 cd ..\src
271 $(MAKE) $(MFLAGS) clean
272 cd ..\lisp
273 $(MAKE) $(MFLAGS) clean
274 cd ..\doc\lispintro
275 $(MAKE) $(MFLAGS) clean
276 cd ..\doc\lispref
277 $(MAKE) $(MFLAGS) clean
278 cd ..\leim
279 $(MAKE) $(MFLAGS) clean
280 cd ..\doc\emacs
281 $(MAKE) $(MFLAGS) clean
282 cd ..\doc\misc
283 $(MAKE) $(MFLAGS) clean
284 cd ..\nt
285
286 clean-other-dirs-gmake:
287 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
288 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
289 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp clean
290 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim clean
291
292 cleanall-other-dirs-nmake:
293 cd ..\lib-src
294 $(MAKE) $(MFLAGS) cleanall
295 cd ..\src
296 $(MAKE) $(MFLAGS) cleanall
297 cd ..\nt
298
299 cleanall-other-dirs-gmake:
300 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src cleanall
301 $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src cleanall
302
303 # We used to delete *~ here, but that might inadvertently remove
304 # precious files if it happens to match their short 8+3 aliases.
305 cleanall: clean cleanall-other-dirs-$(MAKETYPE)
306 - $(DEL_TREE) obj
307 - $(DEL_TREE) obj-spd
308 - $(DEL_TREE) oo
309 - $(DEL_TREE) oo-spd
310
311 realclean: cleanall
312 - $(DEL_TREE) ../bin