1 # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
2 # Copyright (C) 2000-2013 Free Software Foundation, Inc.
4 # This file is part of GNU Emacs.
6 # GNU Emacs is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 # Set EMACSLOADPATH correctly (in case already defined in environment).
25 EMACSLOADPATH=$(CURDIR)/../lisp
27 # Size in MBs of the static heap in temacs.exe.
28 HEAPSIZE = $(EMACS_HEAPSIZE)
30 LOCAL_FLAGS = -Demacs=1 -I../lib -I../nt/inc $(EMACS_EXTRA_C_FLAGS)
33 EMACS = $(BLD)/emacs.exe
34 TEMACS = $(BLD)/temacs.exe
35 TEMACS_TMP = $(BLD)/temacs.bin
36 TLIB0 = $(BLD)/temacs0.$(A)
37 TLIB1 = $(BLD)/temacs1.$(A)
38 TLIB2 = $(BLD)/temacs2.$(A)
39 TOBJ = $(BLD)/firstfile.$(O)
40 TRES = $(BLD)/emacs.res
41 TLASTLIB = $(BLD)/lastfile.$(A)
42 GNULIB = ../lib/$(BLD)/libgnu.$(A)
44 DOC = $(OBJDIR)/etc/DOC
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) \
73 $(BLD)/filelock.$(O) \
77 $(BLD)/keyboard.$(O) \
85 $(BLD)/w32inevt.$(O) \
87 $(BLD)/w32console.$(O) \
96 OBJ2 = $(BLD)/sysdep.$(O) \
100 $(BLD)/unexw32.$(O) \
103 $(BLD)/casetab.$(O) \
104 $(BLD)/floatfns.$(O) \
106 $(BLD)/gmalloc.$(O) \
108 $(BLD)/intervals.$(O) \
109 $(BLD)/composite.$(O) \
111 $(BLD)/textprop.$(O) \
112 $(BLD)/vm-limit.$(O) \
113 $(BLD)/region-cache.$(O) \
115 $(BLD)/charset.$(O) \
116 $(BLD)/character.$(O) \
117 $(BLD)/chartab.$(O) \
119 $(BLD)/category.$(O) \
122 $(BLD)/fontset.$(O) \
125 $(BLD)/terminal.$(O) \
128 $(BLD)/profiler.$(O) \
129 $(BLD)/w32term.$(O) \
130 $(BLD)/w32xfns.$(O) \
133 $(BLD)/w32select.$(O) \
134 $(BLD)/w32menu.$(O) \
136 $(BLD)/w32font.$(O) \
137 $(BLD)/w32notify.$(O) \
138 $(BLD)/w32uniscribe.$(O)
160 # Build the executable and dump it.
165 # The dumped executable
167 emacs: stamp_BLD $(EMACS)
168 $(EMACS): $(DOC) $(TEMACS)
169 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
170 -"$(THISDIR)/$(BLD)/emacs.exe" -batch -f list-load-path-shadows
173 # The undumped executable
174 # Note the extra post-link step to insert a static preload heap section.
175 # If preload runs out of memory, increase the last argument to addsection
176 # (it is the preload heap size in MB).
178 temacs: stamp_BLD $(TEMACS)
179 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLASTLIB) $(TOBJ) $(TRES) \
180 ../nt/$(BLD)/addsection.exe $(GNULIB)
181 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
182 "$(THISDIR)/../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP $(HEAPSIZE)
184 # These omit firstfile.${O}, but there's no documentation in there
186 buildobj.h: $(SRC)/makefile.w32-in
187 $(MAKE) $(MFLAGS) make-buildobj-$(SHELLTYPE)
189 # Cannot have blanks between the backslash and the redirection
190 # characters, because CMD's `echo' will put them in buildobj.h.
192 echo #define BUILDOBJ ^"\> buildobj.h
193 echo $(OBJ0) \>> buildobj.h
194 echo $(OBJ1) \>> buildobj.h
195 echo $(OBJ2) \>> buildobj.h
199 # The above line is here to countermand the single quote
200 # on the last "echo" command above, wrt font-lock.
202 echo '#define BUILDOBJ $(DQUOTE)\' > buildobj.h
203 echo $(OBJ0) '\' >> buildobj.h
204 echo $(OBJ1) '\' >> buildobj.h
205 echo $(OBJ2) '\' >> buildobj.h
206 echo '$(DQUOTE)' >> buildobj.h
208 GLOBAL_SOURCES = dosfns.c msdos.c \
209 xterm.c xfns.c xmenu.c xselect.c xrdb.c xsmfns.c fringe.c image.c \
210 fontset.c menu.c dbusbind.c \
211 w32.c w32console.c w32fns.c w32heap.c w32inevt.c cygw32.c \
212 w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \
213 font.c w32font.c w32uniscribe.c w32notify.c \
214 dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \
215 charset.c coding.c category.c ccl.c character.c chartab.c \
216 cm.c term.c terminal.c xfaces.c \
217 emacs.c keyboard.c macros.c keymap.c sysdep.c \
218 buffer.c filelock.c insdel.c marker.c \
219 minibuf.c fileio.c dired.c \
220 cmds.c casetab.c casefiddle.c indent.c search.c regex.c undo.c \
221 alloc.c data.c doc.c editfns.c callint.c \
222 eval.c floatfns.c fns.c print.c lread.c \
223 syntax.c bytecode.c \
224 process.c callproc.c unexw32.c \
225 region-cache.c sound.c atimer.c \
226 doprnt.c intervals.c textprop.c composite.c \
227 gnutls.c xml.c profiler.c
228 SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
229 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o dbusbind.o
230 obj = $(GLOBAL_SOURCES:.c=.o)
233 @cmd $(SWITCHCHAR)c rem true
235 gl-stamp: ../lib-src/$(BLD)/make-docfile.exe $(GLOBAL_SOURCES)
237 "$(THISDIR)/../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp
238 fc.exe $(SWITCHCHAR)b gl-tmp globals.h >nul 2>&1 || $(CP) gl-tmp globals.h
242 bootstrap: bootstrap-emacs
245 # Build a temacs with a sufficiently large PURESIZE to load the
246 # Lisp files from loadup.el in source form.
248 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
249 # this can break with GNU Make 3.81 and later if sh.exe is used.
250 bootstrap-temacs-CMD:
251 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(ESC_CFLAGS) -DPURESIZE=$(EMACS_PURESIZE)$(ARGQUOTE)
254 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=$(EMACS_PURESIZE)$(ARGQUOTE)
257 $(MAKE) $(MFLAGS) bootstrap-temacs-$(SHELLTYPE)
260 # Dump an Emacs executable named bootstrap-emacs containing the
261 # files from loadup.el in source form.
263 bootstrap-emacs: bootstrap-temacs
264 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
266 $(CP) $(EMACS) ../bin
269 # Force recompile of files that depend on PURESIZE
272 - $(DEL) $(BLD)/alloc.$(O)
273 - $(DEL) $(BLD)/data.$(O)
274 - $(DEL) $(BLD)/intervals.$(O)
275 - $(DEL) $(BLD)/keyboard.$(O)
276 - $(DEL) $(BLD)/keymap.$(O)
279 # The resource file. NT 3.10 requires the use of cvtres; even though
280 # it is not necessary on later versions, it is still ok to use it.
282 $(TRES): ../nt/emacs.rc stamp_BLD
283 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
286 # Build the library. Split up the build into two phases...otherwise we
287 # run out of command line space.
291 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
294 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
297 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
300 # Place lastfile.$(O) in its own library so that it can be loaded after
301 # the source libraries but before any system libraries. Doing so defines
302 # the end of Emacs' data section portably across compilers and systems.
304 $(TLASTLIB): $(BLD)/lastfile.$(O)
306 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
309 # Assuming INSTALL_DIR is defined, build and install emacs in it.
312 - mkdir "$(INSTALL_DIR)/bin"
313 $(CP) $(EMACS) $(INSTALL_DIR)/bin
318 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
319 # remove precious files if it happens to match their short 8+3 aliases.
321 - $(DEL) "s/*.h~" "m/*.h~"
322 - $(DEL) $(COMPILER_TEMP_FILES)
323 - $(DEL_TREE) $(OBJDIR)
324 - $(DEL) stamp_BLD gl-stamp globals.h
328 - $(DEL) config.h epaths.h Makefile
330 maintainer-clean: distclean
335 - $(DEL_TREE) obj-spd
339 ## Arrange to make a tags table TAGS-LISP for ../lisp,
340 ## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
342 ## This works only with GNU Make.
344 TAGS: $(OBJ0) $(OBJ1) $(OBJ2) $(CURDIR)/../nt/inc/ms-w32.h
345 $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE)
347 TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2)
348 $(MAKE) $(MFLAGS) TAGS-LISP-$(MAKETYPE)
351 ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \
352 --regex=@../nt/emacs-src.tags \
354 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
356 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
358 $(CURDIR)/*.h $(CURDIR)/../nt/inc/ms-w32.h
361 echo This target is not supported with NMake
366 $(MAKE) $(MFLAGS) -C ../lisp TAGS-LISP DEST=../src
369 echo This target is not supported with NMake
373 $(MAKE) $(MFLAGS) nt-TAGS-$(MAKETYPE)
376 $(MAKE) $(MFLAGS) -C ../nt TAGS
379 echo This target is not supported with NMake
382 full-tags: TAGS TAGS-LISP ../nt/TAGS
388 GNU_LIB = $(EMACS_ROOT)/lib
389 NT_INC = $(EMACS_ROOT)/nt/inc
391 ACL_H = $(GNU_LIB)/acl.h \
392 $(NT_INC)/sys/stat.h \
394 SYSTIME_H = $(SRC)/systime.h \
395 $(NT_INC)/sys/time.h \
396 $(GNU_LIB)/timespec.h
397 ATIMER_H = $(SRC)/atimer.h \
398 $(NT_INC)/stdbool.h \
400 BUFFER_H = $(SRC)/buffer.h \
402 C_CTYPE_H = $(GNU_LIB)/c-ctype.h \
404 CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
406 CHARACTER_H = $(SRC)/character.h \
408 CCL_H = $(SRC)/ccl.h \
410 CHARSET_H = $(SRC)/charset.h \
412 CODING_H = $(SRC)/coding.h \
414 MS_W32_H = $(NT_INC)/ms-w32.h \
416 CONF_POST_H = $(SRC)/conf_post.h \
418 CONFIG_H = $(SRC)/config.h \
420 W32GUI_H = $(SRC)/w32gui.h \
422 DISPEXTERN_H = $(SRC)/dispextern.h \
423 $(GNU_LIB)/c-strcase.h \
426 FILEMODE_H = $(GNU_LIB)/filemode.h \
428 FRAME_H = $(SRC)/frame.h \
430 FONT_H = $(SRC)/font.h \
433 FTOASTR_H = $(GNU_LIB)/ftoastr.h \
434 $(GNU_LIB)/intprops.h
435 GRP_H = $(NT_INC)/grp.h \
437 INTERVALS_H = $(SRC)/intervals.h \
440 INTTYPES_H = $(NT_INC)/inttypes.h \
442 KEYBOARD_H = $(SRC)/keyboard.h \
445 LANGINFO_H = $(NT_INC)/langinfo.h \
447 LISP_H = $(SRC)/lisp.h \
449 $(GNU_LIB)/intprops.h \
451 $(NT_INC)/stdalign.h \
453 MD5_H = $(GNU_LIB)/md5.h \
455 MENU_H = $(SRC)/menu.h \
457 PROCESS_H = $(SRC)/process.h \
460 SHA1_H = $(GNU_LIB)/sha1.h \
462 SHA256_H = $(GNU_LIB)/sha256.h \
464 U64_H = $(GNU_LIB)/u64.h \
466 SHA512_H = $(GNU_LIB)/sha512.h \
468 SIG2STR_H = $(GNU_LIB)/sig2str.h \
469 $(GNU_LIB)/intprops.h
470 SOCKET_H = $(NT_INC)/sys/socket.h \
472 STAT_TIME_H = $(GNU_LIB)/stat-time.h \
474 SYSSIGNAL_H = $(SRC)/syssignal.h \
476 SYSTTY_H = $(SRC)/systty.h \
477 $(NT_INC)/sys/ioctl.h \
479 SYSWAIT_H = $(SRC)/syswait.h \
480 $(NT_INC)/stdbool.h \
482 TERMHOOKS_H = $(SRC)/termhooks.h \
484 W32FONT_H = $(SRC)/w32font.h \
486 W32TERM_H = $(SRC)/w32term.h \
490 WINDOW_H = $(SRC)/window.h \
493 $(BLD)/alloc.$(O) : \
495 $(SRC)/blockinput.h \
500 $(GNU_LIB)/verify.h \
512 $(BLD)/atimer.$(O) : \
514 $(SRC)/blockinput.h \
530 $(BLD)/buffer.$(O) : \
532 $(SRC)/blockinput.h \
536 $(SRC)/region-cache.h \
537 $(NT_INC)/sys/param.h \
538 $(NT_INC)/sys/stat.h \
540 $(GNU_LIB)/verify.h \
550 $(BLD)/bytecode.$(O) : \
559 $(BLD)/callint.$(O) : \
570 $(BLD)/callproc.$(O) : \
572 $(SRC)/blockinput.h \
577 $(NT_INC)/sys/file.h \
592 $(BLD)/casefiddle.$(O) : \
593 $(SRC)/casefiddle.c \
603 $(BLD)/casetab.$(O) : \
610 $(BLD)/category.$(O) : \
629 $(BLD)/character.$(O) : \
633 $(GNU_LIB)/intprops.h \
640 $(BLD)/charset.$(O) : \
652 $(BLD)/chartab.$(O) : \
674 $(BLD)/coding.$(O) : \
688 $(BLD)/composite.$(O) : \
706 $(GNU_LIB)/intprops.h \
717 $(BLD)/dired.$(O) : \
719 $(SRC)/blockinput.h \
724 $(NT_INC)/sys/stat.h \
737 $(BLD)/dispnew.$(O) : \
739 $(SRC)/blockinput.h \
747 $(GNU_LIB)/fpending.h \
767 $(NT_INC)/sys/file.h \
776 $(BLD)/doprnt.$(O) : \
783 $(BLD)/editfns.$(O) : \
785 $(SRC)/blockinput.h \
788 $(GNU_LIB)/intprops.h \
789 $(GNU_LIB)/strftime.h \
790 $(GNU_LIB)/verify.h \
802 $(BLD)/emacs.$(O) : \
804 $(SRC)/blockinput.h \
813 $(NT_INC)/sys/file.h \
815 $(GNU_LIB)/close-stream.h \
834 $(SRC)/blockinput.h \
842 $(BLD)/fileio.$(O) : \
844 $(SRC)/blockinput.h \
848 $(NT_INC)/sys/acl.h \
849 $(NT_INC)/sys/file.h \
850 $(NT_INC)/sys/stat.h \
852 $(GNU_LIB)/allocator.h \
868 $(BLD)/filelock.$(O) : \
872 $(NT_INC)/sys/file.h \
873 $(NT_INC)/sys/stat.h \
883 $(BLD)/firstfile.$(O) : \
887 $(BLD)/floatfns.$(O) : \
894 $(SRC)/blockinput.h \
898 $(GNU_LIB)/intprops.h \
930 $(BLD)/fontset.$(O) : \
932 $(SRC)/blockinput.h \
949 $(BLD)/frame.$(O) : \
951 $(SRC)/blockinput.h \
968 $(BLD)/fringe.$(O) : \
970 $(SRC)/blockinput.h \
980 $(BLD)/gmalloc.$(O) : \
987 $(BLD)/gnutls.$(O) : \
1002 $(BLD)/profiler.$(O) : \
1009 $(BLD)/image.$(O) : \
1011 $(SRC)/blockinput.h \
1014 $(NT_INC)/unistd.h \
1028 $(BLD)/indent.$(O) : \
1031 $(SRC)/composite.h \
1034 $(SRC)/region-cache.h \
1046 $(BLD)/insdel.$(O) : \
1048 $(SRC)/blockinput.h \
1049 $(SRC)/region-cache.h \
1050 $(GNU_LIB)/intprops.h \
1058 $(BLD)/intervals.$(O) : \
1059 $(SRC)/intervals.c \
1062 $(GNU_LIB)/intprops.h \
1070 $(BLD)/keyboard.$(O) : \
1072 $(SRC)/blockinput.h \
1081 $(NT_INC)/sys/ioctl.h \
1082 $(NT_INC)/unistd.h \
1099 $(BLD)/keymap.$(O) : \
1101 $(SRC)/blockinput.h \
1116 $(BLD)/lastfile.$(O) : \
1120 $(BLD)/lread.$(O) : \
1122 $(SRC)/blockinput.h \
1125 $(NT_INC)/sys/file.h \
1126 $(NT_INC)/sys/stat.h \
1127 $(NT_INC)/unistd.h \
1140 $(BLD)/macros.$(O) : \
1151 $(BLD)/marker.$(O) : \
1158 $(BLD)/menu.$(O) : \
1160 $(SRC)/blockinput.h \
1172 $(BLD)/minibuf.$(O) : \
1191 $(SRC)/w32common.h \
1193 $(SRC)/w32select.h \
1194 $(NT_INC)/dirent.h \
1196 $(NT_INC)/sys/acl.h \
1197 $(NT_INC)/sys/file.h \
1198 $(NT_INC)/sys/time.h \
1199 $(GNU_LIB)/allocator.h \
1210 $(BLD)/w32heap.$(O) : \
1212 $(SRC)/w32common.h \
1217 $(BLD)/w32inevt.$(O) : \
1219 $(SRC)/blockinput.h \
1232 $(BLD)/w32proc.$(O) : \
1235 $(SRC)/w32common.h \
1237 $(NT_INC)/nl_types.h \
1238 $(NT_INC)/sys/file.h \
1250 $(BLD)/w32console.$(O) : \
1251 $(SRC)/w32console.c \
1254 $(SRC)/w32common.h \
1266 $(BLD)/print.$(O) : \
1268 $(SRC)/blockinput.h \
1285 $(BLD)/process.$(O) : \
1287 $(SRC)/blockinput.h \
1289 $(SRC)/composite.h \
1291 $(SRC)/sysselect.h \
1293 $(NT_INC)/arpa/inet.h \
1295 $(NT_INC)/netinet/in.h \
1296 $(NT_INC)/sys/file.h \
1297 $(NT_INC)/sys/ioctl.h \
1298 $(NT_INC)/sys/stat.h \
1299 $(NT_INC)/unistd.h \
1321 $(BLD)/ralloc.$(O) : \
1323 $(SRC)/blockinput.h \
1324 $(SRC)/getpagesize.h \
1325 $(NT_INC)/unistd.h \
1329 $(BLD)/regex.$(O) : \
1339 $(BLD)/region-cache.$(O) : \
1340 $(SRC)/region-cache.c \
1341 $(SRC)/region-cache.h \
1347 $(BLD)/scroll.$(O) : \
1358 $(BLD)/search.$(O) : \
1360 $(SRC)/blockinput.h \
1364 $(SRC)/region-cache.h \
1373 $(BLD)/sound.$(O) : \
1375 $(NT_INC)/unistd.h \
1382 $(BLD)/syntax.$(O) : \
1395 $(BLD)/sysdep.$(O) : \
1397 $(SRC)/blockinput.h \
1399 $(SRC)/sysselect.h \
1404 $(NT_INC)/sys/file.h \
1405 $(NT_INC)/sys/param.h \
1406 $(NT_INC)/sys/stat.h \
1407 $(NT_INC)/unistd.h \
1408 $(GNU_LIB)/execinfo.h \
1409 $(GNU_LIB)/utimens.h \
1426 $(BLD)/term.$(O) : \
1428 $(SRC)/blockinput.h \
1430 $(SRC)/composite.h \
1435 $(NT_INC)/sys/file.h \
1436 $(NT_INC)/sys/time.h \
1437 $(NT_INC)/unistd.h \
1454 $(BLD)/terminal.$(O) : \
1465 $(BLD)/textprop.$(O) : \
1474 $(BLD)/tparam.$(O) : \
1480 $(BLD)/undo.$(O) : \
1489 $(BLD)/unexw32.$(O) : \
1493 $(SRC)/w32common.h \
1498 $(BLD)/vm-limit.$(O) : \
1501 $(NT_INC)/unistd.h \
1505 $(BLD)/window.$(O) : \
1507 $(SRC)/blockinput.h \
1525 $(BLD)/xdisp.$(O) : \
1527 $(SRC)/blockinput.h \
1534 $(SRC)/region-cache.h \
1554 $(BLD)/xfaces.$(O) : \
1556 $(SRC)/blockinput.h \
1559 $(NT_INC)/sys/stat.h \
1575 $(BLD)/w32fns.$(O) : \
1577 $(SRC)/blockinput.h \
1581 $(SRC)/w32common.h \
1583 $(NT_INC)/unistd.h \
1602 $(BLD)/w32menu.$(O) : \
1604 $(SRC)/blockinput.h \
1606 $(SRC)/w32common.h \
1621 $(BLD)/w32term.$(O) : \
1623 $(SRC)/blockinput.h \
1630 $(NT_INC)/sys/stat.h \
1652 $(BLD)/w32select.$(O) : \
1653 $(SRC)/w32select.c \
1654 $(SRC)/blockinput.h \
1655 $(SRC)/composite.h \
1656 $(SRC)/w32common.h \
1664 $(BLD)/w32reg.$(O) : \
1666 $(SRC)/blockinput.h \
1671 $(BLD)/w32xfns.$(O) : \
1673 $(SRC)/blockinput.h \
1682 $(BLD)/w32font.$(O) : \
1696 $(BLD)/w32uniscribe.$(O) : \
1697 $(SRC)/w32uniscribe.c \
1698 $(SRC)/composite.h \
1710 $(BLD)/w32notify.$(O) : \
1711 $(SRC)/w32notify.c \
1713 $(SRC)/w32common.h \
1722 # Each object file depends on stamp_BLD, because in parallel builds we must
1723 # make sure $(BLD) exists before starting compilations.
1725 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD