1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 # 2008, 2009 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 # Set EMACSLOADPATH correctly (in case already defined in environment).
26 EMACSLOADPATH=$(CURDIR)/../lisp
29 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
30 # the emacs source tree.
32 LOCAL_FLAGS = -Demacs=1 -DHAVE_CONFIG_H -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
34 EMACS = $(BLD)/emacs.exe
35 TEMACS = $(BLD)/temacs.exe
36 TEMACS_TMP = $(BLD)/temacs.bin
37 TLIB0 = $(BLD)/temacs0.$(A)
38 TLIB1 = $(BLD)/temacs1.$(A)
39 TLIBW32 = $(BLD)/temacw32.$(A)
40 TOBJ = $(BLD)/firstfile.$(O)
41 TRES = $(BLD)/emacs.res
42 TLASTLIB = $(BLD)/lastfile.$(A)
44 DOC = $(OBJDIR)/etc/DOC-X
46 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
49 # Split up the objects into two sets so that we don't run out of
50 # command line space when we link them into a library.
52 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
53 # as the "main" object file when linking.
55 OBJ0 = $(BLD)/emacs.$(O)
57 OBJ1 = $(BLD)/alloc.$(O) \
60 $(BLD)/bytecode.$(O) \
62 $(BLD)/callproc.$(O) \
63 $(BLD)/casefiddle.$(O) \
74 $(BLD)/filelock.$(O) \
75 $(BLD)/filemode.$(O) \
79 $(BLD)/keyboard.$(O) \
88 $(BLD)/w32inevt.$(O) \
90 $(BLD)/w32console.$(O) \
100 $(BLD)/termcap.$(O) \
103 $(BLD)/unexw32.$(O) \
106 $(BLD)/casetab.$(O) \
107 $(BLD)/floatfns.$(O) \
109 $(BLD)/gmalloc.$(O) \
110 $(BLD)/intervals.$(O) \
111 $(BLD)/composite.$(O) \
113 $(BLD)/textprop.$(O) \
114 $(BLD)/vm-limit.$(O) \
115 $(BLD)/region-cache.$(O) \
116 $(BLD)/strftime.$(O) \
117 $(BLD)/charset.$(O) \
118 $(BLD)/character.$(O) \
119 $(BLD)/chartab.$(O) \
121 $(BLD)/category.$(O) \
124 $(BLD)/fontset.$(O) \
127 $(BLD)/terminal.$(O) \
130 WIN32OBJ = $(BLD)/w32term.$(O) \
131 $(BLD)/w32xfns.$(O) \
134 $(BLD)/w32select.$(O) \
135 $(BLD)/w32menu.$(O) \
138 FONTOBJ = $(BLD)/w32font.$(O) $(BLD)/w32uniscribe.$(O)
158 # Build the executable and dump it.
163 # The dumped executable
165 emacs: stamp_BLD $(EMACS)
166 $(EMACS): $(DOC) $(TEMACS)
167 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
168 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
171 # The undumped executable
172 # Note the extra post-link step to insert a static preload heap section.
173 # If preload runs out of memory, increase the last argument to addsection
174 # (it is the preload heap size in MB).
176 temacs: stamp_BLD $(TEMACS)
177 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
178 ../nt/$(BLD)/addsection.exe
179 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
180 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
181 echo $(OBJ0) > $(BLD)/buildobj.lst
182 echo $(OBJ1) >> $(BLD)/buildobj.lst
183 echo $(WIN32OBJ) >> $(BLD)/buildobj.lst
184 echo $(FONTOBJ) >> $(BLD)/buildobj.lst
186 bootstrap: bootstrap-emacs
189 # Build a temacs with a sufficiently large PURESIZE to load the
190 # Lisp files from loadup.el in source form.
192 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
193 # this can break with GNU Make 3.81 and later if sh.exe is used.
195 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
198 # Dump an Emacs executable named bootstrap-emacs containing the
199 # files from loadup.el in source form.
201 bootstrap-emacs: bootstrap-temacs
202 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
204 $(CP) $(EMACS) ../bin
207 # Force recompile of files that depend on PURESIZE
210 - $(DEL) $(BLD)/alloc.$(O)
211 - $(DEL) $(BLD)/data.$(O)
212 - $(DEL) $(BLD)/intervals.$(O)
213 - $(DEL) $(BLD)/keyboard.$(O)
214 - $(DEL) $(BLD)/keymap.$(O)
217 # The resource file. NT 3.10 requires the use of cvtres; even though
218 # it is not necessary on later versions, it is still ok to use it.
220 $(TRES): ../nt/emacs.rc stamp_BLD
221 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
224 # Build the library. Split up the build into two phases...otherwise we
225 # run out of command line space.
229 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
232 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
233 $(TLIBW32): $(WIN32OBJ) $(FONTOBJ)
235 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
238 # Place lastfile.$(O) in its own library so that it can be loaded after
239 # the source libraries but before any system libraries. Doing so defines
240 # the end of Emacs' data section portably across compilers and systems.
242 $(TLASTLIB): $(BLD)/lastfile.$(O)
244 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
247 # Assuming INSTALL_DIR is defined, build and install emacs in it.
250 - mkdir "$(INSTALL_DIR)/bin"
251 $(CP) $(EMACS) $(INSTALL_DIR)/bin
256 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
257 # remove precious files if it happens to match their short 8+3 aliases.
259 - $(DEL) "s/*.h~" "m/*.h~"
260 - $(DEL) $(COMPILER_TEMP_FILES)
261 - $(DEL_TREE) $(OBJDIR)
265 - $(DEL) config.h epaths.h Makefile
267 maintainer-clean: distclean
272 - $(DEL_TREE) obj-spd
280 CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
281 $(EMACS_ROOT)/src/m/intel386.h \
282 $(EMACS_ROOT)/src/config.h \
283 $(EMACS_ROOT)/nt/inc/sys/stat.h
285 $(BLD)/alloc.$(O) : \
288 $(EMACS_ROOT)/nt/inc/unistd.h \
289 $(EMACS_ROOT)/nt/inc/sys/time.h \
291 $(SRC)/blockinput.h \
296 $(SRC)/dispextern.h \
309 $(BLD)/atimer.$(O) : \
312 $(EMACS_ROOT)/nt/inc/unistd.h \
313 $(EMACS_ROOT)/nt/inc/sys/time.h \
315 $(SRC)/blockinput.h \
319 $(BLD)/buffer.$(O) : \
322 $(EMACS_ROOT)/nt/inc/unistd.h \
323 $(EMACS_ROOT)/nt/inc/sys/param.h \
324 $(EMACS_ROOT)/nt/inc/sys/time.h \
326 $(SRC)/blockinput.h \
332 $(SRC)/dispextern.h \
338 $(SRC)/region-cache.h \
343 $(BLD)/bytecode.$(O) : \
348 $(SRC)/dispextern.h \
353 $(BLD)/callint.$(O) : \
356 $(EMACS_ROOT)/nt/inc/sys/time.h \
361 $(SRC)/dispextern.h \
368 $(BLD)/callproc.$(O) : \
371 $(EMACS_ROOT)/nt/inc/unistd.h \
372 $(EMACS_ROOT)/nt/inc/sys/file.h \
373 $(EMACS_ROOT)/nt/inc/sys/time.h \
375 $(SRC)/blockinput.h \
382 $(SRC)/dispextern.h \
393 $(BLD)/casefiddle.$(O) : \
394 $(SRC)/casefiddle.c \
403 $(BLD)/casetab.$(O) : \
409 $(BLD)/category.$(O) : \
427 $(BLD)/character.$(O) : \
436 $(BLD)/charset.$(O) : \
439 $(EMACS_ROOT)/nt/inc/unistd.h \
447 $(BLD)/chartab.$(O) : \
458 $(SRC)/dispextern.h \
467 $(EMACS_ROOT)/nt/inc/sys/time.h \
473 $(SRC)/dispextern.h \
481 $(BLD)/coding.$(O) : \
490 $(SRC)/dispextern.h \
496 $(BLD)/composite.$(O) : \
504 $(SRC)/dispextern.h \
515 $(EMACS_ROOT)/nt/inc/sys/time.h \
521 $(SRC)/dispextern.h \
531 $(BLD)/dired.$(O) : \
534 $(EMACS_ROOT)/nt/inc/grp.h \
535 $(EMACS_ROOT)/nt/inc/pwd.h \
536 $(EMACS_ROOT)/nt/inc/unistd.h \
537 $(EMACS_ROOT)/nt/inc/sys/dir.h \
538 $(EMACS_ROOT)/nt/inc/sys/time.h \
540 $(SRC)/blockinput.h \
551 $(BLD)/dispnew.$(O) : \
554 $(EMACS_ROOT)/nt/inc/unistd.h \
555 $(EMACS_ROOT)/nt/inc/sys/time.h \
557 $(SRC)/blockinput.h \
564 $(SRC)/dispextern.h \
583 $(EMACS_ROOT)/nt/inc/unistd.h \
584 $(EMACS_ROOT)/nt/inc/sys/file.h \
585 $(EMACS_ROOT)/nt/inc/sys/time.h \
594 $(BLD)/doprnt.$(O) : \
597 $(EMACS_ROOT)/nt/inc/unistd.h \
600 $(BLD)/editfns.$(O) : \
603 $(EMACS_ROOT)/nt/inc/pwd.h \
604 $(EMACS_ROOT)/nt/inc/unistd.h \
605 $(EMACS_ROOT)/nt/inc/sys/time.h \
607 $(SRC)/blockinput.h \
612 $(SRC)/dispextern.h \
619 $(BLD)/emacs.$(O) : \
622 $(EMACS_ROOT)/nt/inc/unistd.h \
623 $(EMACS_ROOT)/nt/inc/sys/file.h \
624 $(EMACS_ROOT)/nt/inc/sys/time.h \
626 $(SRC)/blockinput.h \
631 $(SRC)/dispextern.h \
649 $(EMACS_ROOT)/nt/inc/sys/time.h \
651 $(SRC)/blockinput.h \
655 $(SRC)/dispextern.h \
660 $(BLD)/fileio.$(O) : \
663 $(EMACS_ROOT)/nt/inc/pwd.h \
664 $(EMACS_ROOT)/nt/inc/unistd.h \
665 $(EMACS_ROOT)/nt/inc/sys/time.h \
667 $(SRC)/blockinput.h \
673 $(SRC)/dispextern.h \
680 $(BLD)/filelock.$(O) : \
683 $(EMACS_ROOT)/nt/inc/pwd.h \
684 $(EMACS_ROOT)/nt/inc/unistd.h \
685 $(EMACS_ROOT)/nt/inc/sys/file.h \
686 $(EMACS_ROOT)/nt/inc/sys/time.h \
693 $(BLD)/filemode.$(O) : \
697 $(BLD)/firstfile.$(O) : \
701 $(BLD)/floatfns.$(O) : \
709 $(EMACS_ROOT)/nt/inc/langinfo.h \
710 $(EMACS_ROOT)/nt/inc/nl_types.h \
711 $(EMACS_ROOT)/nt/inc/unistd.h \
712 $(EMACS_ROOT)/nt/inc/sys/time.h \
714 $(SRC)/blockinput.h \
720 $(SRC)/dispextern.h \
738 $(SRC)/dispextern.h \
746 $(BLD)/fontset.$(O) : \
749 $(EMACS_ROOT)/nt/inc/sys/time.h \
751 $(SRC)/blockinput.h \
758 $(SRC)/dispextern.h \
770 $(BLD)/frame.$(O) : \
773 $(EMACS_ROOT)/nt/inc/sys/time.h \
775 $(SRC)/blockinput.h \
782 $(SRC)/dispextern.h \
794 $(BLD)/fringe.$(O) : \
797 $(EMACS_ROOT)/nt/inc/sys/time.h \
799 $(SRC)/blockinput.h \
801 $(SRC)/dispextern.h \
808 $(BLD)/gmalloc.$(O) : \
811 $(EMACS_ROOT)/nt/inc/unistd.h \
814 $(BLD)/image.$(O) : \
817 $(EMACS_ROOT)/nt/inc/unistd.h \
818 $(EMACS_ROOT)/nt/inc/sys/time.h \
820 $(SRC)/blockinput.h \
825 $(SRC)/dispextern.h \
835 $(BLD)/indent.$(O) : \
838 $(EMACS_ROOT)/nt/inc/sys/time.h \
844 $(SRC)/dispextern.h \
850 $(SRC)/region-cache.h \
857 $(BLD)/insdel.$(O) : \
860 $(EMACS_ROOT)/nt/inc/sys/time.h \
862 $(SRC)/blockinput.h \
866 $(SRC)/dispextern.h \
868 $(SRC)/region-cache.h \
873 $(BLD)/intervals.$(O) : \
876 $(EMACS_ROOT)/nt/inc/sys/time.h \
880 $(SRC)/dispextern.h \
888 $(BLD)/keyboard.$(O) : \
891 $(EMACS_ROOT)/nt/inc/unistd.h \
892 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
893 $(EMACS_ROOT)/nt/inc/sys/time.h \
895 $(SRC)/blockinput.h \
901 $(SRC)/dispextern.h \
919 $(BLD)/keymap.$(O) : \
922 $(EMACS_ROOT)/nt/inc/sys/time.h \
924 $(SRC)/blockinput.h \
931 $(SRC)/dispextern.h \
942 $(BLD)/lastfile.$(O) : \
946 $(BLD)/lread.$(O) : \
949 $(EMACS_ROOT)/nt/inc/unistd.h \
950 $(EMACS_ROOT)/nt/inc/sys/file.h \
951 $(EMACS_ROOT)/nt/inc/sys/time.h \
953 $(SRC)/blockinput.h \
960 $(SRC)/dispextern.h \
969 $(BLD)/macros.$(O) : \
972 $(EMACS_ROOT)/nt/inc/sys/time.h \
977 $(SRC)/dispextern.h \
984 $(BLD)/marker.$(O) : \
998 $(EMACS_ROOT)/nt/inc/sys/time.h \
1000 $(SRC)/blockinput.h \
1002 $(SRC)/composite.h \
1003 $(SRC)/dispextern.h \
1009 $(SRC)/termhooks.h \
1013 $(BLD)/minibuf.$(O) : \
1016 $(EMACS_ROOT)/nt/inc/sys/time.h \
1018 $(SRC)/character.h \
1021 $(SRC)/composite.h \
1022 $(SRC)/dispextern.h \
1024 $(SRC)/intervals.h \
1029 $(SRC)/termhooks.h \
1036 $(EMACS_ROOT)/nt/inc/grp.h \
1037 $(EMACS_ROOT)/nt/inc/pwd.h \
1038 $(EMACS_ROOT)/nt/inc/unistd.h \
1039 $(EMACS_ROOT)/nt/inc/sys/file.h \
1040 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1041 $(EMACS_ROOT)/nt/inc/sys/time.h \
1043 $(SRC)/composite.h \
1044 $(SRC)/dispextern.h \
1052 $(BLD)/w32heap.$(O) : \
1057 $(BLD)/w32inevt.$(O) : \
1060 $(EMACS_ROOT)/nt/inc/sys/time.h \
1062 $(SRC)/blockinput.h \
1064 $(SRC)/composite.h \
1065 $(SRC)/dispextern.h \
1069 $(SRC)/termhooks.h \
1074 $(BLD)/w32proc.$(O) : \
1077 $(EMACS_ROOT)/nt/inc/langinfo.h \
1078 $(EMACS_ROOT)/nt/inc/nl_types.h \
1079 $(EMACS_ROOT)/nt/inc/unistd.h \
1080 $(EMACS_ROOT)/nt/inc/sys/file.h \
1081 $(EMACS_ROOT)/nt/inc/sys/time.h \
1082 $(SRC)/character.h \
1084 $(SRC)/composite.h \
1085 $(SRC)/dispextern.h \
1087 $(SRC)/syssignal.h \
1095 $(BLD)/w32console.$(O) : \
1096 $(SRC)/w32console.c \
1098 $(SRC)/character.h \
1100 $(SRC)/composite.h \
1101 $(SRC)/dispextern.h \
1105 $(SRC)/termhooks.h \
1109 $(BLD)/print.$(O) : \
1112 $(EMACS_ROOT)/nt/inc/unistd.h \
1113 $(EMACS_ROOT)/nt/inc/sys/time.h \
1115 $(SRC)/blockinput.h \
1118 $(SRC)/character.h \
1121 $(SRC)/composite.h \
1122 $(SRC)/dispextern.h \
1125 $(SRC)/intervals.h \
1130 $(SRC)/termhooks.h \
1134 $(BLD)/process.$(O) : \
1137 $(EMACS_ROOT)/nt/inc/netdb.h \
1138 $(EMACS_ROOT)/nt/inc/unistd.h \
1139 $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1140 $(EMACS_ROOT)/nt/inc/netinet/in.h \
1141 $(EMACS_ROOT)/nt/inc/sys/file.h \
1142 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1143 $(EMACS_ROOT)/nt/inc/sys/time.h \
1145 $(SRC)/blockinput.h \
1147 $(SRC)/character.h \
1150 $(SRC)/composite.h \
1151 $(SRC)/dispextern.h \
1155 $(SRC)/sysselect.h \
1156 $(SRC)/syssignal.h \
1160 $(SRC)/termhooks.h \
1166 $(BLD)/ralloc.$(O) : \
1169 $(EMACS_ROOT)/nt/inc/unistd.h \
1170 $(EMACS_ROOT)/nt/inc/sys/time.h \
1172 $(SRC)/blockinput.h \
1173 $(SRC)/getpagesize.h \
1176 $(BLD)/regex.$(O) : \
1181 $(SRC)/character.h \
1185 $(BLD)/region-cache.$(O) : \
1186 $(SRC)/region-cache.c \
1189 $(SRC)/region-cache.h
1191 $(BLD)/scroll.$(O) : \
1194 $(EMACS_ROOT)/nt/inc/sys/time.h \
1196 $(SRC)/composite.h \
1197 $(SRC)/dispextern.h \
1202 $(SRC)/termhooks.h \
1206 $(BLD)/search.$(O) : \
1209 $(EMACS_ROOT)/nt/inc/sys/time.h \
1211 $(SRC)/blockinput.h \
1214 $(SRC)/character.h \
1217 $(SRC)/composite.h \
1218 $(SRC)/dispextern.h \
1219 $(SRC)/intervals.h \
1221 $(SRC)/region-cache.h \
1226 $(BLD)/sound.$(O) : \
1229 $(EMACS_ROOT)/nt/inc/unistd.h \
1230 $(EMACS_ROOT)/nt/inc/sys/time.h \
1232 $(SRC)/dispextern.h \
1233 $(SRC)/syssignal.h \
1237 $(BLD)/strftime.$(O) : \
1240 $(EMACS_ROOT)/nt/inc/sys/time.h
1242 $(BLD)/syntax.$(O) : \
1247 $(SRC)/character.h \
1249 $(SRC)/composite.h \
1250 $(SRC)/dispextern.h \
1251 $(SRC)/intervals.h \
1257 $(BLD)/sysdep.$(O) : \
1260 $(EMACS_ROOT)/nt/inc/grp.h \
1261 $(EMACS_ROOT)/nt/inc/netdb.h \
1262 $(EMACS_ROOT)/nt/inc/pwd.h \
1263 $(EMACS_ROOT)/nt/inc/unistd.h \
1264 $(EMACS_ROOT)/nt/inc/sys/file.h \
1265 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1266 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1267 $(EMACS_ROOT)/nt/inc/sys/time.h \
1269 $(SRC)/blockinput.h \
1272 $(SRC)/composite.h \
1273 $(SRC)/dispextern.h \
1277 $(SRC)/syssignal.h \
1282 $(SRC)/termhooks.h \
1288 $(BLD)/term.$(O) : \
1291 $(EMACS_ROOT)/nt/inc/unistd.h \
1292 $(EMACS_ROOT)/nt/inc/sys/file.h \
1293 $(EMACS_ROOT)/nt/inc/sys/time.h \
1295 $(SRC)/blockinput.h \
1297 $(SRC)/character.h \
1301 $(SRC)/composite.h \
1302 $(SRC)/dispextern.h \
1305 $(SRC)/intervals.h \
1308 $(SRC)/syssignal.h \
1312 $(SRC)/termhooks.h \
1317 $(BLD)/termcap.$(O) : \
1320 $(EMACS_ROOT)/nt/inc/unistd.h \
1321 $(EMACS_ROOT)/nt/inc/sys/file.h
1323 $(BLD)/terminal.$(O) : \
1326 $(EMACS_ROOT)/nt/inc/sys/time.h \
1329 $(SRC)/composite.h \
1330 $(SRC)/dispextern.h \
1335 $(SRC)/termhooks.h \
1338 $(BLD)/textprop.$(O) : \
1342 $(SRC)/composite.h \
1343 $(SRC)/dispextern.h \
1344 $(SRC)/intervals.h \
1348 $(BLD)/tparam.$(O) : \
1352 $(BLD)/undo.$(O) : \
1357 $(SRC)/dispextern.h \
1361 $(BLD)/unexw32.$(O) : \
1366 $(BLD)/vm-limit.$(O) : \
1371 $(BLD)/window.$(O) : \
1374 $(EMACS_ROOT)/nt/inc/sys/time.h \
1376 $(SRC)/blockinput.h \
1380 $(SRC)/composite.h \
1381 $(SRC)/dispextern.h \
1385 $(SRC)/intervals.h \
1390 $(SRC)/termhooks.h \
1395 $(BLD)/xdisp.$(O) : \
1398 $(EMACS_ROOT)/nt/inc/unistd.h \
1399 $(EMACS_ROOT)/nt/inc/sys/time.h \
1401 $(SRC)/blockinput.h \
1404 $(SRC)/character.h \
1408 $(SRC)/composite.h \
1409 $(SRC)/dispextern.h \
1415 $(SRC)/intervals.h \
1420 $(SRC)/region-cache.h \
1423 $(SRC)/termhooks.h \
1428 $(BLD)/xfaces.$(O) : \
1431 $(EMACS_ROOT)/nt/inc/sys/time.h \
1433 $(SRC)/blockinput.h \
1436 $(SRC)/character.h \
1439 $(SRC)/composite.h \
1440 $(SRC)/dispextern.h \
1444 $(SRC)/intervals.h \
1448 $(SRC)/termhooks.h \
1453 $(BLD)/w32fns.$(O) : \
1456 $(EMACS_ROOT)/nt/inc/sys/time.h \
1458 $(SRC)/blockinput.h \
1461 $(SRC)/character.h \
1464 $(SRC)/composite.h \
1465 $(SRC)/dispextern.h \
1470 $(SRC)/intervals.h \
1473 $(SRC)/termhooks.h \
1480 $(BLD)/w32menu.$(O) : \
1483 $(EMACS_ROOT)/nt/inc/sys/time.h \
1485 $(SRC)/blockinput.h \
1487 $(SRC)/character.h \
1490 $(SRC)/composite.h \
1491 $(SRC)/dispextern.h \
1496 $(SRC)/termhooks.h \
1501 $(BLD)/w32term.$(O) : \
1504 $(EMACS_ROOT)/nt/inc/unistd.h \
1505 $(EMACS_ROOT)/nt/inc/sys/time.h \
1507 $(SRC)/blockinput.h \
1510 $(SRC)/character.h \
1513 $(SRC)/composite.h \
1514 $(SRC)/dispextern.h \
1519 $(SRC)/intervals.h \
1526 $(SRC)/termhooks.h \
1534 $(BLD)/w32select.$(O) : \
1535 $(SRC)/w32select.c \
1537 $(EMACS_ROOT)/nt/inc/sys/time.h \
1539 $(SRC)/blockinput.h \
1540 $(SRC)/character.h \
1543 $(SRC)/composite.h \
1550 $(BLD)/w32reg.$(O) : \
1553 $(EMACS_ROOT)/nt/inc/sys/time.h \
1555 $(SRC)/blockinput.h \
1560 $(BLD)/w32xfns.$(O) : \
1563 $(EMACS_ROOT)/nt/inc/sys/time.h \
1565 $(SRC)/blockinput.h \
1568 $(SRC)/composite.h \
1569 $(SRC)/dispextern.h \
1577 $(BLD)/w32font.$(O) : \
1581 $(SRC)/character.h \
1584 $(SRC)/composite.h \
1585 $(SRC)/dispextern.h \
1593 $(BLD)/w32uniscribe.$(O) : \
1594 $(SRC)/w32uniscribe.c \
1597 $(SRC)/character.h \
1599 $(SRC)/composite.h \
1600 $(SRC)/dispextern.h \
1608 # Each object file depends on stamp_BLD, because in parallel builds we must
1609 # make sure $(BLD) exists before starting compilations.
1611 $(OBJ0) $(OBJ1) $(WIN32OBJ) $(FONTOBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD