Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / src / makefile.w32-in
blobab7f3056d339614384951181be5ef416a2489d48
1 # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
2 # Copyright (C) 2000-2014 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/>.
20 ALL = emacs
22 .PHONY: $(ALL)
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)
32 SRC             = .
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)               \
58         $(BLD)/atimer.$(O)              \
59         $(BLD)/buffer.$(O)              \
60         $(BLD)/bytecode.$(O)            \
61         $(BLD)/callint.$(O)             \
62         $(BLD)/callproc.$(O)            \
63         $(BLD)/casefiddle.$(O)          \
64         $(BLD)/cmds.$(O)                \
65         $(BLD)/data.$(O)                \
66         $(BLD)/dired.$(O)               \
67         $(BLD)/dispnew.$(O)             \
68         $(BLD)/doc.$(O)                 \
69         $(BLD)/doprnt.$(O)              \
70         $(BLD)/editfns.$(O)             \
71         $(BLD)/eval.$(O)                \
72         $(BLD)/fileio.$(O)              \
73         $(BLD)/filelock.$(O)            \
74         $(BLD)/fns.$(O)                 \
75         $(BLD)/indent.$(O)              \
76         $(BLD)/insdel.$(O)              \
77         $(BLD)/keyboard.$(O)            \
78         $(BLD)/keymap.$(O)              \
79         $(BLD)/lread.$(O)               \
80         $(BLD)/macros.$(O)              \
81         $(BLD)/marker.$(O)              \
82         $(BLD)/minibuf.$(O)             \
83         $(BLD)/w32.$(O)                 \
84         $(BLD)/w32heap.$(O)             \
85         $(BLD)/w32inevt.$(O)            \
86         $(BLD)/w32proc.$(O)             \
87         $(BLD)/w32console.$(O)          \
88         $(BLD)/print.$(O)               \
89         $(BLD)/process.$(O)             \
90         $(BLD)/regex.$(O)               \
91         $(BLD)/scroll.$(O)              \
92         $(BLD)/search.$(O)              \
93         $(BLD)/sound.$(O)               \
94         $(BLD)/syntax.$(O)
96 OBJ2 =  $(BLD)/sysdep.$(O)              \
97         $(BLD)/term.$(O)                \
98         $(BLD)/tparam.$(O)              \
99         $(BLD)/undo.$(O)                \
100         $(BLD)/unexw32.$(O)             \
101         $(BLD)/window.$(O)              \
102         $(BLD)/xdisp.$(O)               \
103         $(BLD)/casetab.$(O)             \
104         $(BLD)/floatfns.$(O)            \
105         $(BLD)/frame.$(O)               \
106         $(BLD)/gmalloc.$(O)             \
107         $(BLD)/gnutls.$(O)              \
108         $(BLD)/intervals.$(O)           \
109         $(BLD)/composite.$(O)           \
110         $(BLD)/ralloc.$(O)              \
111         $(BLD)/textprop.$(O)            \
112         $(BLD)/vm-limit.$(O)            \
113         $(BLD)/region-cache.$(O)        \
114         $(BLD)/bidi.$(O)                \
115         $(BLD)/charset.$(O)             \
116         $(BLD)/character.$(O)           \
117         $(BLD)/chartab.$(O)             \
118         $(BLD)/coding.$(O)              \
119         $(BLD)/category.$(O)            \
120         $(BLD)/ccl.$(O)                 \
121         $(BLD)/font.$(O)                \
122         $(BLD)/fontset.$(O)             \
123         $(BLD)/fringe.$(O)              \
124         $(BLD)/image.$(O)               \
125         $(BLD)/terminal.$(O)            \
126         $(BLD)/menu.$(O)                \
127         $(BLD)/xml.$(O)                 \
128         $(BLD)/profiler.$(O)            \
129         $(BLD)/w32term.$(O)             \
130         $(BLD)/w32xfns.$(O)             \
131         $(BLD)/w32fns.$(O)              \
132         $(BLD)/xfaces.$(O)              \
133         $(BLD)/w32select.$(O)           \
134         $(BLD)/w32menu.$(O)             \
135         $(BLD)/w32reg.$(O)              \
136         $(BLD)/w32font.$(O)             \
137         $(BLD)/w32notify.$(O)           \
138         $(BLD)/w32uniscribe.$(O)
140 LIBS =  $(TLIB0)        \
141         $(TLIB1)        \
142         $(TLIB2)        \
143         $(TLASTLIB)     \
144         $(GNULIB)       \
145         $(WINMM)        \
146         $(ADVAPI32)     \
147         $(GDI32)        \
148         $(COMDLG32)     \
149         $(USER32)       \
150         $(MPR)          \
151         $(SHELL32)      \
152         $(WINSPOOL)     \
153         $(OLE32)        \
154         $(COMCTL32)     \
155         $(UNISCRIBE)    \
156         $(USER_LIBS)    \
157         $(libc)
160 # Build the executable and dump it.
162 all:            $(ALL)
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
185 # anyways.
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.
191 make-buildobj-CMD:
192         echo #define BUILDOBJ ^"\> buildobj.h
193         echo $(OBJ0)            \>> buildobj.h
194         echo $(OBJ1)            \>> buildobj.h
195         echo $(OBJ2)            \>> buildobj.h
196         echo ^">> buildobj.h
198 # "
199 # The above line is here to countermand the single quote
200 # on the last "echo" command above, wrt font-lock.
201 make-buildobj-SH:
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)
232 globals.h: gl-stamp
233         @cmd $(SWITCHCHAR)c rem true
235 gl-stamp: ../lib-src/$(BLD)/make-docfile.exe $(GLOBAL_SOURCES)
236         - $(DEL) gl-tmp
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
239         - $(DEL) gl-tmp
240         echo timestamp > $@
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)
253 bootstrap-temacs-SH:
254         $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=$(EMACS_PURESIZE)$(ARGQUOTE)
256 bootstrap-temacs:
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
265         - mkdir "../bin"
266         $(CP) $(EMACS) ../bin
269 # Force recompile of files that depend on PURESIZE
271 bootstrap-clean:
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.
289 $(TLIB0):       $(OBJ0)
290         - $(DEL) $@
291         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
292 $(TLIB1):       $(OBJ1)
293         - $(DEL) $@
294         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
295 $(TLIB2):       $(OBJ2)
296         - $(DEL) $@
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)
305         - $(DEL) $@
306         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
309 # Assuming INSTALL_DIR is defined, build and install emacs in it.
311 install:        $(ALL)
312         - mkdir "$(INSTALL_DIR)/bin"
313         $(CP) $(EMACS) $(INSTALL_DIR)/bin
316 # Maintenance
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.
320 clean:
321         - $(DEL) "s/*.h~" "m/*.h~"
322         - $(DEL) $(COMPILER_TEMP_FILES)
323         - $(DEL_TREE) $(OBJDIR)
324         - $(DEL) stamp_BLD gl-stamp globals.h
325         - $(DEL) buildobj.h
327 distclean:      cleanall
328         - $(DEL) config.h epaths.h Makefile
330 maintainer-clean: distclean
331         - $(DEL) TAGS
333 cleanall:       clean
334         - $(DEL_TREE) obj
335         - $(DEL_TREE) obj-spd
336         - $(DEL_TREE) oo
337         - $(DEL_TREE) oo-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)
350 TAGS-gmake:
351         ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \
352           --regex=@../nt/emacs-src.tags \
353           $(OBJ0_c)
354         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
355           $(OBJ1_c)
356         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
357           $(OBJ2_c) \
358           $(CURDIR)/*.h $(CURDIR)/../nt/inc/ms-w32.h
360 TAGS-nmake:
361         echo This target is not supported with NMake
362         exit -1
364 frc:
365 TAGS-LISP-gmake: frc
366         $(MAKE) $(MFLAGS) -C ../lisp TAGS-LISP DEST=../src
368 TAGS-LISP-nmake:
369         echo This target is not supported with NMake
370         exit -1
372 ../nt/TAGS: frc
373         $(MAKE) $(MFLAGS) nt-TAGS-$(MAKETYPE)
375 nt-TAGS-gmake:
376         $(MAKE) $(MFLAGS) -C ../nt TAGS
378 nt-TAGS-nmake:
379         echo This target is not supported with NMake
380         exit -1
382 full-tags: TAGS TAGS-LISP ../nt/TAGS
383 .PHONY: full-tags
385 ### DEPENDENCIES ###
387 EMACS_ROOT = ..
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 \
393                  $(NT_INC)/stdbool.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 \
399                  $(SYSTIME_H)
400 BUFFER_H       = $(SRC)/buffer.h \
401                  $(SYSTIME_H)
402 C_CTYPE_H      = $(GNU_LIB)/c-ctype.h \
403                  $(NT_INC)/stdbool.h
404 CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
405                  $(NT_INC)/unistd.h
406 CHARACTER_H    = $(SRC)/character.h \
407                  $(GNU_LIB)/verify.h
408 CCL_H          = $(SRC)/ccl.h \
409                  $(CHARACTER_H)
410 CHARSET_H      = $(SRC)/charset.h \
411                  $(GNU_LIB)/verify.h
412 CODING_H       = $(SRC)/coding.h \
413                  $(SRC)/composite.h
414 MS_W32_H       = $(NT_INC)/ms-w32.h \
415                  $(NT_INC)/sys/stat.h
416 CONF_POST_H    = $(SRC)/conf_post.h \
417                  $(MS_W32_H)
418 CONFIG_H       = $(SRC)/config.h \
419                  $(CONF_POST_H)
420 W32GUI_H       = $(SRC)/w32gui.h \
421                  $(SYSTIME_H)
422 DISPEXTERN_H   = $(SRC)/dispextern.h \
423                  $(GNU_LIB)/c-strcase.h \
424                  $(SYSTIME_H) \
425                  $(W32GUI_H)
426 FILEMODE_H     = $(GNU_LIB)/filemode.h \
427                  $(NT_INC)/sys/stat.h
428 FRAME_H        = $(SRC)/frame.h \
429                  $(DISPEXTERN_H)
430 FONT_H         = $(SRC)/font.h \
431                  $(CCL_H) \
432                  $(FRAME_H)
433 FTOASTR_H      = $(GNU_LIB)/ftoastr.h \
434                  $(GNU_LIB)/intprops.h
435 GRP_H          = $(NT_INC)/grp.h \
436                  $(NT_INC)/pwd.h
437 INTERVALS_H    = $(SRC)/intervals.h \
438                  $(SRC)/composite.h \
439                  $(DISPEXTERN_H)
440 INTTYPES_H     = $(NT_INC)/inttypes.h \
441                  $(NT_INC)/stdint.h
442 KEYBOARD_H     = $(SRC)/keyboard.h \
443                  $(CODING_H) \
444                  $(SYSTIME_H)
445 LANGINFO_H     = $(NT_INC)/langinfo.h \
446                  $(NT_INC)/nl_types.h
447 LISP_H         = $(SRC)/lisp.h \
448                  $(SRC)/globals.h \
449                  $(GNU_LIB)/intprops.h \
450                  $(INTTYPES_H) \
451                  $(NT_INC)/stdalign.h \
452                  $(NT_INC)/stdbool.h
453 MD5_H          = $(GNU_LIB)/md5.h \
454                  $(NT_INC)/stdint.h
455 MENU_H         = $(SRC)/menu.h \
456                  $(SYSTIME_H)
457 PROCESS_H      = $(SRC)/process.h \
458                  $(SRC)/gnutls.h \
459                  $(NT_INC)/unistd.h
460 SHA1_H         = $(GNU_LIB)/sha1.h \
461                  $(NT_INC)/stdint.h
462 SHA256_H       = $(GNU_LIB)/sha256.h \
463                  $(NT_INC)/stdint.h
464 U64_H          = $(GNU_LIB)/u64.h \
465                  $(NT_INC)/stdint.h
466 SHA512_H       = $(GNU_LIB)/sha512.h \
467                  $(U64_H)
468 SIG2STR_H      = $(GNU_LIB)/sig2str.h \
469                  $(GNU_LIB)/intprops.h
470 SOCKET_H       = $(NT_INC)/sys/socket.h \
471                  $(SRC)/w32.h
472 STAT_TIME_H    = $(GNU_LIB)/stat-time.h \
473                  $(NT_INC)/sys/stat.h
474 SYSSIGNAL_H    = $(SRC)/syssignal.h \
475                  $(NT_INC)/stdbool.h
476 SYSTTY_H       = $(SRC)/systty.h \
477                  $(NT_INC)/sys/ioctl.h \
478                  $(NT_INC)/unistd.h
479 SYSWAIT_H      = $(SRC)/syswait.h \
480                  $(NT_INC)/stdbool.h \
481                  $(NT_INC)/sys/wait.h
482 TERMHOOKS_H    = $(SRC)/termhooks.h \
483                  $(SYSTIME_H)
484 W32FONT_H      = $(SRC)/w32font.h \
485                  $(FONT_H)
486 W32TERM_H      = $(SRC)/w32term.h \
487                  $(ATIMER_H) \
488                  $(FRAME_H) \
489                  $(W32GUI_H)
490 WINDOW_H       = $(SRC)/window.h \
491                  $(DISPEXTERN_H)
493 $(BLD)/alloc.$(O) : \
494         $(SRC)/alloc.c \
495         $(SRC)/blockinput.h \
496         $(SRC)/puresize.h \
497         $(SRC)/w32.h \
498         $(SRC)/w32heap.h \
499         $(NT_INC)/unistd.h \
500         $(GNU_LIB)/verify.h \
501         $(BUFFER_H) \
502         $(CHARACTER_H) \
503         $(CONFIG_H) \
504         $(FRAME_H) \
505         $(INTERVALS_H) \
506         $(KEYBOARD_H) \
507         $(LISP_H) \
508         $(PROCESS_H) \
509         $(TERMHOOKS_H) \
510         $(WINDOW_H)
512 $(BLD)/atimer.$(O) : \
513         $(SRC)/atimer.c \
514         $(SRC)/blockinput.h \
515         $(NT_INC)/unistd.h \
516         $(ATIMER_H) \
517         $(CONFIG_H) \
518         $(LISP_H) \
519         $(SYSSIGNAL_H) \
520         $(SYSTIME_H)
522 $(BLD)/bidi.$(O) : \
523         $(SRC)/bidi.c \
524         $(BUFFER_H) \
525         $(CHARACTER_H) \
526         $(CONFIG_H) \
527         $(DISPEXTERN_H) \
528         $(LISP_H)
530 $(BLD)/buffer.$(O) : \
531         $(SRC)/buffer.c \
532         $(SRC)/blockinput.h \
533         $(SRC)/commands.h \
534         $(SRC)/indent.h \
535         $(SRC)/keymap.h \
536         $(SRC)/region-cache.h \
537         $(NT_INC)/sys/param.h \
538         $(NT_INC)/sys/stat.h \
539         $(NT_INC)/unistd.h \
540         $(GNU_LIB)/verify.h \
541         $(BUFFER_H) \
542         $(CHARACTER_H) \
543         $(CONFIG_H) \
544         $(FRAME_H) \
545         $(INTERVALS_H) \
546         $(KEYBOARD_H) \
547         $(LISP_H) \
548         $(WINDOW_H)
550 $(BLD)/bytecode.$(O) : \
551         $(SRC)/bytecode.c \
552         $(SRC)/syntax.h \
553         $(BUFFER_H) \
554         $(CHARACTER_H) \
555         $(CONFIG_H) \
556         $(LISP_H) \
557         $(WINDOW_H)
559 $(BLD)/callint.$(O) : \
560         $(SRC)/callint.c \
561         $(SRC)/commands.h \
562         $(SRC)/keymap.h \
563         $(BUFFER_H) \
564         $(CHARACTER_H) \
565         $(CONFIG_H) \
566         $(KEYBOARD_H) \
567         $(LISP_H) \
568         $(WINDOW_H)
570 $(BLD)/callproc.$(O) : \
571         $(SRC)/callproc.c \
572         $(SRC)/blockinput.h \
573         $(SRC)/commands.h \
574         $(SRC)/composite.h \
575         $(SRC)/epaths.h \
576         $(SRC)/w32.h \
577         $(NT_INC)/sys/file.h \
578         $(NT_INC)/unistd.h \
579         $(BUFFER_H) \
580         $(CCL_H) \
581         $(CHARACTER_H) \
582         $(CODING_H) \
583         $(CONFIG_H) \
584         $(FRAME_H) \
585         $(LISP_H) \
586         $(PROCESS_H) \
587         $(SYSSIGNAL_H) \
588         $(SYSTTY_H) \
589         $(SYSWAIT_H) \
590         $(TERMHOOKS_H)
592 $(BLD)/casefiddle.$(O) : \
593         $(SRC)/casefiddle.c \
594         $(SRC)/commands.h \
595         $(SRC)/composite.h \
596         $(SRC)/keymap.h \
597         $(SRC)/syntax.h \
598         $(BUFFER_H) \
599         $(CHARACTER_H) \
600         $(CONFIG_H) \
601         $(LISP_H)
603 $(BLD)/casetab.$(O) : \
604         $(SRC)/casetab.c \
605         $(BUFFER_H) \
606         $(CHARACTER_H) \
607         $(CONFIG_H) \
608         $(LISP_H)
610 $(BLD)/category.$(O) : \
611         $(SRC)/category.c \
612         $(SRC)/category.h \
613         $(SRC)/keymap.h \
614         $(BUFFER_H) \
615         $(CHARACTER_H) \
616         $(CHARSET_H) \
617         $(CONFIG_H) \
618         $(LISP_H)
620 $(BLD)/ccl.$(O) : \
621         $(SRC)/ccl.c \
622         $(CCL_H) \
623         $(CHARACTER_H) \
624         $(CHARSET_H) \
625         $(CODING_H) \
626         $(CONFIG_H) \
627         $(LISP_H)
629 $(BLD)/character.$(O) : \
630         $(SRC)/character.c \
631         $(SRC)/composite.h \
632         $(SRC)/disptab.h \
633         $(GNU_LIB)/intprops.h \
634         $(BUFFER_H) \
635         $(CHARACTER_H) \
636         $(CHARSET_H) \
637         $(CONFIG_H) \
638         $(LISP_H)
640 $(BLD)/charset.$(O) : \
641         $(SRC)/charset.c \
642         $(SRC)/disptab.h \
643         $(NT_INC)/unistd.h \
644         $(BUFFER_H) \
645         $(CHARACTER_H) \
646         $(CHARSET_H) \
647         $(CODING_H) \
648         $(CONFIG_H) \
649         $(C_CTYPE_H) \
650         $(LISP_H)
652 $(BLD)/chartab.$(O) : \
653         $(SRC)/chartab.c \
654         $(CCL_H) \
655         $(CHARACTER_H) \
656         $(CHARSET_H) \
657         $(CONFIG_H) \
658         $(LISP_H)
660 $(BLD)/cmds.$(O) : \
661         $(SRC)/cmds.c \
662         $(SRC)/commands.h \
663         $(SRC)/keymap.h \
664         $(SRC)/syntax.h \
665         $(BUFFER_H) \
666         $(CHARACTER_H) \
667         $(CONFIG_H) \
668         $(DISPEXTERN_H) \
669         $(FRAME_H) \
670         $(KEYBOARD_H) \
671         $(LISP_H) \
672         $(WINDOW_H)
674 $(BLD)/coding.$(O) : \
675         $(SRC)/coding.c \
676         $(SRC)/composite.h \
677         $(BUFFER_H) \
678         $(CCL_H) \
679         $(CHARACTER_H) \
680         $(CHARSET_H) \
681         $(CODING_H) \
682         $(CONFIG_H) \
683         $(FRAME_H) \
684         $(LISP_H) \
685         $(TERMHOOKS_H) \
686         $(WINDOW_H)
688 $(BLD)/composite.$(O) : \
689         $(SRC)/composite.c \
690         $(BUFFER_H) \
691         $(CHARACTER_H) \
692         $(CODING_H) \
693         $(CONFIG_H) \
694         $(DISPEXTERN_H) \
695         $(FONT_H) \
696         $(FRAME_H) \
697         $(INTERVALS_H) \
698         $(LISP_H) \
699         $(TERMHOOKS_H) \
700         $(WINDOW_H)
702 $(BLD)/data.$(O) : \
703         $(SRC)/data.c \
704         $(SRC)/keymap.h \
705         $(SRC)/puresize.h \
706         $(GNU_LIB)/intprops.h \
707         $(BUFFER_H) \
708         $(CHARACTER_H) \
709         $(CONFIG_H) \
710         $(FONT_H) \
711         $(FRAME_H) \
712         $(KEYBOARD_H) \
713         $(LISP_H) \
714         $(SYSSIGNAL_H) \
715         $(TERMHOOKS_H)
717 $(BLD)/dired.$(O) : \
718         $(SRC)/dired.c \
719         $(SRC)/blockinput.h \
720         $(SRC)/commands.h \
721         $(SRC)/regex.h \
722         $(NT_INC)/dirent.h \
723         $(NT_INC)/pwd.h \
724         $(NT_INC)/sys/stat.h \
725         $(NT_INC)/unistd.h \
726         $(BUFFER_H) \
727         $(CHARACTER_H) \
728         $(CHARSET_H) \
729         $(CODING_H) \
730         $(CONFIG_H) \
731         $(FILEMODE_H) \
732         $(GRP_H) \
733         $(LISP_H) \
734         $(STAT_TIME_H) \
735         $(SYSTIME_H)
737 $(BLD)/dispnew.$(O) : \
738         $(SRC)/dispnew.c \
739         $(SRC)/blockinput.h \
740         $(SRC)/cm.h \
741         $(SRC)/commands.h \
742         $(SRC)/disptab.h \
743         $(SRC)/indent.h \
744         $(SRC)/termchar.h \
745         $(SRC)/w32.h \
746         $(NT_INC)/unistd.h \
747         $(GNU_LIB)/fpending.h \
748         $(BUFFER_H) \
749         $(CHARACTER_H) \
750         $(CONFIG_H) \
751         $(DISPEXTERN_H) \
752         $(FRAME_H) \
753         $(INTERVALS_H) \
754         $(KEYBOARD_H) \
755         $(LISP_H) \
756         $(PROCESS_H) \
757         $(SYSSIGNAL_H) \
758         $(SYSTIME_H) \
759         $(TERMHOOKS_H) \
760         $(W32TERM_H) \
761         $(WINDOW_H)
763 $(BLD)/doc.$(O) : \
764         $(SRC)/doc.c \
765         $(SRC)/buildobj.h \
766         $(SRC)/keymap.h \
767         $(NT_INC)/sys/file.h \
768         $(NT_INC)/unistd.h \
769         $(BUFFER_H) \
770         $(CHARACTER_H) \
771         $(CONFIG_H) \
772         $(C_CTYPE_H) \
773         $(KEYBOARD_H) \
774         $(LISP_H)
776 $(BLD)/doprnt.$(O) : \
777         $(SRC)/doprnt.c \
778         $(NT_INC)/unistd.h \
779         $(CHARACTER_H) \
780         $(CONFIG_H) \
781         $(LISP_H)
783 $(BLD)/editfns.$(O) : \
784         $(SRC)/editfns.c \
785         $(SRC)/blockinput.h \
786         $(NT_INC)/pwd.h \
787         $(NT_INC)/unistd.h \
788         $(GNU_LIB)/intprops.h \
789         $(GNU_LIB)/strftime.h \
790         $(GNU_LIB)/verify.h \
791         $(BUFFER_H) \
792         $(CHARACTER_H) \
793         $(CODING_H) \
794         $(CONFIG_H) \
795         $(FRAME_H) \
796         $(GRP_H) \
797         $(INTERVALS_H) \
798         $(LISP_H) \
799         $(SYSTIME_H) \
800         $(WINDOW_H)
802 $(BLD)/emacs.$(O) : \
803         $(SRC)/emacs.c \
804         $(SRC)/blockinput.h \
805         $(SRC)/commands.h \
806         $(SRC)/gnutls.h \
807         $(SRC)/keymap.h \
808         $(SRC)/unexec.h \
809         $(SRC)/w32.h \
810         $(SRC)/w32common.h \
811         $(SRC)/w32heap.h \
812         $(SRC)/w32select.h \
813         $(NT_INC)/sys/file.h \
814         $(NT_INC)/unistd.h \
815         $(GNU_LIB)/close-stream.h \
816         $(ATIMER_H) \
817         $(BUFFER_H) \
818         $(CHARACTER_H) \
819         $(CONFIG_H) \
820         $(FRAME_H) \
821         $(INTERVALS_H) \
822         $(KEYBOARD_H) \
823         $(LISP_H) \
824         $(PROCESS_H) \
825         $(SYSSIGNAL_H) \
826         $(SYSTTY_H) \
827         $(TERMHOOKS_H) \
828         $(W32FONT_H) \
829         $(W32TERM_H) \
830         $(WINDOW_H)
832 $(BLD)/eval.$(O) : \
833         $(SRC)/eval.c \
834         $(SRC)/blockinput.h \
835         $(SRC)/commands.h \
836         $(CONFIG_H) \
837         $(DISPEXTERN_H) \
838         $(FRAME_H) \
839         $(KEYBOARD_H) \
840         $(LISP_H)
842 $(BLD)/fileio.$(O) : \
843         $(SRC)/fileio.c \
844         $(SRC)/blockinput.h \
845         $(SRC)/commands.h \
846         $(SRC)/w32.h \
847         $(NT_INC)/pwd.h \
848         $(NT_INC)/sys/acl.h \
849         $(NT_INC)/sys/file.h \
850         $(NT_INC)/sys/stat.h \
851         $(NT_INC)/unistd.h \
852         $(GNU_LIB)/allocator.h \
853         $(ACL_H) \
854         $(BUFFER_H) \
855         $(CAREADLINKAT_H) \
856         $(CHARACTER_H) \
857         $(CODING_H) \
858         $(CONFIG_H) \
859         $(C_CTYPE_H) \
860         $(DISPEXTERN_H) \
861         $(FRAME_H) \
862         $(INTERVALS_H) \
863         $(LISP_H) \
864         $(STAT_TIME_H) \
865         $(SYSTIME_H) \
866         $(WINDOW_H)
868 $(BLD)/filelock.$(O) : \
869         $(SRC)/filelock.c \
870         $(SRC)/w32.h \
871         $(NT_INC)/pwd.h \
872         $(NT_INC)/sys/file.h \
873         $(NT_INC)/sys/stat.h \
874         $(NT_INC)/unistd.h \
875         $(BUFFER_H) \
876         $(CHARACTER_H) \
877         $(CODING_H) \
878         $(CONFIG_H) \
879         $(C_CTYPE_H) \
880         $(LISP_H) \
881         $(SYSTIME_H)
883 $(BLD)/firstfile.$(O) : \
884         $(SRC)/firstfile.c \
885         $(CONFIG_H)
887 $(BLD)/floatfns.$(O) : \
888         $(SRC)/floatfns.c \
889         $(CONFIG_H) \
890         $(LISP_H)
892 $(BLD)/fns.$(O) : \
893         $(SRC)/fns.c \
894         $(SRC)/blockinput.h \
895         $(SRC)/commands.h \
896         $(SRC)/keymap.h \
897         $(NT_INC)/unistd.h \
898         $(GNU_LIB)/intprops.h \
899         $(BUFFER_H) \
900         $(CHARACTER_H) \
901         $(CODING_H) \
902         $(CONFIG_H) \
903         $(FRAME_H) \
904         $(INTERVALS_H) \
905         $(KEYBOARD_H) \
906         $(LANGINFO_H) \
907         $(LISP_H) \
908         $(MD5_H) \
909         $(SHA1_H) \
910         $(SHA256_H) \
911         $(SHA512_H) \
912         $(WINDOW_H)
914 $(BLD)/font.$(O) : \
915         $(SRC)/font.c \
916         $(SRC)/composite.h \
917         $(SRC)/fontset.h \
918         $(BUFFER_H) \
919         $(CHARACTER_H) \
920         $(CHARSET_H) \
921         $(CONFIG_H) \
922         $(C_CTYPE_H) \
923         $(DISPEXTERN_H) \
924         $(FONT_H) \
925         $(FRAME_H) \
926         $(LISP_H) \
927         $(W32TERM_H) \
928         $(WINDOW_H)
930 $(BLD)/fontset.$(O) : \
931         $(SRC)/fontset.c \
932         $(SRC)/blockinput.h \
933         $(SRC)/fontset.h \
934         $(BUFFER_H) \
935         $(CCL_H) \
936         $(CHARACTER_H) \
937         $(CHARSET_H) \
938         $(CONFIG_H) \
939         $(DISPEXTERN_H) \
940         $(FONT_H) \
941         $(FRAME_H) \
942         $(INTERVALS_H) \
943         $(KEYBOARD_H) \
944         $(LISP_H) \
945         $(TERMHOOKS_H) \
946         $(W32TERM_H) \
947         $(WINDOW_H)
949 $(BLD)/frame.$(O) : \
950         $(SRC)/frame.c \
951         $(SRC)/blockinput.h \
952         $(SRC)/commands.h \
953         $(SRC)/fontset.h \
954         $(SRC)/termchar.h \
955         $(BUFFER_H) \
956         $(CHARACTER_H) \
957         $(CONFIG_H) \
958         $(C_CTYPE_H) \
959         $(DISPEXTERN_H) \
960         $(FONT_H) \
961         $(FRAME_H) \
962         $(KEYBOARD_H) \
963         $(LISP_H) \
964         $(TERMHOOKS_H) \
965         $(W32TERM_H) \
966         $(WINDOW_H)
968 $(BLD)/fringe.$(O) : \
969         $(SRC)/fringe.c \
970         $(SRC)/blockinput.h \
971         $(BUFFER_H) \
972         $(CHARACTER_H) \
973         $(CONFIG_H) \
974         $(DISPEXTERN_H) \
975         $(FRAME_H) \
976         $(LISP_H) \
977         $(TERMHOOKS_H) \
978         $(WINDOW_H)
980 $(BLD)/gmalloc.$(O) : \
981         $(SRC)/gmalloc.c \
982         $(SRC)/w32heap.h \
983         $(NT_INC)/stdint.h \
984         $(NT_INC)/unistd.h \
985         $(CONFIG_H)
987 $(BLD)/gnutls.$(O) : \
988         $(SRC)/gnutls.c \
989         $(SRC)/w32.h \
990         $(CONFIG_H) \
991         $(LISP_H) \
992         $(PROCESS_H)
994 $(BLD)/xml.$(O) : \
995         $(SRC)/xml.c \
996         $(SRC)/w32.h \
997         $(BUFFER_H) \
998         $(CHARACTER_H) \
999         $(CONFIG_H) \
1000         $(LISP_H)
1002 $(BLD)/profiler.$(O) : \
1003         $(SRC)/profiler.c \
1004         $(CONFIG_H) \
1005         $(LISP_H) \
1006         $(SYSSIGNAL_H) \
1007         $(SYSTIME_H)
1009 $(BLD)/image.$(O) : \
1010         $(SRC)/image.c \
1011         $(SRC)/blockinput.h \
1012         $(SRC)/epaths.h \
1013         $(SRC)/w32.h \
1014         $(NT_INC)/unistd.h \
1015         $(CHARACTER_H) \
1016         $(CODING_H) \
1017         $(CONFIG_H) \
1018         $(C_CTYPE_H) \
1019         $(DISPEXTERN_H) \
1020         $(FONT_H) \
1021         $(FRAME_H) \
1022         $(LISP_H) \
1023         $(SYSTIME_H) \
1024         $(TERMHOOKS_H) \
1025         $(W32TERM_H) \
1026         $(WINDOW_H)
1028 $(BLD)/indent.$(O) : \
1029         $(SRC)/indent.c \
1030         $(SRC)/category.h \
1031         $(SRC)/composite.h \
1032         $(SRC)/disptab.h \
1033         $(SRC)/indent.h \
1034         $(SRC)/region-cache.h \
1035         $(SRC)/termchar.h \
1036         $(BUFFER_H) \
1037         $(CHARACTER_H) \
1038         $(CONFIG_H) \
1039         $(DISPEXTERN_H) \
1040         $(FRAME_H) \
1041         $(INTERVALS_H) \
1042         $(KEYBOARD_H) \
1043         $(LISP_H) \
1044         $(WINDOW_H)
1046 $(BLD)/insdel.$(O) : \
1047         $(SRC)/insdel.c \
1048         $(SRC)/blockinput.h \
1049         $(SRC)/region-cache.h \
1050         $(GNU_LIB)/intprops.h \
1051         $(BUFFER_H) \
1052         $(CHARACTER_H) \
1053         $(CONFIG_H) \
1054         $(INTERVALS_H) \
1055         $(LISP_H) \
1056         $(WINDOW_H)
1058 $(BLD)/intervals.$(O) : \
1059         $(SRC)/intervals.c \
1060         $(SRC)/keymap.h \
1061         $(SRC)/puresize.h \
1062         $(GNU_LIB)/intprops.h \
1063         $(BUFFER_H) \
1064         $(CHARACTER_H) \
1065         $(CONFIG_H) \
1066         $(INTERVALS_H) \
1067         $(KEYBOARD_H) \
1068         $(LISP_H)
1070 $(BLD)/keyboard.$(O) : \
1071         $(SRC)/keyboard.c \
1072         $(SRC)/blockinput.h \
1073         $(SRC)/commands.h \
1074         $(SRC)/disptab.h \
1075         $(SRC)/keymap.h \
1076         $(SRC)/macros.h \
1077         $(SRC)/puresize.h \
1078         $(SRC)/syntax.h \
1079         $(SRC)/termchar.h \
1080         $(SRC)/termopts.h \
1081         $(NT_INC)/sys/ioctl.h \
1082         $(NT_INC)/unistd.h \
1083         $(ATIMER_H) \
1084         $(BUFFER_H) \
1085         $(CHARACTER_H) \
1086         $(CONFIG_H) \
1087         $(DISPEXTERN_H) \
1088         $(FRAME_H) \
1089         $(INTERVALS_H) \
1090         $(KEYBOARD_H) \
1091         $(LISP_H) \
1092         $(PROCESS_H) \
1093         $(SYSSIGNAL_H) \
1094         $(SYSTIME_H) \
1095         $(TERMHOOKS_H) \
1096         $(W32TERM_H) \
1097         $(WINDOW_H)
1099 $(BLD)/keymap.$(O) : \
1100         $(SRC)/keymap.c \
1101         $(SRC)/blockinput.h \
1102         $(SRC)/commands.h \
1103         $(SRC)/keymap.h \
1104         $(SRC)/puresize.h \
1105         $(BUFFER_H) \
1106         $(CHARACTER_H) \
1107         $(CHARSET_H) \
1108         $(CONFIG_H) \
1109         $(FRAME_H) \
1110         $(INTERVALS_H) \
1111         $(KEYBOARD_H) \
1112         $(LISP_H) \
1113         $(TERMHOOKS_H) \
1114         $(WINDOW_H)
1116 $(BLD)/lastfile.$(O) : \
1117         $(SRC)/lastfile.c \
1118         $(CONFIG_H)
1120 $(BLD)/lread.$(O) : \
1121         $(SRC)/lread.c \
1122         $(SRC)/blockinput.h \
1123         $(SRC)/commands.h \
1124         $(SRC)/epaths.h \
1125         $(NT_INC)/sys/file.h \
1126         $(NT_INC)/sys/stat.h \
1127         $(NT_INC)/unistd.h \
1128         $(BUFFER_H) \
1129         $(CHARACTER_H) \
1130         $(CHARSET_H) \
1131         $(CODING_H) \
1132         $(CONFIG_H) \
1133         $(FRAME_H) \
1134         $(INTERVALS_H) \
1135         $(KEYBOARD_H) \
1136         $(LISP_H) \
1137         $(STAT_TIME_H) \
1138         $(TERMHOOKS_H)
1140 $(BLD)/macros.$(O) : \
1141         $(SRC)/macros.c \
1142         $(SRC)/commands.h \
1143         $(SRC)/macros.h \
1144         $(BUFFER_H) \
1145         $(CHARACTER_H) \
1146         $(CONFIG_H) \
1147         $(KEYBOARD_H) \
1148         $(LISP_H) \
1149         $(WINDOW_H)
1151 $(BLD)/marker.$(O) : \
1152         $(SRC)/marker.c \
1153         $(BUFFER_H) \
1154         $(CHARACTER_H) \
1155         $(CONFIG_H) \
1156         $(LISP_H)
1158 $(BLD)/menu.$(O) : \
1159         $(SRC)/menu.c \
1160         $(SRC)/blockinput.h \
1161         $(SRC)/keymap.h \
1162         $(CONFIG_H) \
1163         $(DISPEXTERN_H) \
1164         $(FRAME_H) \
1165         $(KEYBOARD_H) \
1166         $(LISP_H) \
1167         $(MENU_H) \
1168         $(TERMHOOKS_H) \
1169         $(W32TERM_H) \
1170         $(WINDOW_H)
1172 $(BLD)/minibuf.$(O) : \
1173         $(SRC)/minibuf.c \
1174         $(SRC)/commands.h \
1175         $(SRC)/keymap.h \
1176         $(SRC)/syntax.h \
1177         $(BUFFER_H) \
1178         $(CHARACTER_H) \
1179         $(CONFIG_H) \
1180         $(DISPEXTERN_H) \
1181         $(FRAME_H) \
1182         $(INTERVALS_H) \
1183         $(KEYBOARD_H) \
1184         $(LISP_H) \
1185         $(TERMHOOKS_H) \
1186         $(WINDOW_H)
1188 $(BLD)/w32.$(O) : \
1189         $(SRC)/w32.c \
1190         $(SRC)/w32.h \
1191         $(SRC)/w32common.h \
1192         $(SRC)/w32heap.h \
1193         $(SRC)/w32select.h \
1194         $(NT_INC)/dirent.h \
1195         $(NT_INC)/pwd.h \
1196         $(NT_INC)/sys/acl.h \
1197         $(NT_INC)/sys/file.h \
1198         $(NT_INC)/sys/time.h \
1199         $(GNU_LIB)/allocator.h \
1200         $(CAREADLINKAT_H) \
1201         $(CODING_H) \
1202         $(CONFIG_H) \
1203         $(DISPEXTERN_H) \
1204         $(GRP_H) \
1205         $(LISP_H) \
1206         $(PROCESS_H) \
1207         $(SOCKET_H) \
1208         $(SYSTIME_H)
1210 $(BLD)/w32heap.$(O) : \
1211         $(SRC)/w32heap.c \
1212         $(SRC)/w32common.h \
1213         $(SRC)/w32heap.h \
1214         $(CONFIG_H) \
1215         $(LISP_H)
1217 $(BLD)/w32inevt.$(O) : \
1218         $(SRC)/w32inevt.c \
1219         $(SRC)/blockinput.h \
1220         $(SRC)/termchar.h \
1221         $(SRC)/w32heap.h \
1222         $(SRC)/w32inevt.h \
1223         $(CONFIG_H) \
1224         $(DISPEXTERN_H) \
1225         $(FRAME_H) \
1226         $(KEYBOARD_H) \
1227         $(LISP_H) \
1228         $(TERMHOOKS_H) \
1229         $(W32TERM_H) \
1230         $(WINDOW_H)
1232 $(BLD)/w32proc.$(O) : \
1233         $(SRC)/w32proc.c \
1234         $(SRC)/w32.h \
1235         $(SRC)/w32common.h \
1236         $(SRC)/w32heap.h \
1237         $(NT_INC)/nl_types.h \
1238         $(NT_INC)/sys/file.h \
1239         $(CODING_H) \
1240         $(CONFIG_H) \
1241         $(DISPEXTERN_H) \
1242         $(LANGINFO_H) \
1243         $(LISP_H) \
1244         $(PROCESS_H) \
1245         $(SYSSIGNAL_H) \
1246         $(SYSTIME_H) \
1247         $(SYSWAIT_H) \
1248         $(W32TERM_H)
1250 $(BLD)/w32console.$(O) : \
1251         $(SRC)/w32console.c \
1252         $(SRC)/disptab.h \
1253         $(SRC)/termchar.h \
1254         $(SRC)/w32common.h \
1255         $(SRC)/w32inevt.h \
1256         $(CHARACTER_H) \
1257         $(CODING_H) \
1258         $(CONFIG_H) \
1259         $(DISPEXTERN_H) \
1260         $(FRAME_H) \
1261         $(LISP_H) \
1262         $(TERMHOOKS_H) \
1263         $(W32TERM_H) \
1264         $(WINDOW_H)
1266 $(BLD)/print.$(O) : \
1267         $(SRC)/print.c \
1268         $(SRC)/blockinput.h \
1269         $(SRC)/termchar.h \
1270         $(BUFFER_H) \
1271         $(CHARACTER_H) \
1272         $(CHARSET_H) \
1273         $(CONFIG_H) \
1274         $(DISPEXTERN_H) \
1275         $(FONT_H) \
1276         $(FRAME_H) \
1277         $(FTOASTR_H) \
1278         $(INTERVALS_H) \
1279         $(KEYBOARD_H) \
1280         $(LISP_H) \
1281         $(PROCESS_H) \
1282         $(TERMHOOKS_H) \
1283         $(WINDOW_H)
1285 $(BLD)/process.$(O) : \
1286         $(SRC)/process.c \
1287         $(SRC)/blockinput.h \
1288         $(SRC)/commands.h \
1289         $(SRC)/composite.h \
1290         $(SRC)/gnutls.h \
1291         $(SRC)/sysselect.h \
1292         $(SRC)/termopts.h \
1293         $(NT_INC)/arpa/inet.h \
1294         $(NT_INC)/netdb.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 \
1300         $(ATIMER_H) \
1301         $(BUFFER_H) \
1302         $(CHARACTER_H) \
1303         $(CODING_H) \
1304         $(CONFIG_H) \
1305         $(C_CTYPE_H) \
1306         $(DISPEXTERN_H) \
1307         $(FRAME_H) \
1308         $(KEYBOARD_H) \
1309         $(LISP_H) \
1310         $(PROCESS_H) \
1311         $(SIG2STR_H) \
1312         $(SOCKET_H) \
1313         $(SYSSIGNAL_H) \
1314         $(SYSTIME_H) \
1315         $(SYSTTY_H) \
1316         $(SYSWAIT_H) \
1317         $(TERMHOOKS_H) \
1318         $(W32TERM_H) \
1319         $(WINDOW_H)
1321 $(BLD)/ralloc.$(O) : \
1322         $(SRC)/ralloc.c \
1323         $(SRC)/blockinput.h \
1324         $(SRC)/getpagesize.h \
1325         $(NT_INC)/unistd.h \
1326         $(CONFIG_H) \
1327         $(LISP_H)
1329 $(BLD)/regex.$(O) : \
1330         $(SRC)/regex.c \
1331         $(SRC)/category.h \
1332         $(SRC)/regex.h \
1333         $(SRC)/syntax.h \
1334         $(BUFFER_H) \
1335         $(CHARACTER_H) \
1336         $(CONFIG_H) \
1337         $(LISP_H)
1339 $(BLD)/region-cache.$(O) : \
1340         $(SRC)/region-cache.c \
1341         $(SRC)/region-cache.h \
1342         $(BUFFER_H) \
1343         $(CHARACTER_H) \
1344         $(CONFIG_H) \
1345         $(LISP_H)
1347 $(BLD)/scroll.$(O) : \
1348         $(SRC)/scroll.c \
1349         $(SRC)/termchar.h \
1350         $(CONFIG_H) \
1351         $(DISPEXTERN_H) \
1352         $(FRAME_H) \
1353         $(KEYBOARD_H) \
1354         $(LISP_H) \
1355         $(TERMHOOKS_H) \
1356         $(WINDOW_H)
1358 $(BLD)/search.$(O) : \
1359         $(SRC)/search.c \
1360         $(SRC)/blockinput.h \
1361         $(SRC)/category.h \
1362         $(SRC)/commands.h \
1363         $(SRC)/regex.h \
1364         $(SRC)/region-cache.h \
1365         $(SRC)/syntax.h \
1366         $(BUFFER_H) \
1367         $(CHARACTER_H) \
1368         $(CHARSET_H) \
1369         $(CONFIG_H) \
1370         $(INTERVALS_H) \
1371         $(LISP_H)
1373 $(BLD)/sound.$(O) : \
1374         $(SRC)/sound.c \
1375         $(NT_INC)/unistd.h \
1376         $(ATIMER_H) \
1377         $(CONFIG_H) \
1378         $(DISPEXTERN_H) \
1379         $(LISP_H) \
1380         $(SYSSIGNAL_H)
1382 $(BLD)/syntax.$(O) : \
1383         $(SRC)/syntax.c \
1384         $(SRC)/category.h \
1385         $(SRC)/commands.h \
1386         $(SRC)/keymap.h \
1387         $(SRC)/regex.h \
1388         $(SRC)/syntax.h \
1389         $(BUFFER_H) \
1390         $(CHARACTER_H) \
1391         $(CONFIG_H) \
1392         $(INTERVALS_H) \
1393         $(LISP_H)
1395 $(BLD)/sysdep.$(O) : \
1396         $(SRC)/sysdep.c \
1397         $(SRC)/blockinput.h \
1398         $(SRC)/cm.h \
1399         $(SRC)/sysselect.h \
1400         $(SRC)/termchar.h \
1401         $(SRC)/termopts.h \
1402         $(NT_INC)/netdb.h \
1403         $(NT_INC)/pwd.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 \
1410         $(CONFIG_H) \
1411         $(C_CTYPE_H) \
1412         $(DISPEXTERN_H) \
1413         $(FRAME_H) \
1414         $(GRP_H) \
1415         $(KEYBOARD_H) \
1416         $(LISP_H) \
1417         $(PROCESS_H) \
1418         $(SOCKET_H) \
1419         $(SYSSIGNAL_H) \
1420         $(SYSTIME_H) \
1421         $(SYSTTY_H) \
1422         $(SYSWAIT_H) \
1423         $(TERMHOOKS_H) \
1424         $(WINDOW_H)
1426 $(BLD)/term.$(O) : \
1427         $(SRC)/term.c \
1428         $(SRC)/blockinput.h \
1429         $(SRC)/cm.h \
1430         $(SRC)/composite.h \
1431         $(SRC)/disptab.h \
1432         $(SRC)/keymap.h \
1433         $(SRC)/termchar.h \
1434         $(SRC)/tparam.h \
1435         $(NT_INC)/sys/file.h \
1436         $(NT_INC)/sys/time.h \
1437         $(NT_INC)/unistd.h \
1438         $(BUFFER_H) \
1439         $(CHARACTER_H) \
1440         $(CHARSET_H) \
1441         $(CODING_H) \
1442         $(CONFIG_H) \
1443         $(DISPEXTERN_H) \
1444         $(FRAME_H) \
1445         $(INTERVALS_H) \
1446         $(KEYBOARD_H) \
1447         $(LISP_H) \
1448         $(SYSSIGNAL_H) \
1449         $(SYSTTY_H) \
1450         $(TERMHOOKS_H) \
1451         $(W32TERM_H) \
1452         $(WINDOW_H)
1454 $(BLD)/terminal.$(O) : \
1455         $(SRC)/terminal.c \
1456         $(SRC)/termchar.h \
1457         $(CHARSET_H) \
1458         $(CODING_H) \
1459         $(CONFIG_H) \
1460         $(FRAME_H) \
1461         $(KEYBOARD_H) \
1462         $(LISP_H) \
1463         $(TERMHOOKS_H)
1465 $(BLD)/textprop.$(O) : \
1466         $(SRC)/textprop.c \
1467         $(BUFFER_H) \
1468         $(CHARACTER_H) \
1469         $(CONFIG_H) \
1470         $(INTERVALS_H) \
1471         $(LISP_H) \
1472         $(WINDOW_H)
1474 $(BLD)/tparam.$(O) : \
1475         $(SRC)/tparam.c \
1476         $(SRC)/tparam.h \
1477         $(CONFIG_H) \
1478         $(LISP_H)
1480 $(BLD)/undo.$(O) : \
1481         $(SRC)/undo.c \
1482         $(SRC)/commands.h \
1483         $(BUFFER_H) \
1484         $(CHARACTER_H) \
1485         $(CONFIG_H) \
1486         $(LISP_H) \
1487         $(WINDOW_H)
1489 $(BLD)/unexw32.$(O) : \
1490         $(SRC)/unexw32.c \
1491         $(SRC)/unexec.h \
1492         $(SRC)/w32.h \
1493         $(SRC)/w32common.h \
1494         $(SRC)/w32heap.h \
1495         $(CONFIG_H) \
1496         $(LISP_H)
1498 $(BLD)/vm-limit.$(O) : \
1499         $(SRC)/vm-limit.c \
1500         $(SRC)/w32heap.h \
1501         $(NT_INC)/unistd.h \
1502         $(CONFIG_H) \
1503         $(LISP_H)
1505 $(BLD)/window.$(O) : \
1506         $(SRC)/window.c \
1507         $(SRC)/blockinput.h \
1508         $(SRC)/commands.h \
1509         $(SRC)/disptab.h \
1510         $(SRC)/indent.h \
1511         $(SRC)/keymap.h \
1512         $(SRC)/termchar.h \
1513         $(BUFFER_H) \
1514         $(CHARACTER_H) \
1515         $(CONFIG_H) \
1516         $(DISPEXTERN_H) \
1517         $(FRAME_H) \
1518         $(INTERVALS_H) \
1519         $(KEYBOARD_H) \
1520         $(LISP_H) \
1521         $(TERMHOOKS_H) \
1522         $(W32TERM_H) \
1523         $(WINDOW_H)
1525 $(BLD)/xdisp.$(O) : \
1526         $(SRC)/xdisp.c \
1527         $(SRC)/blockinput.h \
1528         $(SRC)/commands.h \
1529         $(SRC)/disptab.h \
1530         $(SRC)/fontset.h \
1531         $(SRC)/indent.h \
1532         $(SRC)/keymap.h \
1533         $(SRC)/macros.h \
1534         $(SRC)/region-cache.h \
1535         $(SRC)/termchar.h \
1536         $(SRC)/termopts.h \
1537         $(ATIMER_H) \
1538         $(BUFFER_H) \
1539         $(CHARACTER_H) \
1540         $(CHARSET_H) \
1541         $(CODING_H) \
1542         $(CONFIG_H) \
1543         $(DISPEXTERN_H) \
1544         $(FONT_H) \
1545         $(FRAME_H) \
1546         $(INTERVALS_H) \
1547         $(KEYBOARD_H) \
1548         $(LISP_H) \
1549         $(PROCESS_H) \
1550         $(TERMHOOKS_H) \
1551         $(W32TERM_H) \
1552         $(WINDOW_H)
1554 $(BLD)/xfaces.$(O) : \
1555         $(SRC)/xfaces.c \
1556         $(SRC)/blockinput.h \
1557         $(SRC)/fontset.h \
1558         $(SRC)/termchar.h \
1559         $(NT_INC)/sys/stat.h \
1560         $(BUFFER_H) \
1561         $(CHARACTER_H) \
1562         $(CHARSET_H) \
1563         $(CONFIG_H) \
1564         $(C_CTYPE_H) \
1565         $(DISPEXTERN_H) \
1566         $(FONT_H) \
1567         $(FRAME_H) \
1568         $(INTERVALS_H) \
1569         $(KEYBOARD_H) \
1570         $(LISP_H) \
1571         $(TERMHOOKS_H) \
1572         $(W32TERM_H) \
1573         $(WINDOW_H)
1575 $(BLD)/w32fns.$(O) : \
1576         $(SRC)/w32fns.c \
1577         $(SRC)/blockinput.h \
1578         $(SRC)/epaths.h \
1579         $(SRC)/fontset.h \
1580         $(SRC)/w32.h \
1581         $(SRC)/w32common.h \
1582         $(SRC)/w32heap.h \
1583         $(NT_INC)/unistd.h \
1584         $(BUFFER_H) \
1585         $(CCL_H) \
1586         $(CHARACTER_H) \
1587         $(CHARSET_H) \
1588         $(CODING_H) \
1589         $(CONFIG_H) \
1590         $(DISPEXTERN_H) \
1591         $(FONT_H) \
1592         $(FRAME_H) \
1593         $(INTERVALS_H) \
1594         $(KEYBOARD_H) \
1595         $(LISP_H) \
1596         $(SYSTIME_H) \
1597         $(TERMHOOKS_H) \
1598         $(W32FONT_H) \
1599         $(W32TERM_H) \
1600         $(WINDOW_H)
1602 $(BLD)/w32menu.$(O) : \
1603         $(SRC)/w32menu.c \
1604         $(SRC)/blockinput.h \
1605         $(SRC)/keymap.h \
1606         $(SRC)/w32common.h \
1607         $(BUFFER_H) \
1608         $(CHARACTER_H) \
1609         $(CHARSET_H) \
1610         $(CODING_H) \
1611         $(CONFIG_H) \
1612         $(DISPEXTERN_H) \
1613         $(FRAME_H) \
1614         $(KEYBOARD_H) \
1615         $(LISP_H) \
1616         $(MENU_H) \
1617         $(TERMHOOKS_H) \
1618         $(W32TERM_H) \
1619         $(WINDOW_H)
1621 $(BLD)/w32term.$(O) : \
1622         $(SRC)/w32term.c \
1623         $(SRC)/blockinput.h \
1624         $(SRC)/disptab.h \
1625         $(SRC)/fontset.h \
1626         $(SRC)/keymap.h \
1627         $(SRC)/termchar.h \
1628         $(SRC)/termopts.h \
1629         $(SRC)/w32heap.h \
1630         $(NT_INC)/sys/stat.h \
1631         $(ATIMER_H) \
1632         $(BUFFER_H) \
1633         $(CCL_H) \
1634         $(CHARACTER_H) \
1635         $(CHARSET_H) \
1636         $(CODING_H) \
1637         $(CONFIG_H) \
1638         $(DISPEXTERN_H) \
1639         $(FONT_H) \
1640         $(FRAME_H) \
1641         $(INTERVALS_H) \
1642         $(KEYBOARD_H) \
1643         $(LISP_H) \
1644         $(PROCESS_H) \
1645         $(SYSTIME_H) \
1646         $(SYSTTY_H) \
1647         $(TERMHOOKS_H) \
1648         $(W32FONT_H) \
1649         $(W32TERM_H) \
1650         $(WINDOW_H)
1652 $(BLD)/w32select.$(O) : \
1653         $(SRC)/w32select.c \
1654         $(SRC)/blockinput.h \
1655         $(SRC)/composite.h \
1656         $(SRC)/w32common.h \
1657         $(CHARSET_H) \
1658         $(CODING_H) \
1659         $(CONFIG_H) \
1660         $(KEYBOARD_H) \
1661         $(LISP_H) \
1662         $(W32TERM_H)
1664 $(BLD)/w32reg.$(O) : \
1665         $(SRC)/w32reg.c \
1666         $(SRC)/blockinput.h \
1667         $(CONFIG_H) \
1668         $(LISP_H) \
1669         $(W32TERM_H)
1671 $(BLD)/w32xfns.$(O) : \
1672         $(SRC)/w32xfns.c \
1673         $(SRC)/blockinput.h \
1674         $(SRC)/fontset.h \
1675         $(CHARSET_H) \
1676         $(CONFIG_H) \
1677         $(FRAME_H) \
1678         $(KEYBOARD_H) \
1679         $(LISP_H) \
1680         $(W32TERM_H)
1682 $(BLD)/w32font.$(O) : \
1683         $(SRC)/w32font.c \
1684         $(SRC)/fontset.h \
1685         $(CHARACTER_H) \
1686         $(CHARSET_H) \
1687         $(CODING_H) \
1688         $(CONFIG_H) \
1689         $(DISPEXTERN_H) \
1690         $(FONT_H) \
1691         $(FRAME_H) \
1692         $(LISP_H) \
1693         $(W32FONT_H) \
1694         $(W32TERM_H)
1696 $(BLD)/w32uniscribe.$(O) : \
1697         $(SRC)/w32uniscribe.c \
1698         $(SRC)/composite.h \
1699         $(SRC)/fontset.h \
1700         $(CHARACTER_H) \
1701         $(CHARSET_H) \
1702         $(CONFIG_H) \
1703         $(DISPEXTERN_H) \
1704         $(FONT_H) \
1705         $(FRAME_H) \
1706         $(LISP_H) \
1707         $(W32FONT_H) \
1708         $(W32TERM_H)
1710 $(BLD)/w32notify.$(O) : \
1711         $(SRC)/w32notify.c \
1712         $(SRC)/w32.h \
1713         $(SRC)/w32common.h \
1714         $(CODING_H) \
1715         $(CONFIG_H) \
1716         $(FRAME_H) \
1717         $(KEYBOARD_H) \
1718         $(LISP_H) \
1719         $(TERMHOOKS_H) \
1720         $(W32TERM_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