(frame-parameter) <defsetf>: Make it return the assigned value.
[emacs.git] / nt / makefile.w32-in
blob2b498f9d4dfe2894188c689ba384cc3bc59018d3
1 #  -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.\r
2 #  Copyright (C) 2000, 2001, 2002, 2003, 2004,\r
3 #    2005, 2006, 2007, 2008 Free Software Foundation, Inc.\r
4 #\r
5 #  Top level makefile for building GNU Emacs on Windows NT\r
6 #\r
7 #  This file is part of GNU Emacs.\r
8 #\r
9 #  GNU Emacs is free software; you can redistribute it and/or modify\r
10 #  it under the terms of the GNU General Public License as published by\r
11 #  the Free Software Foundation; either version 3, or (at your option)\r
12 #  any later version.\r
13 #\r
14 #  GNU Emacs is distributed in the hope that it will be useful,\r
15 #  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
16 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
17 #  GNU General Public License for more details.\r
18 #\r
19 #  You should have received a copy of the GNU General Public License\r
20 #  along with GNU Emacs; see the file COPYING.  If not, write to\r
21 #  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\r
22 #  Boston, MA 02110-1301, USA.\r
24 # FIXME: This file uses DOS EOLs.  Convert to Unix after 22.1 is out\r
25 #        (and remove or replace this comment).\r
27 ALL             = addpm ddeclient runemacs cmdproxy addsection preprep\r
29 .PHONY: $(ALL)\r
31 TRES            = $(BLD)/emacs.res\r
33 XMFLAGS         =\r
35 addpm:            stamp_BLD $(BLD)/addpm.exe\r
36 $(BLD)/addpm.exe: $(BLD)/addpm.$(O)\r
37                   $(LINK) $(LINK_OUT)$@ \\r
38                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)\r
40 ddeclient:        stamp_BLD $(BLD)/ddeclient.exe\r
41 $(BLD)/ddeclient.exe: $(BLD)/ddeclient.$(O)\r
42                   $(LINK) $(LINK_OUT)$@ \\r
43                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)\r
45 cmdproxy:         stamp_BLD $(BLD)/cmdproxy.exe\r
46 $(BLD)/cmdproxy.exe: $(BLD)/cmdproxy.$(O)\r
47                   $(LINK) $(LINK_OUT)$@ \\r
48                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)\r
50 addsection:       stamp_BLD $(BLD)/addsection.exe\r
51 $(BLD)/addsection.exe: $(BLD)/addsection.$(O)\r
52                   $(LINK) $(LINK_OUT)$@ \\r
53                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)\r
55 preprep:          stamp_BLD $(BLD)/preprep.exe\r
56 $(BLD)/preprep.exe: $(BLD)/preprep.$(O)\r
57                   $(LINK) $(LINK_OUT)$@ \\r
58                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS)\r
60 #\r
61 # The resource file.  NT 3.10 requires the use of cvtres; even though\r
62 # it is not necessary on later versions, it is still ok to use it.\r
63 #\r
64 $(TRES):        emacs.rc icons/emacs.ico emacs.manifest stamp_BLD\r
65                 $(RC) $(RC_OUT)$(BLD)/emacs.res emacs.rc\r
67 runemacs:         stamp_BLD $(BLD)/runemacs.exe\r
68 $(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)\r
69                   $(LINK) $(LINK_OUT)$@ $(SUBSYSTEM_WINDOWS) \\r
70                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)\r
72 which-sh:\r
73         @echo Using $(THE_SHELL) as shell.\r
75 # These depend on stamp_BLD to make sure the $(BLD) directory is created\r
76 # before the compilation begins, even if Make runs several commands\r
77 # in parallel under "make -j".\r
78 #\r
79 $(BLD)/addpm.$(O) $(BLD)/ddeclient.$(O) $(BLD)/runemacs.$(O) $(BLD)/cmdproxy.$(O) $(BLD)/addsection.$(O) $(BLD)/preprep.$(O): stamp_BLD\r
81 #\r
82 # Build emacs\r
83 #\r
84 all:    which-sh stamp_BLD $(ALL) maybe-bootstrap all-other-dirs-$(MAKETYPE)\r
86 all-other-dirs-nmake: addsection\r
87         cd ..\lib-src\r
88         $(MAKE) $(MFLAGS) all\r
89         cd ..\src\r
90         $(MAKE) $(MFLAGS) all\r
91         cd ..\lisp\r
92         $(MAKE) $(MFLAGS) all\r
93         cd ..\leim\r
94         $(MAKE) $(MFLAGS) all\r
95         cd ..\nt\r
97 all-other-dirs-gmake: addsection\r
98         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src all\r
99         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src all\r
100         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp all\r
101         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim all\r
103 recompile:      recompile-$(MAKETYPE)\r
105 recompile-nmake:\r
106         cd ..\lisp\r
107         $(MAKE) $(MFLAGS) recompile\r
108         cd ..\nt\r
110 recompile-gmake:\r
111         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp recompile\r
113 #### Bootstrapping.\r
115 ### This is meant for Emacs maintainers only.  It first cleans the\r
116 ### lisp subdirectory, removing all compiled Lisp files.  Then a\r
117 ### special emacs executable is built from Lisp sources, which is then\r
118 ### used to compile Lisp files.  The last step is a "normal" make.\r
120 maybe-bootstrap: maybe-bootstrap-$(SHELLTYPE)\r
122 # dummy target to force other targets to be evaluated.\r
123 doit:\r
125 maybe-bootstrap-CMD:    doit\r
126         @echo .\r
127         @if not EXIST ..\lisp\abbrev.elc echo Essential Lisp files seem to be missing.  You should either\r
128         @if not EXIST ..\lisp\abbrev.elc echo do 'make bootstrap' or create 'lisp/abbrev.elc' somehow\r
129         @echo .\r
130         @if not EXIST ..\lisp\abbrev.elc exit -1\r
132 maybe-bootstrap-SH: doit\r
133         @if [ ! -f ../lisp/abbrev.elc ] ; then \\r
134           echo; \\r
135           echo "Essential Lisp files seem to be missing.  You should either"; \\r
136           echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow.";  \\r
137           echo; \\r
138           exit -1; \\r
139         fi\r
141 # Bootstrap depends on cmdproxy because some Lisp functions\r
142 # loaded during bootstrap may need to run shell commands.\r
143 bootstrap:      addsection cmdproxy bootstrap-$(MAKETYPE)\r
144         $(MAKE) $(MFLAGS) $(XMFLAGS) all\r
146 bootstrap-nmake: addsection cmdproxy\r
147         cd ..\lisp\r
148         $(MAKE) $(MFLAGS) bootstrap-clean\r
149         cd ..\src\r
150         $(MAKE) $(MFLAGS) clean\r
151         cd ..\lib-src\r
152         $(MAKE) $(MFLAGS) clean\r
153         cd ..\src\r
154         $(MAKE) $(MFLAGS) bootstrap\r
155         $(MAKE) $(MFLAGS) bootstrap-clean\r
156         cd ..\nt\r
157         $(CP) $(BLD)/cmdproxy.exe ../bin\r
158         cd ..\lisp\r
159         $(MAKE) $(MFLAGS) SHELL=$(SHELLTYPE) bootstrap\r
160         cd ..\lib-src\r
161         $(MAKE) $(MFLAGS) DOC\r
162         cd ..\nt\r
164 bootstrap-gmake: addsection cmdproxy\r
165         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean\r
166         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean\r
167         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean\r
168         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap\r
169         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean\r
170         $(CP) $(BLD)/cmdproxy.exe ../bin\r
171         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap\r
172         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src DOC\r
174 bootstrap-clean: bootstrap-clean-$(MAKETYPE)\r
176 bootstrap-clean-nmake:\r
177         cd ..\src\r
178         $(MAKE) $(MFLAGS) bootstrap-clean\r
179         cd ..\lisp\r
180         $(MAKE) $(MFLAGS) bootstrap-clean\r
182 bootstrap-clean-gmake:\r
183         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean\r
184         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean\r
186 $(INSTALL_DIR):\r
187         - mkdir "$(INSTALL_DIR)"\r
189 $(INSTALL_DIR)/bin: $(INSTALL_DIR)\r
190         - mkdir "$(INSTALL_DIR)/bin"\r
193 # Build and install emacs in INSTALL_DIR\r
195 install: all $(INSTALL_DIR)/bin install-other-dirs-$(MAKETYPE)\r
196         - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin\r
197         - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin\r
198         - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin\r
199         - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin\r
200         - "$(INSTALL_DIR)/bin/addpm" -q\r
201         - $(DEL) ../same-dir.tst\r
202         - $(DEL) $(INSTALL_DIR)/same-dir.tst\r
203         echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"\r
204         - mkdir "$(INSTALL_DIR)/etc"\r
205         - mkdir "$(INSTALL_DIR)/info"\r
206         - mkdir "$(INSTALL_DIR)/lock"\r
207         - mkdir "$(INSTALL_DIR)/data"\r
208         - mkdir "$(INSTALL_DIR)/site-lisp"\r
209         - mkdir "$(INSTALL_DIR)/etc/icons"\r
210         $(IFNOTSAMEDIR) $(CP) ../site-lisp/subdirs.el $(INSTALL_DIR)/site-lisp $(ENDIF)\r
211         $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR) $(ENDIF)\r
212         - $(CP_DIR) icons $(INSTALL_DIR)/etc\r
213         $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR) $(ENDIF)\r
214         $(IFNOTSAMEDIR) $(CP) ../COPYING $(INSTALL_DIR) $(ENDIF)\r
215         - $(CP) ../COPYING $(INSTALL_DIR)/bin\r
216         - $(DEL) ../same-dir.tst\r
217         - $(DEL) $(INSTALL_DIR)/same-dir.tst\r
219 install-other-dirs-nmake:\r
220         cd ..\lib-src\r
221         $(MAKE) $(MFLAGS) install\r
222         cd ..\src\r
223         $(MAKE) $(MFLAGS) install\r
224         cd ..\lisp\r
225         $(MAKE) $(MFLAGS) install\r
226         cd ..\leim\r
227         $(MAKE) $(MFLAGS) install\r
228         cd ..\nt\r
230 install-other-dirs-gmake:\r
231         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src install\r
232         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src install\r
233         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp install\r
234         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim install\r
236 force-info:\r
237 # Note that doc/emacs/makefile knows how to\r
238 # put the info files in $(infodir),\r
239 # so we can do ok running make in the build dir.\r
240 info: force-info info-$(MAKETYPE)\r
242 info-nmake:\r
243         cd ..\doc\emacs\r
244         $(MAKE) $(MFLAGS) info\r
245         cd ..\misc\r
246         $(MAKE) $(MFLAGS) info\r
247         cd ..\lispref\r
248         $(MAKE) $(MFLAGS) info\r
249         cd ..\lispintro\r
250         $(MAKE) $(MFLAGS) info\r
251         cd $(MAKEDIR)\r
253 info-gmake:\r
254         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/emacs info\r
255         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/misc info\r
256         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispref info\r
257         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispintro info\r
259 # Maintenance\r
261 clean:  clean-other-dirs-$(MAKETYPE)\r
262         - $(DEL) $(COMPILER_TEMP_FILES)\r
263         - $(DEL_TREE) $(OBJDIR)\r
264         - $(DEL) stamp_BLD\r
265         - $(DEL) ../etc/DOC ../etc/DOC-X\r
267 clean-other-dirs-nmake:\r
268         cd ..\lib-src\r
269         $(MAKE) $(MFLAGS) clean\r
270         cd ..\src\r
271         $(MAKE) $(MFLAGS) clean\r
272         cd ..\lisp\r
273         $(MAKE) $(MFLAGS) clean\r
274         cd ..\doc\lispintro\r
275         $(MAKE) $(MFLAGS) clean\r
276         cd ..\doc\lispref\r
277         $(MAKE) $(MFLAGS) clean\r
278         cd ..\leim\r
279         $(MAKE) $(MFLAGS) clean\r
280         cd ..\doc\emacs\r
281         $(MAKE) $(MFLAGS) clean\r
282         cd ..\doc\misc\r
283         $(MAKE) $(MFLAGS) clean\r
284         cd ..\nt\r
286 clean-other-dirs-gmake:\r
287         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean\r
288         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean\r
289         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp clean\r
290         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim clean\r
292 cleanall-other-dirs-nmake:\r
293         cd ..\lib-src\r
294         $(MAKE) $(MFLAGS) cleanall\r
295         cd ..\src\r
296         $(MAKE) $(MFLAGS) cleanall\r
297         cd ..\nt\r
299 cleanall-other-dirs-gmake:\r
300         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src cleanall\r
301         $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src cleanall\r
303 # We used to delete *~ here, but that might inadvertently remove\r
304 # precious files if it happens to match their short 8+3 aliases.\r
305 cleanall: clean cleanall-other-dirs-$(MAKETYPE)\r
306          - $(DEL_TREE) obj\r
307          - $(DEL_TREE) obj-spd\r
308          - $(DEL_TREE) oo\r
309          - $(DEL_TREE) oo-spd\r
311 realclean: cleanall\r
312         - $(DEL_TREE) ../bin\r