1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 # 2008, 2009, 2010 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)
35 EMACS = $(BLD)/emacs.exe
36 TEMACS = $(BLD)/temacs.exe
37 TEMACS_TMP = $(BLD)/temacs.bin
38 TLIB0 = $(BLD)/temacs0.$(A)
39 TLIB1 = $(BLD)/temacs1.$(A)
40 TLIBW32 = $(BLD)/temacw32.$(A)
41 TOBJ = $(BLD)/firstfile.$(O)
42 TRES = $(BLD)/emacs.res
43 TLASTLIB = $(BLD)/lastfile.$(A)
45 DOC = $(OBJDIR)/etc/DOC-X
47 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
50 # Split up the objects into two sets so that we don't run out of
51 # command line space when we link them into a library.
53 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
54 # as the "main" object file when linking.
56 OBJ0 = $(BLD)/emacs.$(O)
58 OBJ1 = $(BLD)/alloc.$(O) \
61 $(BLD)/bytecode.$(O) \
63 $(BLD)/callproc.$(O) \
64 $(BLD)/casefiddle.$(O) \
75 $(BLD)/filelock.$(O) \
76 $(BLD)/filemode.$(O) \
80 $(BLD)/keyboard.$(O) \
89 $(BLD)/w32inevt.$(O) \
91 $(BLD)/w32console.$(O) \
101 $(BLD)/termcap.$(O) \
104 $(BLD)/unexw32.$(O) \
107 $(BLD)/casetab.$(O) \
108 $(BLD)/floatfns.$(O) \
110 $(BLD)/gmalloc.$(O) \
111 $(BLD)/intervals.$(O) \
112 $(BLD)/composite.$(O) \
114 $(BLD)/textprop.$(O) \
115 $(BLD)/vm-limit.$(O) \
116 $(BLD)/region-cache.$(O) \
117 $(BLD)/strftime.$(O) \
118 $(BLD)/charset.$(O) \
119 $(BLD)/character.$(O) \
120 $(BLD)/chartab.$(O) \
122 $(BLD)/category.$(O) \
125 $(BLD)/fontset.$(O) \
128 $(BLD)/terminal.$(O) \
131 WIN32OBJ = $(BLD)/w32term.$(O) \
132 $(BLD)/w32xfns.$(O) \
135 $(BLD)/w32select.$(O) \
136 $(BLD)/w32menu.$(O) \
139 FONTOBJ = $(BLD)/w32font.$(O) $(BLD)/w32uniscribe.$(O)
159 # Build the executable and dump it.
164 # The dumped executable
166 emacs: stamp_BLD $(EMACS)
167 $(EMACS): $(DOC) $(TEMACS)
168 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
169 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
172 # The undumped executable
173 # Note the extra post-link step to insert a static preload heap section.
174 # If preload runs out of memory, increase the last argument to addsection
175 # (it is the preload heap size in MB).
177 temacs: stamp_BLD $(TEMACS)
178 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
179 ../nt/$(BLD)/addsection.exe
180 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
181 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
183 # These omit firstfile.${O}, but there's no documentation in there
185 buildobj.h: $(SRC)/makefile.w32-in
186 $(MAKE) $(MFLAGS) make-buildobj-$(SHELLTYPE)
188 # Cannot have blanks between the backslash and the redirection
189 # characters, because CMD's `echo' will put them in buildobj.h.
191 echo #define BUILDOBJ ^"\> buildobj.h
192 echo $(OBJ0) \>> buildobj.h
193 echo $(OBJ1) \>> buildobj.h
194 echo $(WIN32OBJ) \>> buildobj.h
195 echo $(FONTOBJ) \>> buildobj.h
199 echo '#define BUILDOBJ $(DQUOTE)\' > buildobj.h
200 echo $(OBJ0) '\' >> buildobj.h
201 echo $(OBJ1) '\' >> buildobj.h
202 echo $(WIN32OBJ) '\' >> buildobj.h
203 echo $(FONTOBJ) '\' >> buildobj.h
204 echo '$(DQUOTE)' >> buildobj.h
206 bootstrap: bootstrap-emacs
209 # Build a temacs with a sufficiently large PURESIZE to load the
210 # Lisp files from loadup.el in source form.
212 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
213 # this can break with GNU Make 3.81 and later if sh.exe is used.
215 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
218 # Dump an Emacs executable named bootstrap-emacs containing the
219 # files from loadup.el in source form.
221 bootstrap-emacs: bootstrap-temacs
222 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
224 $(CP) $(EMACS) ../bin
227 # Force recompile of files that depend on PURESIZE
230 - $(DEL) $(BLD)/alloc.$(O)
231 - $(DEL) $(BLD)/data.$(O)
232 - $(DEL) $(BLD)/intervals.$(O)
233 - $(DEL) $(BLD)/keyboard.$(O)
234 - $(DEL) $(BLD)/keymap.$(O)
237 # The resource file. NT 3.10 requires the use of cvtres; even though
238 # it is not necessary on later versions, it is still ok to use it.
240 $(TRES): ../nt/emacs.rc stamp_BLD
241 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
244 # Build the library. Split up the build into two phases...otherwise we
245 # run out of command line space.
249 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
252 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
253 $(TLIBW32): $(WIN32OBJ) $(FONTOBJ)
255 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
258 # Place lastfile.$(O) in its own library so that it can be loaded after
259 # the source libraries but before any system libraries. Doing so defines
260 # the end of Emacs' data section portably across compilers and systems.
262 $(TLASTLIB): $(BLD)/lastfile.$(O)
264 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
267 # Assuming INSTALL_DIR is defined, build and install emacs in it.
270 - mkdir "$(INSTALL_DIR)/bin"
271 $(CP) $(EMACS) $(INSTALL_DIR)/bin
276 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
277 # remove precious files if it happens to match their short 8+3 aliases.
279 - $(DEL) "s/*.h~" "m/*.h~"
280 - $(DEL) $(COMPILER_TEMP_FILES)
281 - $(DEL_TREE) $(OBJDIR)
286 - $(DEL) config.h epaths.h Makefile
288 maintainer-clean: distclean
293 - $(DEL_TREE) obj-spd
300 CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
301 $(EMACS_ROOT)/src/m/intel386.h \
302 $(EMACS_ROOT)/src/config.h \
303 $(EMACS_ROOT)/nt/inc/sys/stat.h
305 $(BLD)/alloc.$(O) : \
308 $(EMACS_ROOT)/nt/inc/unistd.h \
309 $(EMACS_ROOT)/nt/inc/sys/time.h \
312 $(SRC)/blockinput.h \
317 $(SRC)/dispextern.h \
330 $(BLD)/atimer.$(O) : \
333 $(EMACS_ROOT)/nt/inc/unistd.h \
334 $(EMACS_ROOT)/nt/inc/sys/time.h \
337 $(SRC)/blockinput.h \
341 $(BLD)/buffer.$(O) : \
344 $(EMACS_ROOT)/nt/inc/unistd.h \
345 $(EMACS_ROOT)/nt/inc/sys/param.h \
346 $(EMACS_ROOT)/nt/inc/sys/time.h \
349 $(SRC)/blockinput.h \
355 $(SRC)/dispextern.h \
361 $(SRC)/region-cache.h \
366 $(BLD)/bytecode.$(O) : \
372 $(SRC)/dispextern.h \
377 $(BLD)/callint.$(O) : \
380 $(EMACS_ROOT)/nt/inc/sys/time.h \
386 $(SRC)/dispextern.h \
393 $(BLD)/callproc.$(O) : \
396 $(EMACS_ROOT)/nt/inc/unistd.h \
397 $(EMACS_ROOT)/nt/inc/sys/file.h \
398 $(EMACS_ROOT)/nt/inc/sys/time.h \
401 $(SRC)/blockinput.h \
408 $(SRC)/dispextern.h \
419 $(BLD)/casefiddle.$(O) : \
420 $(SRC)/casefiddle.c \
430 $(BLD)/casetab.$(O) : \
437 $(BLD)/category.$(O) : \
457 $(BLD)/character.$(O) : \
467 $(BLD)/charset.$(O) : \
470 $(EMACS_ROOT)/nt/inc/unistd.h \
479 $(BLD)/chartab.$(O) : \
492 $(SRC)/dispextern.h \
501 $(EMACS_ROOT)/nt/inc/sys/time.h \
508 $(SRC)/dispextern.h \
517 $(BLD)/coding.$(O) : \
527 $(SRC)/dispextern.h \
533 $(BLD)/composite.$(O) : \
542 $(SRC)/dispextern.h \
553 $(EMACS_ROOT)/nt/inc/sys/time.h \
560 $(SRC)/dispextern.h \
570 $(BLD)/dired.$(O) : \
573 $(EMACS_ROOT)/nt/inc/grp.h \
574 $(EMACS_ROOT)/nt/inc/pwd.h \
575 $(EMACS_ROOT)/nt/inc/unistd.h \
576 $(EMACS_ROOT)/nt/inc/sys/dir.h \
577 $(EMACS_ROOT)/nt/inc/sys/time.h \
580 $(SRC)/blockinput.h \
591 $(BLD)/dispnew.$(O) : \
594 $(EMACS_ROOT)/nt/inc/unistd.h \
595 $(EMACS_ROOT)/nt/inc/sys/time.h \
598 $(SRC)/blockinput.h \
605 $(SRC)/dispextern.h \
625 $(EMACS_ROOT)/nt/inc/unistd.h \
626 $(EMACS_ROOT)/nt/inc/sys/file.h \
627 $(EMACS_ROOT)/nt/inc/sys/time.h \
637 $(BLD)/doprnt.$(O) : \
640 $(EMACS_ROOT)/nt/inc/unistd.h \
644 $(BLD)/editfns.$(O) : \
647 $(EMACS_ROOT)/nt/inc/pwd.h \
648 $(EMACS_ROOT)/nt/inc/unistd.h \
649 $(EMACS_ROOT)/nt/inc/sys/time.h \
652 $(SRC)/blockinput.h \
657 $(SRC)/dispextern.h \
664 $(BLD)/emacs.$(O) : \
667 $(EMACS_ROOT)/nt/inc/unistd.h \
668 $(EMACS_ROOT)/nt/inc/sys/file.h \
669 $(EMACS_ROOT)/nt/inc/sys/time.h \
672 $(SRC)/blockinput.h \
677 $(SRC)/dispextern.h \
695 $(EMACS_ROOT)/nt/inc/sys/time.h \
698 $(SRC)/blockinput.h \
702 $(SRC)/dispextern.h \
707 $(BLD)/fileio.$(O) : \
710 $(EMACS_ROOT)/nt/inc/pwd.h \
711 $(EMACS_ROOT)/nt/inc/unistd.h \
712 $(EMACS_ROOT)/nt/inc/sys/time.h \
715 $(SRC)/blockinput.h \
721 $(SRC)/dispextern.h \
728 $(BLD)/filelock.$(O) : \
731 $(EMACS_ROOT)/nt/inc/pwd.h \
732 $(EMACS_ROOT)/nt/inc/unistd.h \
733 $(EMACS_ROOT)/nt/inc/sys/file.h \
734 $(EMACS_ROOT)/nt/inc/sys/time.h \
742 $(BLD)/filemode.$(O) : \
746 $(BLD)/firstfile.$(O) : \
750 $(BLD)/floatfns.$(O) : \
759 $(EMACS_ROOT)/nt/inc/langinfo.h \
760 $(EMACS_ROOT)/nt/inc/nl_types.h \
761 $(EMACS_ROOT)/nt/inc/unistd.h \
762 $(EMACS_ROOT)/nt/inc/sys/time.h \
765 $(SRC)/blockinput.h \
771 $(SRC)/dispextern.h \
790 $(SRC)/dispextern.h \
798 $(BLD)/fontset.$(O) : \
801 $(EMACS_ROOT)/nt/inc/sys/time.h \
804 $(SRC)/blockinput.h \
811 $(SRC)/dispextern.h \
823 $(BLD)/frame.$(O) : \
826 $(EMACS_ROOT)/nt/inc/sys/time.h \
829 $(SRC)/blockinput.h \
836 $(SRC)/dispextern.h \
848 $(BLD)/fringe.$(O) : \
851 $(EMACS_ROOT)/nt/inc/sys/time.h \
854 $(SRC)/blockinput.h \
856 $(SRC)/dispextern.h \
863 $(BLD)/gmalloc.$(O) : \
866 $(EMACS_ROOT)/nt/inc/unistd.h \
869 $(BLD)/image.$(O) : \
872 $(EMACS_ROOT)/nt/inc/unistd.h \
873 $(EMACS_ROOT)/nt/inc/sys/time.h \
876 $(SRC)/blockinput.h \
881 $(SRC)/dispextern.h \
891 $(BLD)/indent.$(O) : \
894 $(EMACS_ROOT)/nt/inc/sys/time.h \
901 $(SRC)/dispextern.h \
907 $(SRC)/region-cache.h \
914 $(BLD)/insdel.$(O) : \
917 $(EMACS_ROOT)/nt/inc/sys/time.h \
920 $(SRC)/blockinput.h \
924 $(SRC)/dispextern.h \
926 $(SRC)/region-cache.h \
931 $(BLD)/intervals.$(O) : \
934 $(EMACS_ROOT)/nt/inc/sys/time.h \
939 $(SRC)/dispextern.h \
947 $(BLD)/keyboard.$(O) : \
950 $(EMACS_ROOT)/nt/inc/unistd.h \
951 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
952 $(EMACS_ROOT)/nt/inc/sys/time.h \
955 $(SRC)/blockinput.h \
961 $(SRC)/dispextern.h \
979 $(BLD)/keymap.$(O) : \
982 $(EMACS_ROOT)/nt/inc/sys/time.h \
985 $(SRC)/blockinput.h \
992 $(SRC)/dispextern.h \
1003 $(BLD)/lastfile.$(O) : \
1007 $(BLD)/lread.$(O) : \
1010 $(EMACS_ROOT)/nt/inc/unistd.h \
1011 $(EMACS_ROOT)/nt/inc/sys/file.h \
1012 $(EMACS_ROOT)/nt/inc/sys/time.h \
1015 $(SRC)/blockinput.h \
1017 $(SRC)/character.h \
1021 $(SRC)/composite.h \
1022 $(SRC)/dispextern.h \
1025 $(SRC)/intervals.h \
1028 $(SRC)/termhooks.h \
1031 $(BLD)/macros.$(O) : \
1034 $(EMACS_ROOT)/nt/inc/sys/time.h \
1039 $(SRC)/composite.h \
1040 $(SRC)/dispextern.h \
1047 $(BLD)/marker.$(O) : \
1059 $(BLD)/menu.$(O) : \
1062 $(EMACS_ROOT)/nt/inc/sys/time.h \
1065 $(SRC)/blockinput.h \
1067 $(SRC)/composite.h \
1068 $(SRC)/dispextern.h \
1074 $(SRC)/termhooks.h \
1079 $(BLD)/minibuf.$(O) : \
1082 $(EMACS_ROOT)/nt/inc/sys/time.h \
1085 $(SRC)/character.h \
1088 $(SRC)/composite.h \
1089 $(SRC)/dispextern.h \
1091 $(SRC)/intervals.h \
1096 $(SRC)/termhooks.h \
1103 $(EMACS_ROOT)/nt/inc/grp.h \
1104 $(EMACS_ROOT)/nt/inc/pwd.h \
1105 $(EMACS_ROOT)/nt/inc/unistd.h \
1106 $(EMACS_ROOT)/nt/inc/sys/file.h \
1107 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1108 $(EMACS_ROOT)/nt/inc/sys/time.h \
1111 $(SRC)/composite.h \
1112 $(SRC)/dispextern.h \
1120 $(BLD)/w32heap.$(O) : \
1126 $(BLD)/w32inevt.$(O) : \
1129 $(EMACS_ROOT)/nt/inc/sys/time.h \
1132 $(SRC)/blockinput.h \
1134 $(SRC)/composite.h \
1135 $(SRC)/dispextern.h \
1139 $(SRC)/termhooks.h \
1144 $(BLD)/w32proc.$(O) : \
1147 $(EMACS_ROOT)/nt/inc/langinfo.h \
1148 $(EMACS_ROOT)/nt/inc/nl_types.h \
1149 $(EMACS_ROOT)/nt/inc/unistd.h \
1150 $(EMACS_ROOT)/nt/inc/sys/file.h \
1151 $(EMACS_ROOT)/nt/inc/sys/time.h \
1153 $(SRC)/character.h \
1155 $(SRC)/composite.h \
1156 $(SRC)/dispextern.h \
1158 $(SRC)/syssignal.h \
1166 $(BLD)/w32console.$(O) : \
1167 $(SRC)/w32console.c \
1170 $(SRC)/character.h \
1172 $(SRC)/composite.h \
1173 $(SRC)/dispextern.h \
1177 $(SRC)/termhooks.h \
1181 $(BLD)/print.$(O) : \
1184 $(EMACS_ROOT)/nt/inc/unistd.h \
1185 $(EMACS_ROOT)/nt/inc/sys/time.h \
1188 $(SRC)/blockinput.h \
1191 $(SRC)/character.h \
1194 $(SRC)/composite.h \
1195 $(SRC)/dispextern.h \
1198 $(SRC)/intervals.h \
1203 $(SRC)/termhooks.h \
1207 $(BLD)/process.$(O) : \
1210 $(EMACS_ROOT)/nt/inc/netdb.h \
1211 $(EMACS_ROOT)/nt/inc/unistd.h \
1212 $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1213 $(EMACS_ROOT)/nt/inc/netinet/in.h \
1214 $(EMACS_ROOT)/nt/inc/sys/file.h \
1215 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1216 $(EMACS_ROOT)/nt/inc/sys/time.h \
1219 $(SRC)/blockinput.h \
1221 $(SRC)/character.h \
1224 $(SRC)/composite.h \
1225 $(SRC)/dispextern.h \
1229 $(SRC)/sysselect.h \
1230 $(SRC)/syssignal.h \
1234 $(SRC)/termhooks.h \
1240 $(BLD)/ralloc.$(O) : \
1243 $(EMACS_ROOT)/nt/inc/unistd.h \
1244 $(EMACS_ROOT)/nt/inc/sys/time.h \
1247 $(SRC)/blockinput.h \
1248 $(SRC)/getpagesize.h \
1251 $(BLD)/regex.$(O) : \
1257 $(SRC)/character.h \
1261 $(BLD)/region-cache.$(O) : \
1262 $(SRC)/region-cache.c \
1266 $(SRC)/region-cache.h
1268 $(BLD)/scroll.$(O) : \
1271 $(EMACS_ROOT)/nt/inc/sys/time.h \
1274 $(SRC)/composite.h \
1275 $(SRC)/dispextern.h \
1280 $(SRC)/termhooks.h \
1284 $(BLD)/search.$(O) : \
1287 $(EMACS_ROOT)/nt/inc/sys/time.h \
1290 $(SRC)/blockinput.h \
1293 $(SRC)/character.h \
1296 $(SRC)/composite.h \
1297 $(SRC)/dispextern.h \
1298 $(SRC)/intervals.h \
1300 $(SRC)/region-cache.h \
1305 $(BLD)/sound.$(O) : \
1308 $(EMACS_ROOT)/nt/inc/unistd.h \
1309 $(EMACS_ROOT)/nt/inc/sys/time.h \
1312 $(SRC)/dispextern.h \
1313 $(SRC)/syssignal.h \
1317 $(BLD)/strftime.$(O) : \
1320 $(EMACS_ROOT)/nt/inc/sys/time.h
1322 $(BLD)/syntax.$(O) : \
1328 $(SRC)/character.h \
1330 $(SRC)/composite.h \
1331 $(SRC)/dispextern.h \
1332 $(SRC)/intervals.h \
1338 $(BLD)/sysdep.$(O) : \
1341 $(EMACS_ROOT)/nt/inc/grp.h \
1342 $(EMACS_ROOT)/nt/inc/netdb.h \
1343 $(EMACS_ROOT)/nt/inc/pwd.h \
1344 $(EMACS_ROOT)/nt/inc/unistd.h \
1345 $(EMACS_ROOT)/nt/inc/sys/file.h \
1346 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1347 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1348 $(EMACS_ROOT)/nt/inc/sys/time.h \
1351 $(SRC)/blockinput.h \
1354 $(SRC)/composite.h \
1355 $(SRC)/dispextern.h \
1359 $(SRC)/syssignal.h \
1364 $(SRC)/termhooks.h \
1370 $(BLD)/term.$(O) : \
1373 $(EMACS_ROOT)/nt/inc/unistd.h \
1374 $(EMACS_ROOT)/nt/inc/sys/file.h \
1375 $(EMACS_ROOT)/nt/inc/sys/time.h \
1378 $(SRC)/blockinput.h \
1380 $(SRC)/character.h \
1384 $(SRC)/composite.h \
1385 $(SRC)/dispextern.h \
1388 $(SRC)/intervals.h \
1391 $(SRC)/syssignal.h \
1395 $(SRC)/termhooks.h \
1400 $(BLD)/termcap.$(O) : \
1403 $(EMACS_ROOT)/nt/inc/unistd.h \
1404 $(EMACS_ROOT)/nt/inc/sys/file.h \
1407 $(BLD)/terminal.$(O) : \
1410 $(EMACS_ROOT)/nt/inc/sys/time.h \
1414 $(SRC)/composite.h \
1415 $(SRC)/dispextern.h \
1420 $(SRC)/termhooks.h \
1423 $(BLD)/textprop.$(O) : \
1428 $(SRC)/composite.h \
1429 $(SRC)/dispextern.h \
1430 $(SRC)/intervals.h \
1434 $(BLD)/tparam.$(O) : \
1439 $(BLD)/undo.$(O) : \
1445 $(SRC)/dispextern.h \
1449 $(BLD)/unexw32.$(O) : \
1454 $(BLD)/vm-limit.$(O) : \
1460 $(BLD)/window.$(O) : \
1463 $(EMACS_ROOT)/nt/inc/sys/time.h \
1466 $(SRC)/blockinput.h \
1470 $(SRC)/composite.h \
1471 $(SRC)/dispextern.h \
1475 $(SRC)/intervals.h \
1480 $(SRC)/termhooks.h \
1485 $(BLD)/xdisp.$(O) : \
1488 $(EMACS_ROOT)/nt/inc/unistd.h \
1489 $(EMACS_ROOT)/nt/inc/sys/time.h \
1492 $(SRC)/blockinput.h \
1495 $(SRC)/character.h \
1499 $(SRC)/composite.h \
1500 $(SRC)/dispextern.h \
1506 $(SRC)/intervals.h \
1511 $(SRC)/region-cache.h \
1514 $(SRC)/termhooks.h \
1519 $(BLD)/xfaces.$(O) : \
1522 $(EMACS_ROOT)/nt/inc/sys/time.h \
1525 $(SRC)/blockinput.h \
1528 $(SRC)/character.h \
1531 $(SRC)/composite.h \
1532 $(SRC)/dispextern.h \
1536 $(SRC)/intervals.h \
1540 $(SRC)/termhooks.h \
1545 $(BLD)/w32fns.$(O) : \
1548 $(EMACS_ROOT)/nt/inc/sys/time.h \
1551 $(SRC)/blockinput.h \
1554 $(SRC)/character.h \
1557 $(SRC)/composite.h \
1558 $(SRC)/dispextern.h \
1563 $(SRC)/intervals.h \
1566 $(SRC)/termhooks.h \
1574 $(BLD)/w32menu.$(O) : \
1577 $(EMACS_ROOT)/nt/inc/sys/time.h \
1580 $(SRC)/blockinput.h \
1582 $(SRC)/character.h \
1585 $(SRC)/composite.h \
1586 $(SRC)/dispextern.h \
1592 $(SRC)/termhooks.h \
1597 $(BLD)/w32term.$(O) : \
1600 $(EMACS_ROOT)/nt/inc/unistd.h \
1601 $(EMACS_ROOT)/nt/inc/sys/time.h \
1604 $(SRC)/blockinput.h \
1607 $(SRC)/character.h \
1610 $(SRC)/composite.h \
1611 $(SRC)/dispextern.h \
1616 $(SRC)/intervals.h \
1623 $(SRC)/termhooks.h \
1631 $(BLD)/w32select.$(O) : \
1632 $(SRC)/w32select.c \
1634 $(EMACS_ROOT)/nt/inc/sys/time.h \
1637 $(SRC)/blockinput.h \
1638 $(SRC)/character.h \
1641 $(SRC)/composite.h \
1648 $(BLD)/w32reg.$(O) : \
1651 $(EMACS_ROOT)/nt/inc/sys/time.h \
1654 $(SRC)/blockinput.h \
1659 $(BLD)/w32xfns.$(O) : \
1662 $(EMACS_ROOT)/nt/inc/sys/time.h \
1665 $(SRC)/blockinput.h \
1668 $(SRC)/composite.h \
1669 $(SRC)/dispextern.h \
1677 $(BLD)/w32font.$(O) : \
1682 $(SRC)/character.h \
1685 $(SRC)/composite.h \
1686 $(SRC)/dispextern.h \
1694 $(BLD)/w32uniscribe.$(O) : \
1695 $(SRC)/w32uniscribe.c \
1699 $(SRC)/character.h \
1701 $(SRC)/composite.h \
1702 $(SRC)/dispextern.h \
1710 # Each object file depends on stamp_BLD, because in parallel builds we must
1711 # make sure $(BLD) exists before starting compilations.
1713 $(OBJ0) $(OBJ1) $(WIN32OBJ) $(FONTOBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD