* process.h (PSET): Remove.
[emacs.git] / src / makefile.w32-in
blob9c13f561a045cb407b829909174a95e70ac86ad4
1 # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
2 # Copyright (C) 2000-2012  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 = 27
30 LOCAL_FLAGS     = -Demacs=1 -I../lib -I../nt/inc -DHAVE_NTGUI=1 $(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-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)               \
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)/w32term.$(O)             \
129         $(BLD)/w32xfns.$(O)             \
130         $(BLD)/w32fns.$(O)              \
131         $(BLD)/xfaces.$(O)              \
132         $(BLD)/w32select.$(O)           \
133         $(BLD)/w32menu.$(O)             \
134         $(BLD)/w32reg.$(O)              \
135         $(BLD)/w32font.$(O)             \
136         $(BLD)/w32uniscribe.$(O)
138 LIBS =  $(TLIB0)        \
139         $(TLIB1)        \
140         $(TLIB2)        \
141         $(TLASTLIB)     \
142         $(GNULIB)       \
143         $(WINMM)        \
144         $(ADVAPI32)     \
145         $(GDI32)        \
146         $(COMDLG32)     \
147         $(USER32)       \
148         $(MPR)          \
149         $(SHELL32)      \
150         $(WINSPOOL)     \
151         $(OLE32)        \
152         $(COMCTL32)     \
153         $(UNISCRIBE)    \
154         $(USER_LIBS)    \
155         $(libc)
158 # Build the executable and dump it.
160 all:            $(ALL)
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" -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) $(TLIB2) $(TLASTLIB) $(TOBJ) $(TRES) \
178                   ../nt/$(BLD)/addsection.exe $(GNULIB)
179         $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
180         "$(THISDIR)/../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP $(HEAPSIZE)
182 # These omit firstfile.${O}, but there's no documentation in there
183 # anyways.
184 buildobj.h: $(SRC)/makefile.w32-in
185         $(MAKE) $(MFLAGS) make-buildobj-$(SHELLTYPE)
187 # Cannot have blanks between the backslash and the redirection
188 # characters, because CMD's `echo' will put them in buildobj.h.
189 make-buildobj-CMD:
190         echo #define BUILDOBJ ^"\> buildobj.h
191         echo $(OBJ0)            \>> buildobj.h
192         echo $(OBJ1)            \>> buildobj.h
193         echo $(OBJ2)            \>> buildobj.h
194         echo ^">> buildobj.h
196 # "
197 # The above line is here to countermand the single quote
198 # on the last "echo" command above, wrt font-lock.
199 make-buildobj-SH:
200         echo '#define BUILDOBJ $(DQUOTE)\'  > buildobj.h
201         echo $(OBJ0)                   '\' >> buildobj.h
202         echo $(OBJ1)                   '\' >> buildobj.h
203         echo $(OBJ2)                   '\' >> buildobj.h
204         echo '$(DQUOTE)'                   >> buildobj.h
206 GLOBAL_SOURCES =   dosfns.c msdos.c \
207         xterm.c xfns.c xmenu.c xselect.c xrdb.c xsmfns.c fringe.c image.c \
208         fontset.c menu.c dbusbind.c \
209         w32.c w32console.c w32fns.c w32heap.c w32inevt.c \
210         w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \
211         font.c w32font.c w32uniscribe.c \
212         dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \
213         charset.c coding.c category.c ccl.c character.c chartab.c \
214         cm.c term.c terminal.c xfaces.c \
215         emacs.c keyboard.c macros.c keymap.c sysdep.c \
216         buffer.c filelock.c insdel.c marker.c \
217         minibuf.c fileio.c dired.c \
218         cmds.c casetab.c casefiddle.c indent.c search.c regex.c undo.c \
219         alloc.c data.c doc.c editfns.c callint.c \
220         eval.c floatfns.c fns.c print.c lread.c \
221         syntax.c bytecode.c \
222         process.c callproc.c unexw32.c \
223         region-cache.c sound.c atimer.c \
224         doprnt.c intervals.c textprop.c composite.c \
225         gnutls.c xml.c
226 SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
227         xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o dbusbind.o
228 obj = $(GLOBAL_SOURCES:.c=.o)
230 globals.h: gl-stamp
231         @cmd /c rem true
233 gl-stamp: ../lib-src/$(BLD)/make-docfile.exe $(GLOBAL_SOURCES)
234         - $(DEL) gl-tmp
235         "$(THISDIR)/../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp
236         cmd /c "fc /b gl-tmp globals.h >nul 2>&1 || $(CP) gl-tmp globals.h"
237         - $(DEL) gl-tmp
238         echo timestamp > $@
240 bootstrap: bootstrap-emacs
243 # Build a temacs with a sufficiently large PURESIZE to load the
244 # Lisp files from loadup.el in source form.
246 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
247 #          this can break with GNU Make 3.81 and later if sh.exe is used.
248 bootstrap-temacs-CMD:
249         $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(ESC_CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
251 bootstrap-temacs-SH:
252         $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
254 bootstrap-temacs:
255         $(MAKE) $(MFLAGS) bootstrap-temacs-$(SHELLTYPE)
258 # Dump an Emacs executable named bootstrap-emacs containing the
259 # files from loadup.el in source form.
261 bootstrap-emacs: bootstrap-temacs
262         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
263         - mkdir "../bin"
264         $(CP) $(EMACS) ../bin
267 # Force recompile of files that depend on PURESIZE
269 bootstrap-clean:
270         - $(DEL) $(BLD)/alloc.$(O)
271         - $(DEL) $(BLD)/data.$(O)
272         - $(DEL) $(BLD)/intervals.$(O)
273         - $(DEL) $(BLD)/keyboard.$(O)
274         - $(DEL) $(BLD)/keymap.$(O)
277 # The resource file.  NT 3.10 requires the use of cvtres; even though
278 # it is not necessary on later versions, it is still ok to use it.
280 $(TRES): ../nt/emacs.rc stamp_BLD
281         $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
284 # Build the library.  Split up the build into two phases...otherwise we
285 # run out of command line space.
287 $(TLIB0):       $(OBJ0)
288         - $(DEL) $@
289         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
290 $(TLIB1):       $(OBJ1)
291         - $(DEL) $@
292         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
293 $(TLIB2):       $(OBJ2)
294         - $(DEL) $@
295         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
298 # Place lastfile.$(O) in its own library so that it can be loaded after
299 # the source libraries but before any system libraries.  Doing so defines
300 # the end of Emacs' data section portably across compilers and systems.
302 $(TLASTLIB):    $(BLD)/lastfile.$(O)
303         - $(DEL) $@
304         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
307 # Assuming INSTALL_DIR is defined, build and install emacs in it.
309 install:        $(ALL)
310         - mkdir "$(INSTALL_DIR)/bin"
311         $(CP) $(EMACS) $(INSTALL_DIR)/bin
314 # Maintenance
316 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
317 # remove precious files if it happens to match their short 8+3 aliases.
318 clean:
319         - $(DEL) "s/*.h~" "m/*.h~"
320         - $(DEL) $(COMPILER_TEMP_FILES)
321         - $(DEL_TREE) $(OBJDIR)
322         - $(DEL) stamp_BLD gl-stamp globals.h
323         - $(DEL) buildobj.h
325 distclean:      cleanall
326         - $(DEL) config.h epaths.h Makefile
328 maintainer-clean: distclean
329         - $(DEL) TAGS
331 cleanall:       clean
332         - $(DEL_TREE) obj
333         - $(DEL_TREE) obj-spd
334         - $(DEL_TREE) oo
335         - $(DEL_TREE) oo-spd
337 ## Arrange to make a tags table TAGS-LISP for ../lisp,
338 ## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
340 ## This works only with GNU Make.
342 TAGS: $(OBJ0) $(OBJ1) $(OBJ2) $(CURDIR)/../nt/inc/ms-w32.h
343         $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE)
345 TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2)
346         $(MAKE) $(MFLAGS) TAGS-LISP-$(MAKETYPE)
348 TAGS-gmake:
349         ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \
350           --regex=@../nt/emacs-src.tags \
351           $(OBJ0_c)
352         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
353           $(OBJ1_c)
354         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
355           $(OBJ2_c) \
356           $(CURDIR)/*.h $(CURDIR)/../nt/inc/ms-w32.h
358 TAGS-nmake:
359         echo This target is not supported with NMake
360         exit -1
362 frc:
363 TAGS-LISP-gmake: frc
364         $(MAKE) $(MFLAGS) -C ../lisp TAGS-LISP DEST=../src
366 TAGS-LISP-nmake:
367         echo This target is not supported with NMake
368         exit -1
370 ../nt/TAGS: frc
371         $(MAKE) $(MFLAGS) nt-TAGS-$(MAKETYPE)
373 nt-TAGS-gmake:
374         $(MAKE) $(MFLAGS) -C ../nt TAGS
376 nt-TAGS-nmake:
377         echo This target is not supported with NMake
378         exit -1
380 full-tags: TAGS TAGS-LISP ../nt/TAGS
381 .PHONY: full-tags
383 ### DEPENDENCIES ###
385 EMACS_ROOT = ..
386 GNU_LIB = $(EMACS_ROOT)/lib
387 NT_INC = $(EMACS_ROOT)/nt/inc
389 SYSTIME_H      = $(SRC)/systime.h \
390                  $(NT_INC)/sys/time.h \
391                  $(GNU_LIB)/timespec.h
392 ATIMER_H       = $(SRC)/atimer.h \
393                  $(SYSTIME_H)
394 BLOCKINPUT_H   = $(SRC)/blockinput.h \
395                  $(ATIMER_H)
396 BUFFER_H       = $(SRC)/buffer.h \
397                  $(SYSTIME_H)
398 C_CTYPE_H      = $(GNU_LIB)/c-ctype.h \
399                  $(NT_INC)/stdbool.h
400 CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
401                  $(NT_INC)/unistd.h
402 CHARACTER_H    = $(SRC)/character.h \
403                  $(GNU_LIB)/verify.h
404 CHARSET_H      = $(SRC)/charset.h \
405                  $(GNU_LIB)/verify.h
406 CODING_H       = $(SRC)/coding.h \
407                  $(SRC)/composite.h
408 MS_W32_H       = $(NT_INC)/ms-w32.h \
409                  $(NT_INC)/sys/stat.h
410 CONF_POST_H    = $(SRC)/conf_post.h \
411                  $(MS_W32_H)
412 CONFIG_H       = $(SRC)/config.h \
413                  $(CONF_POST_H)
414 DIR_H          = $(NT_INC)/sys/dir.h \
415                  $(SRC)/ndir.h
416 W32GUI_H       = $(SRC)/w32gui.h \
417                  $(SYSTIME_H)
418 DISPEXTERN_H   = $(SRC)/dispextern.h \
419                  $(GNU_LIB)/c-strcase.h \
420                  $(SYSTIME_H) \
421                  $(W32GUI_H)
422 FILEMODE_H     = $(GNU_LIB)/filemode.h \
423                  $(NT_INC)/sys/stat.h
424 FONT_H         = $(SRC)/font.h \
425                  $(SRC)/ccl.h
426 FRAME_H        = $(SRC)/frame.h \
427                  $(DISPEXTERN_H)
428 FTOASTR_H      = $(GNU_LIB)/ftoastr.h \
429                  $(GNU_LIB)/intprops.h
430 GRP_H          = $(NT_INC)/grp.h \
431                  $(NT_INC)/pwd.h
432 INTERVALS_H    = $(SRC)/intervals.h \
433                  $(SRC)/composite.h \
434                  $(DISPEXTERN_H)
435 INTTYPES_H     = $(NT_INC)/inttypes.h \
436                  $(NT_INC)/stdint.h
437 KEYBOARD_H     = $(SRC)/keyboard.h \
438                  $(CODING_H) \
439                  $(SYSTIME_H)
440 LANGINFO_H     = $(NT_INC)/langinfo.h \
441                  $(NT_INC)/nl_types.h
442 LISP_H         = $(SRC)/lisp.h \
443                  $(SRC)/globals.h \
444                  $(GNU_LIB)/intprops.h \
445                  $(INTTYPES_H) \
446                  $(NT_INC)/stdalign.h \
447                  $(NT_INC)/stdbool.h
448 MD5_H          = $(GNU_LIB)/md5.h \
449                  $(NT_INC)/stdint.h
450 MENU_H         = $(SRC)/menu.h \
451                  $(SYSTIME_H)
452 PROCESS_H      = $(SRC)/process.h \
453                  $(SRC)/gnutls.h \
454                  $(NT_INC)/unistd.h
455 SHA1_H         = $(GNU_LIB)/sha1.h \
456                  $(NT_INC)/stdint.h
457 SHA256_H       = $(GNU_LIB)/sha256.h \
458                  $(NT_INC)/stdint.h
459 U64_H          = $(GNU_LIB)/u64.h \
460                  $(NT_INC)/stdint.h
461 SHA512_H       = $(GNU_LIB)/sha512.h \
462                  $(U64_H)
463 SOCKET_H       = $(NT_INC)/sys/socket.h \
464                  $(SRC)/w32.h
465 STAT_TIME_H    = $(GNU_LIB)/stat-time.h \
466                  $(NT_INC)/sys/stat.h
467 SYSTTY_H       = $(SRC)/systty.h \
468                  $(NT_INC)/sys/ioctl.h \
469                  $(NT_INC)/unistd.h
470 TERMHOOKS_H    = $(SRC)/termhooks.h \
471                  $(SYSTIME_H)
472 W32TERM_H      = $(SRC)/w32term.h \
473                  $(W32GUI_H)
474 WINDOW_H       = $(SRC)/window.h \
475                  $(DISPEXTERN_H)
477 $(BLD)/alloc.$(O) : \
478         $(SRC)/alloc.c \
479         $(SRC)/puresize.h \
480         $(SRC)/syssignal.h \
481         $(SRC)/w32.h \
482         $(NT_INC)/unistd.h \
483         $(GNU_LIB)/verify.h \
484         $(BLOCKINPUT_H) \
485         $(BUFFER_H) \
486         $(CHARACTER_H) \
487         $(CONFIG_H) \
488         $(FRAME_H) \
489         $(INTERVALS_H) \
490         $(KEYBOARD_H) \
491         $(LISP_H) \
492         $(PROCESS_H) \
493         $(TERMHOOKS_H) \
494         $(WINDOW_H)
496 $(BLD)/atimer.$(O) : \
497         $(SRC)/atimer.c \
498         $(SRC)/syssignal.h \
499         $(NT_INC)/unistd.h \
500         $(ATIMER_H) \
501         $(BLOCKINPUT_H) \
502         $(CONFIG_H) \
503         $(LISP_H) \
504         $(SYSTIME_H)
506 $(BLD)/bidi.$(O) : \
507         $(SRC)/bidi.c \
508         $(BUFFER_H) \
509         $(CHARACTER_H) \
510         $(CONFIG_H) \
511         $(DISPEXTERN_H) \
512         $(LISP_H)
514 $(BLD)/buffer.$(O) : \
515         $(SRC)/buffer.c \
516         $(SRC)/commands.h \
517         $(SRC)/indent.h \
518         $(SRC)/keymap.h \
519         $(SRC)/region-cache.h \
520         $(NT_INC)/sys/param.h \
521         $(NT_INC)/sys/stat.h \
522         $(NT_INC)/unistd.h \
523         $(GNU_LIB)/verify.h \
524         $(BLOCKINPUT_H) \
525         $(BUFFER_H) \
526         $(CHARACTER_H) \
527         $(CONFIG_H) \
528         $(FRAME_H) \
529         $(INTERVALS_H) \
530         $(KEYBOARD_H) \
531         $(LISP_H) \
532         $(WINDOW_H)
534 $(BLD)/bytecode.$(O) : \
535         $(SRC)/bytecode.c \
536         $(SRC)/syntax.h \
537         $(BUFFER_H) \
538         $(CHARACTER_H) \
539         $(CONFIG_H) \
540         $(LISP_H) \
541         $(WINDOW_H)
543 $(BLD)/callint.$(O) : \
544         $(SRC)/callint.c \
545         $(SRC)/commands.h \
546         $(SRC)/keymap.h \
547         $(BUFFER_H) \
548         $(CHARACTER_H) \
549         $(CONFIG_H) \
550         $(KEYBOARD_H) \
551         $(LISP_H) \
552         $(WINDOW_H)
554 $(BLD)/callproc.$(O) : \
555         $(SRC)/callproc.c \
556         $(SRC)/ccl.h \
557         $(SRC)/commands.h \
558         $(SRC)/composite.h \
559         $(SRC)/epaths.h \
560         $(SRC)/syssignal.h \
561         $(SRC)/w32.h \
562         $(NT_INC)/sys/file.h \
563         $(NT_INC)/unistd.h \
564         $(BLOCKINPUT_H) \
565         $(BUFFER_H) \
566         $(CHARACTER_H) \
567         $(CODING_H) \
568         $(CONFIG_H) \
569         $(FRAME_H) \
570         $(LISP_H) \
571         $(PROCESS_H) \
572         $(SYSTTY_H) \
573         $(TERMHOOKS_H)
575 $(BLD)/casefiddle.$(O) : \
576         $(SRC)/casefiddle.c \
577         $(SRC)/commands.h \
578         $(SRC)/composite.h \
579         $(SRC)/keymap.h \
580         $(SRC)/syntax.h \
581         $(BUFFER_H) \
582         $(CHARACTER_H) \
583         $(CONFIG_H) \
584         $(LISP_H)
586 $(BLD)/casetab.$(O) : \
587         $(SRC)/casetab.c \
588         $(BUFFER_H) \
589         $(CHARACTER_H) \
590         $(CONFIG_H) \
591         $(LISP_H)
593 $(BLD)/category.$(O) : \
594         $(SRC)/category.c \
595         $(SRC)/category.h \
596         $(SRC)/keymap.h \
597         $(BUFFER_H) \
598         $(CHARACTER_H) \
599         $(CHARSET_H) \
600         $(CONFIG_H) \
601         $(LISP_H)
603 $(BLD)/ccl.$(O) : \
604         $(SRC)/ccl.c \
605         $(SRC)/ccl.h \
606         $(CHARACTER_H) \
607         $(CHARSET_H) \
608         $(CODING_H) \
609         $(CONFIG_H) \
610         $(LISP_H)
612 $(BLD)/character.$(O) : \
613         $(SRC)/character.c \
614         $(SRC)/composite.h \
615         $(SRC)/disptab.h \
616         $(GNU_LIB)/intprops.h \
617         $(BUFFER_H) \
618         $(CHARACTER_H) \
619         $(CHARSET_H) \
620         $(CONFIG_H) \
621         $(LISP_H)
623 $(BLD)/charset.$(O) : \
624         $(SRC)/charset.c \
625         $(SRC)/disptab.h \
626         $(NT_INC)/unistd.h \
627         $(BUFFER_H) \
628         $(CHARACTER_H) \
629         $(CHARSET_H) \
630         $(CODING_H) \
631         $(CONFIG_H) \
632         $(C_CTYPE_H) \
633         $(LISP_H)
635 $(BLD)/chartab.$(O) : \
636         $(SRC)/chartab.c \
637         $(SRC)/ccl.h \
638         $(CHARACTER_H) \
639         $(CHARSET_H) \
640         $(CONFIG_H) \
641         $(LISP_H)
643 $(BLD)/cmds.$(O) : \
644         $(SRC)/cmds.c \
645         $(SRC)/commands.h \
646         $(SRC)/keymap.h \
647         $(SRC)/syntax.h \
648         $(BUFFER_H) \
649         $(CHARACTER_H) \
650         $(CONFIG_H) \
651         $(DISPEXTERN_H) \
652         $(FRAME_H) \
653         $(KEYBOARD_H) \
654         $(LISP_H) \
655         $(WINDOW_H)
657 $(BLD)/coding.$(O) : \
658         $(SRC)/coding.c \
659         $(SRC)/ccl.h \
660         $(SRC)/composite.h \
661         $(BUFFER_H) \
662         $(CHARACTER_H) \
663         $(CHARSET_H) \
664         $(CODING_H) \
665         $(CONFIG_H) \
666         $(FRAME_H) \
667         $(LISP_H) \
668         $(TERMHOOKS_H) \
669         $(WINDOW_H)
671 $(BLD)/composite.$(O) : \
672         $(SRC)/composite.c \
673         $(BUFFER_H) \
674         $(CHARACTER_H) \
675         $(CODING_H) \
676         $(CONFIG_H) \
677         $(DISPEXTERN_H) \
678         $(FONT_H) \
679         $(FRAME_H) \
680         $(INTERVALS_H) \
681         $(LISP_H) \
682         $(TERMHOOKS_H) \
683         $(WINDOW_H)
685 $(BLD)/data.$(O) : \
686         $(SRC)/data.c \
687         $(SRC)/keymap.h \
688         $(SRC)/puresize.h \
689         $(SRC)/syssignal.h \
690         $(GNU_LIB)/intprops.h \
691         $(BUFFER_H) \
692         $(CHARACTER_H) \
693         $(CONFIG_H) \
694         $(FONT_H) \
695         $(FRAME_H) \
696         $(KEYBOARD_H) \
697         $(LISP_H) \
698         $(TERMHOOKS_H)
700 $(BLD)/dired.$(O) : \
701         $(SRC)/dired.c \
702         $(SRC)/commands.h \
703         $(SRC)/regex.h \
704         $(NT_INC)/pwd.h \
705         $(NT_INC)/sys/stat.h \
706         $(NT_INC)/unistd.h \
707         $(BLOCKINPUT_H) \
708         $(BUFFER_H) \
709         $(CHARACTER_H) \
710         $(CHARSET_H) \
711         $(CODING_H) \
712         $(CONFIG_H) \
713         $(DIR_H) \
714         $(FILEMODE_H) \
715         $(GRP_H) \
716         $(LISP_H) \
717         $(STAT_TIME_H) \
718         $(SYSTIME_H)
720 $(BLD)/dispnew.$(O) : \
721         $(SRC)/dispnew.c \
722         $(SRC)/cm.h \
723         $(SRC)/commands.h \
724         $(SRC)/disptab.h \
725         $(SRC)/indent.h \
726         $(SRC)/syssignal.h \
727         $(SRC)/termchar.h \
728         $(SRC)/termopts.h \
729         $(NT_INC)/unistd.h \
730         $(BLOCKINPUT_H) \
731         $(BUFFER_H) \
732         $(CHARACTER_H) \
733         $(CONFIG_H) \
734         $(DISPEXTERN_H) \
735         $(FRAME_H) \
736         $(INTERVALS_H) \
737         $(KEYBOARD_H) \
738         $(LISP_H) \
739         $(PROCESS_H) \
740         $(SYSTIME_H) \
741         $(TERMHOOKS_H) \
742         $(W32TERM_H) \
743         $(WINDOW_H)
745 $(BLD)/doc.$(O) : \
746         $(SRC)/doc.c \
747         $(SRC)/buildobj.h \
748         $(SRC)/keymap.h \
749         $(NT_INC)/sys/file.h \
750         $(NT_INC)/unistd.h \
751         $(BUFFER_H) \
752         $(CHARACTER_H) \
753         $(CONFIG_H) \
754         $(C_CTYPE_H) \
755         $(KEYBOARD_H) \
756         $(LISP_H)
758 $(BLD)/doprnt.$(O) : \
759         $(SRC)/doprnt.c \
760         $(NT_INC)/unistd.h \
761         $(CHARACTER_H) \
762         $(CONFIG_H) \
763         $(LISP_H)
765 $(BLD)/editfns.$(O) : \
766         $(SRC)/editfns.c \
767         $(NT_INC)/pwd.h \
768         $(NT_INC)/unistd.h \
769         $(GNU_LIB)/intprops.h \
770         $(GNU_LIB)/strftime.h \
771         $(GNU_LIB)/verify.h \
772         $(BLOCKINPUT_H) \
773         $(BUFFER_H) \
774         $(CHARACTER_H) \
775         $(CODING_H) \
776         $(CONFIG_H) \
777         $(FRAME_H) \
778         $(INTERVALS_H) \
779         $(LISP_H) \
780         $(SYSTIME_H) \
781         $(WINDOW_H)
783 $(BLD)/emacs.$(O) : \
784         $(SRC)/emacs.c \
785         $(SRC)/commands.h \
786         $(SRC)/gnutls.h \
787         $(SRC)/keymap.h \
788         $(SRC)/syssignal.h \
789         $(SRC)/unexec.h \
790         $(SRC)/w32.h \
791         $(SRC)/w32heap.h \
792         $(NT_INC)/sys/file.h \
793         $(NT_INC)/unistd.h \
794         $(BLOCKINPUT_H) \
795         $(BUFFER_H) \
796         $(CHARACTER_H) \
797         $(CONFIG_H) \
798         $(FRAME_H) \
799         $(INTERVALS_H) \
800         $(KEYBOARD_H) \
801         $(LISP_H) \
802         $(PROCESS_H) \
803         $(SYSTTY_H) \
804         $(TERMHOOKS_H) \
805         $(WINDOW_H)
807 $(BLD)/eval.$(O) : \
808         $(SRC)/eval.c \
809         $(SRC)/commands.h \
810         $(BLOCKINPUT_H) \
811         $(CONFIG_H) \
812         $(DISPEXTERN_H) \
813         $(FRAME_H) \
814         $(KEYBOARD_H) \
815         $(LISP_H)
817 $(BLD)/fileio.$(O) : \
818         $(SRC)/fileio.c \
819         $(SRC)/commands.h \
820         $(NT_INC)/pwd.h \
821         $(NT_INC)/sys/stat.h \
822         $(NT_INC)/unistd.h \
823         $(BLOCKINPUT_H) \
824         $(BUFFER_H) \
825         $(CHARACTER_H) \
826         $(CODING_H) \
827         $(CONFIG_H) \
828         $(C_CTYPE_H) \
829         $(DISPEXTERN_H) \
830         $(FRAME_H) \
831         $(INTERVALS_H) \
832         $(LISP_H) \
833         $(STAT_TIME_H) \
834         $(SYSTIME_H) \
835         $(WINDOW_H)
837 $(BLD)/filelock.$(O) : \
838         $(SRC)/filelock.c \
839         $(NT_INC)/pwd.h \
840         $(NT_INC)/sys/file.h \
841         $(NT_INC)/sys/stat.h \
842         $(NT_INC)/unistd.h \
843         $(BUFFER_H) \
844         $(CHARACTER_H) \
845         $(CODING_H) \
846         $(CONFIG_H) \
847         $(LISP_H) \
848         $(SYSTIME_H)
850 $(BLD)/firstfile.$(O) : \
851         $(SRC)/firstfile.c \
852         $(CONFIG_H)
854 $(BLD)/floatfns.$(O) : \
855         $(SRC)/floatfns.c \
856         $(SRC)/syssignal.h \
857         $(CONFIG_H) \
858         $(LISP_H)
860 $(BLD)/fns.$(O) : \
861         $(SRC)/fns.c \
862         $(SRC)/commands.h \
863         $(SRC)/keymap.h \
864         $(NT_INC)/unistd.h \
865         $(GNU_LIB)/intprops.h \
866         $(BLOCKINPUT_H) \
867         $(BUFFER_H) \
868         $(CHARACTER_H) \
869         $(CODING_H) \
870         $(CONFIG_H) \
871         $(FRAME_H) \
872         $(INTERVALS_H) \
873         $(KEYBOARD_H) \
874         $(LANGINFO_H) \
875         $(LISP_H) \
876         $(MD5_H) \
877         $(SHA1_H) \
878         $(SHA256_H) \
879         $(SHA512_H) \
880         $(WINDOW_H)
882 $(BLD)/font.$(O) : \
883         $(SRC)/font.c \
884         $(SRC)/composite.h \
885         $(SRC)/fontset.h \
886         $(BUFFER_H) \
887         $(CHARACTER_H) \
888         $(CHARSET_H) \
889         $(CONFIG_H) \
890         $(C_CTYPE_H) \
891         $(DISPEXTERN_H) \
892         $(FONT_H) \
893         $(FRAME_H) \
894         $(LISP_H) \
895         $(W32TERM_H) \
896         $(WINDOW_H)
898 $(BLD)/fontset.$(O) : \
899         $(SRC)/fontset.c \
900         $(SRC)/ccl.h \
901         $(SRC)/fontset.h \
902         $(BLOCKINPUT_H) \
903         $(BUFFER_H) \
904         $(CHARACTER_H) \
905         $(CHARSET_H) \
906         $(CONFIG_H) \
907         $(DISPEXTERN_H) \
908         $(FONT_H) \
909         $(FRAME_H) \
910         $(INTERVALS_H) \
911         $(KEYBOARD_H) \
912         $(LISP_H) \
913         $(TERMHOOKS_H) \
914         $(W32TERM_H) \
915         $(WINDOW_H)
917 $(BLD)/frame.$(O) : \
918         $(SRC)/frame.c \
919         $(SRC)/commands.h \
920         $(SRC)/fontset.h \
921         $(SRC)/termchar.h \
922         $(BLOCKINPUT_H) \
923         $(BUFFER_H) \
924         $(CHARACTER_H) \
925         $(CONFIG_H) \
926         $(C_CTYPE_H) \
927         $(DISPEXTERN_H) \
928         $(FONT_H) \
929         $(FRAME_H) \
930         $(KEYBOARD_H) \
931         $(LISP_H) \
932         $(TERMHOOKS_H) \
933         $(W32TERM_H) \
934         $(WINDOW_H)
936 $(BLD)/fringe.$(O) : \
937         $(SRC)/fringe.c \
938         $(BLOCKINPUT_H) \
939         $(BUFFER_H) \
940         $(CHARACTER_H) \
941         $(CONFIG_H) \
942         $(DISPEXTERN_H) \
943         $(FRAME_H) \
944         $(LISP_H) \
945         $(TERMHOOKS_H) \
946         $(WINDOW_H)
948 $(BLD)/gmalloc.$(O) : \
949         $(SRC)/gmalloc.c \
950         $(NT_INC)/stdint.h \
951         $(NT_INC)/unistd.h \
952         $(CONFIG_H)
954 $(BLD)/gnutls.$(O) : \
955         $(SRC)/gnutls.c \
956         $(SRC)/w32.h \
957         $(CONFIG_H) \
958         $(LISP_H) \
959         $(PROCESS_H)
961 $(BLD)/xml.$(O) : \
962         $(SRC)/xml.c \
963         $(SRC)/w32.h \
964         $(BUFFER_H) \
965         $(CHARACTER_H) \
966         $(CONFIG_H) \
967         $(LISP_H)
969 $(BLD)/image.$(O) : \
970         $(SRC)/image.c \
971         $(SRC)/epaths.h \
972         $(SRC)/w32.h \
973         $(NT_INC)/unistd.h \
974         $(BLOCKINPUT_H) \
975         $(CHARACTER_H) \
976         $(CODING_H) \
977         $(CONFIG_H) \
978         $(C_CTYPE_H) \
979         $(DISPEXTERN_H) \
980         $(FONT_H) \
981         $(FRAME_H) \
982         $(LISP_H) \
983         $(SYSTIME_H) \
984         $(TERMHOOKS_H) \
985         $(W32TERM_H) \
986         $(WINDOW_H)
988 $(BLD)/indent.$(O) : \
989         $(SRC)/indent.c \
990         $(SRC)/category.h \
991         $(SRC)/composite.h \
992         $(SRC)/disptab.h \
993         $(SRC)/indent.h \
994         $(SRC)/region-cache.h \
995         $(SRC)/termchar.h \
996         $(SRC)/termopts.h \
997         $(BUFFER_H) \
998         $(CHARACTER_H) \
999         $(CONFIG_H) \
1000         $(DISPEXTERN_H) \
1001         $(FRAME_H) \
1002         $(INTERVALS_H) \
1003         $(KEYBOARD_H) \
1004         $(LISP_H) \
1005         $(WINDOW_H)
1007 $(BLD)/insdel.$(O) : \
1008         $(SRC)/insdel.c \
1009         $(SRC)/region-cache.h \
1010         $(GNU_LIB)/intprops.h \
1011         $(BLOCKINPUT_H) \
1012         $(BUFFER_H) \
1013         $(CHARACTER_H) \
1014         $(CONFIG_H) \
1015         $(INTERVALS_H) \
1016         $(LISP_H) \
1017         $(WINDOW_H)
1019 $(BLD)/intervals.$(O) : \
1020         $(SRC)/intervals.c \
1021         $(SRC)/keymap.h \
1022         $(SRC)/puresize.h \
1023         $(GNU_LIB)/intprops.h \
1024         $(BUFFER_H) \
1025         $(CHARACTER_H) \
1026         $(CONFIG_H) \
1027         $(INTERVALS_H) \
1028         $(KEYBOARD_H) \
1029         $(LISP_H)
1031 $(BLD)/keyboard.$(O) : \
1032         $(SRC)/keyboard.c \
1033         $(SRC)/commands.h \
1034         $(SRC)/disptab.h \
1035         $(SRC)/keymap.h \
1036         $(SRC)/macros.h \
1037         $(SRC)/puresize.h \
1038         $(SRC)/syntax.h \
1039         $(SRC)/syssignal.h \
1040         $(SRC)/termchar.h \
1041         $(SRC)/termopts.h \
1042         $(NT_INC)/sys/ioctl.h \
1043         $(NT_INC)/unistd.h \
1044         $(ATIMER_H) \
1045         $(BLOCKINPUT_H) \
1046         $(BUFFER_H) \
1047         $(CHARACTER_H) \
1048         $(CONFIG_H) \
1049         $(DISPEXTERN_H) \
1050         $(FRAME_H) \
1051         $(INTERVALS_H) \
1052         $(KEYBOARD_H) \
1053         $(LISP_H) \
1054         $(PROCESS_H) \
1055         $(SYSTIME_H) \
1056         $(TERMHOOKS_H) \
1057         $(W32TERM_H) \
1058         $(WINDOW_H)
1060 $(BLD)/keymap.$(O) : \
1061         $(SRC)/keymap.c \
1062         $(SRC)/commands.h \
1063         $(SRC)/keymap.h \
1064         $(SRC)/puresize.h \
1065         $(BLOCKINPUT_H) \
1066         $(BUFFER_H) \
1067         $(CHARACTER_H) \
1068         $(CHARSET_H) \
1069         $(CONFIG_H) \
1070         $(FRAME_H) \
1071         $(INTERVALS_H) \
1072         $(KEYBOARD_H) \
1073         $(LISP_H) \
1074         $(TERMHOOKS_H) \
1075         $(WINDOW_H)
1077 $(BLD)/lastfile.$(O) : \
1078         $(SRC)/lastfile.c \
1079         $(CONFIG_H)
1081 $(BLD)/lread.$(O) : \
1082         $(SRC)/lread.c \
1083         $(SRC)/commands.h \
1084         $(SRC)/epaths.h \
1085         $(NT_INC)/sys/file.h \
1086         $(NT_INC)/sys/stat.h \
1087         $(NT_INC)/unistd.h \
1088         $(BLOCKINPUT_H) \
1089         $(BUFFER_H) \
1090         $(CHARACTER_H) \
1091         $(CHARSET_H) \
1092         $(CODING_H) \
1093         $(CONFIG_H) \
1094         $(FRAME_H) \
1095         $(INTERVALS_H) \
1096         $(KEYBOARD_H) \
1097         $(LISP_H) \
1098         $(STAT_TIME_H) \
1099         $(TERMHOOKS_H)
1101 $(BLD)/macros.$(O) : \
1102         $(SRC)/macros.c \
1103         $(SRC)/commands.h \
1104         $(SRC)/macros.h \
1105         $(BUFFER_H) \
1106         $(CHARACTER_H) \
1107         $(CONFIG_H) \
1108         $(KEYBOARD_H) \
1109         $(LISP_H) \
1110         $(WINDOW_H)
1112 $(BLD)/marker.$(O) : \
1113         $(SRC)/marker.c \
1114         $(BUFFER_H) \
1115         $(CHARACTER_H) \
1116         $(CONFIG_H) \
1117         $(LISP_H)
1119 $(BLD)/menu.$(O) : \
1120         $(SRC)/menu.c \
1121         $(SRC)/keymap.h \
1122         $(BLOCKINPUT_H) \
1123         $(CONFIG_H) \
1124         $(DISPEXTERN_H) \
1125         $(FRAME_H) \
1126         $(KEYBOARD_H) \
1127         $(LISP_H) \
1128         $(MENU_H) \
1129         $(TERMHOOKS_H) \
1130         $(W32TERM_H) \
1131         $(WINDOW_H)
1133 $(BLD)/minibuf.$(O) : \
1134         $(SRC)/minibuf.c \
1135         $(SRC)/commands.h \
1136         $(SRC)/keymap.h \
1137         $(SRC)/syntax.h \
1138         $(BUFFER_H) \
1139         $(CHARACTER_H) \
1140         $(CONFIG_H) \
1141         $(DISPEXTERN_H) \
1142         $(FRAME_H) \
1143         $(INTERVALS_H) \
1144         $(KEYBOARD_H) \
1145         $(LISP_H) \
1146         $(TERMHOOKS_H) \
1147         $(WINDOW_H)
1149 $(BLD)/w32.$(O) : \
1150         $(SRC)/w32.c \
1151         $(SRC)/ndir.h \
1152         $(SRC)/w32.h \
1153         $(SRC)/w32heap.h \
1154         $(NT_INC)/pwd.h \
1155         $(NT_INC)/sys/file.h \
1156         $(NT_INC)/sys/time.h \
1157         $(GNU_LIB)/allocator.h \
1158         $(CAREADLINKAT_H) \
1159         $(CODING_H) \
1160         $(CONFIG_H) \
1161         $(DISPEXTERN_H) \
1162         $(GRP_H) \
1163         $(LISP_H) \
1164         $(PROCESS_H) \
1165         $(SOCKET_H) \
1166         $(SYSTIME_H)
1168 $(BLD)/w32heap.$(O) : \
1169         $(SRC)/w32heap.c \
1170         $(SRC)/w32heap.h \
1171         $(CONFIG_H) \
1172         $(LISP_H)
1174 $(BLD)/w32inevt.$(O) : \
1175         $(SRC)/w32inevt.c \
1176         $(SRC)/termchar.h \
1177         $(SRC)/w32heap.h \
1178         $(SRC)/w32inevt.h \
1179         $(BLOCKINPUT_H) \
1180         $(CONFIG_H) \
1181         $(DISPEXTERN_H) \
1182         $(FRAME_H) \
1183         $(KEYBOARD_H) \
1184         $(LISP_H) \
1185         $(TERMHOOKS_H) \
1186         $(W32TERM_H) \
1187         $(WINDOW_H)
1189 $(BLD)/w32proc.$(O) : \
1190         $(SRC)/w32proc.c \
1191         $(SRC)/syssignal.h \
1192         $(SRC)/syswait.h \
1193         $(SRC)/w32.h \
1194         $(SRC)/w32heap.h \
1195         $(NT_INC)/nl_types.h \
1196         $(NT_INC)/sys/file.h \
1197         $(CODING_H) \
1198         $(CONFIG_H) \
1199         $(DISPEXTERN_H) \
1200         $(LANGINFO_H) \
1201         $(LISP_H) \
1202         $(PROCESS_H) \
1203         $(SYSTIME_H) \
1204         $(W32TERM_H)
1206 $(BLD)/w32console.$(O) : \
1207         $(SRC)/w32console.c \
1208         $(SRC)/disptab.h \
1209         $(SRC)/termchar.h \
1210         $(SRC)/w32heap.h \
1211         $(SRC)/w32inevt.h \
1212         $(CHARACTER_H) \
1213         $(CODING_H) \
1214         $(CONFIG_H) \
1215         $(DISPEXTERN_H) \
1216         $(FRAME_H) \
1217         $(LISP_H) \
1218         $(TERMHOOKS_H) \
1219         $(WINDOW_H)
1221 $(BLD)/print.$(O) : \
1222         $(SRC)/print.c \
1223         $(SRC)/termchar.h \
1224         $(BLOCKINPUT_H) \
1225         $(BUFFER_H) \
1226         $(CHARACTER_H) \
1227         $(CHARSET_H) \
1228         $(CONFIG_H) \
1229         $(DISPEXTERN_H) \
1230         $(FONT_H) \
1231         $(FRAME_H) \
1232         $(FTOASTR_H) \
1233         $(INTERVALS_H) \
1234         $(KEYBOARD_H) \
1235         $(LISP_H) \
1236         $(PROCESS_H) \
1237         $(TERMHOOKS_H) \
1238         $(WINDOW_H)
1240 $(BLD)/process.$(O) : \
1241         $(SRC)/process.c \
1242         $(SRC)/commands.h \
1243         $(SRC)/composite.h \
1244         $(SRC)/gnutls.h \
1245         $(SRC)/sysselect.h \
1246         $(SRC)/syssignal.h \
1247         $(SRC)/syswait.h \
1248         $(SRC)/termopts.h \
1249         $(NT_INC)/arpa/inet.h \
1250         $(NT_INC)/netdb.h \
1251         $(NT_INC)/netinet/in.h \
1252         $(NT_INC)/sys/file.h \
1253         $(NT_INC)/sys/ioctl.h \
1254         $(NT_INC)/sys/stat.h \
1255         $(NT_INC)/unistd.h \
1256         $(ATIMER_H) \
1257         $(BLOCKINPUT_H) \
1258         $(BUFFER_H) \
1259         $(CHARACTER_H) \
1260         $(CODING_H) \
1261         $(CONFIG_H) \
1262         $(DISPEXTERN_H) \
1263         $(FRAME_H) \
1264         $(KEYBOARD_H) \
1265         $(LISP_H) \
1266         $(PROCESS_H) \
1267         $(SOCKET_H) \
1268         $(SYSTIME_H) \
1269         $(SYSTTY_H) \
1270         $(TERMHOOKS_H) \
1271         $(WINDOW_H)
1273 $(BLD)/ralloc.$(O) : \
1274         $(SRC)/ralloc.c \
1275         $(SRC)/getpagesize.h \
1276         $(NT_INC)/unistd.h \
1277         $(BLOCKINPUT_H) \
1278         $(CONFIG_H) \
1279         $(LISP_H)
1281 $(BLD)/regex.$(O) : \
1282         $(SRC)/regex.c \
1283         $(SRC)/category.h \
1284         $(SRC)/regex.h \
1285         $(SRC)/syntax.h \
1286         $(BUFFER_H) \
1287         $(CHARACTER_H) \
1288         $(CONFIG_H) \
1289         $(LISP_H)
1291 $(BLD)/region-cache.$(O) : \
1292         $(SRC)/region-cache.c \
1293         $(SRC)/region-cache.h \
1294         $(BUFFER_H) \
1295         $(CHARACTER_H) \
1296         $(CONFIG_H) \
1297         $(LISP_H)
1299 $(BLD)/scroll.$(O) : \
1300         $(SRC)/scroll.c \
1301         $(SRC)/termchar.h \
1302         $(CONFIG_H) \
1303         $(DISPEXTERN_H) \
1304         $(FRAME_H) \
1305         $(KEYBOARD_H) \
1306         $(LISP_H) \
1307         $(TERMHOOKS_H) \
1308         $(WINDOW_H)
1310 $(BLD)/search.$(O) : \
1311         $(SRC)/search.c \
1312         $(SRC)/category.h \
1313         $(SRC)/commands.h \
1314         $(SRC)/regex.h \
1315         $(SRC)/region-cache.h \
1316         $(SRC)/syntax.h \
1317         $(BLOCKINPUT_H) \
1318         $(BUFFER_H) \
1319         $(CHARACTER_H) \
1320         $(CHARSET_H) \
1321         $(CONFIG_H) \
1322         $(INTERVALS_H) \
1323         $(LISP_H)
1325 $(BLD)/sound.$(O) : \
1326         $(SRC)/sound.c \
1327         $(SRC)/syssignal.h \
1328         $(NT_INC)/unistd.h \
1329         $(ATIMER_H) \
1330         $(CONFIG_H) \
1331         $(DISPEXTERN_H) \
1332         $(LISP_H)
1334 $(BLD)/syntax.$(O) : \
1335         $(SRC)/syntax.c \
1336         $(SRC)/category.h \
1337         $(SRC)/commands.h \
1338         $(SRC)/keymap.h \
1339         $(SRC)/regex.h \
1340         $(SRC)/syntax.h \
1341         $(BUFFER_H) \
1342         $(CHARACTER_H) \
1343         $(CONFIG_H) \
1344         $(INTERVALS_H) \
1345         $(LISP_H)
1347 $(BLD)/sysdep.$(O) : \
1348         $(SRC)/sysdep.c \
1349         $(SRC)/cm.h \
1350         $(SRC)/sysselect.h \
1351         $(SRC)/syssignal.h \
1352         $(SRC)/syswait.h \
1353         $(SRC)/termchar.h \
1354         $(SRC)/termopts.h \
1355         $(NT_INC)/netdb.h \
1356         $(NT_INC)/pwd.h \
1357         $(NT_INC)/sys/file.h \
1358         $(NT_INC)/sys/stat.h \
1359         $(NT_INC)/unistd.h \
1360         $(GNU_LIB)/allocator.h \
1361         $(GNU_LIB)/ignore-value.h \
1362         $(GNU_LIB)/utimens.h \
1363         $(BLOCKINPUT_H) \
1364         $(CAREADLINKAT_H) \
1365         $(CONFIG_H) \
1366         $(C_CTYPE_H) \
1367         $(DISPEXTERN_H) \
1368         $(FRAME_H) \
1369         $(GRP_H) \
1370         $(KEYBOARD_H) \
1371         $(LISP_H) \
1372         $(PROCESS_H) \
1373         $(SOCKET_H) \
1374         $(SYSTIME_H) \
1375         $(SYSTTY_H) \
1376         $(TERMHOOKS_H) \
1377         $(WINDOW_H)
1379 $(BLD)/term.$(O) : \
1380         $(SRC)/term.c \
1381         $(SRC)/cm.h \
1382         $(SRC)/composite.h \
1383         $(SRC)/disptab.h \
1384         $(SRC)/keymap.h \
1385         $(SRC)/syssignal.h \
1386         $(SRC)/termchar.h \
1387         $(SRC)/termopts.h \
1388         $(SRC)/tparam.h \
1389         $(NT_INC)/sys/file.h \
1390         $(NT_INC)/sys/time.h \
1391         $(NT_INC)/unistd.h \
1392         $(BLOCKINPUT_H) \
1393         $(BUFFER_H) \
1394         $(CHARACTER_H) \
1395         $(CHARSET_H) \
1396         $(CODING_H) \
1397         $(CONFIG_H) \
1398         $(DISPEXTERN_H) \
1399         $(FRAME_H) \
1400         $(INTERVALS_H) \
1401         $(KEYBOARD_H) \
1402         $(LISP_H) \
1403         $(SYSTTY_H) \
1404         $(TERMHOOKS_H) \
1405         $(WINDOW_H)
1407 $(BLD)/terminal.$(O) : \
1408         $(SRC)/terminal.c \
1409         $(SRC)/termchar.h \
1410         $(CHARSET_H) \
1411         $(CODING_H) \
1412         $(CONFIG_H) \
1413         $(FRAME_H) \
1414         $(KEYBOARD_H) \
1415         $(LISP_H) \
1416         $(TERMHOOKS_H)
1418 $(BLD)/textprop.$(O) : \
1419         $(SRC)/textprop.c \
1420         $(BUFFER_H) \
1421         $(CHARACTER_H) \
1422         $(CONFIG_H) \
1423         $(INTERVALS_H) \
1424         $(LISP_H) \
1425         $(WINDOW_H)
1427 $(BLD)/tparam.$(O) : \
1428         $(SRC)/tparam.c \
1429         $(SRC)/tparam.h \
1430         $(CONFIG_H) \
1431         $(LISP_H)
1433 $(BLD)/undo.$(O) : \
1434         $(SRC)/undo.c \
1435         $(SRC)/commands.h \
1436         $(BUFFER_H) \
1437         $(CHARACTER_H) \
1438         $(CONFIG_H) \
1439         $(LISP_H) \
1440         $(WINDOW_H)
1442 $(BLD)/unexw32.$(O) : \
1443         $(SRC)/unexw32.c \
1444         $(SRC)/unexec.h \
1445         $(SRC)/w32heap.h \
1446         $(CONFIG_H)
1448 $(BLD)/vm-limit.$(O) : \
1449         $(SRC)/vm-limit.c \
1450         $(SRC)/mem-limits.h \
1451         $(CONFIG_H) \
1452         $(LISP_H)
1454 $(BLD)/window.$(O) : \
1455         $(SRC)/window.c \
1456         $(SRC)/commands.h \
1457         $(SRC)/disptab.h \
1458         $(SRC)/indent.h \
1459         $(SRC)/keymap.h \
1460         $(SRC)/termchar.h \
1461         $(BLOCKINPUT_H) \
1462         $(BUFFER_H) \
1463         $(CHARACTER_H) \
1464         $(CONFIG_H) \
1465         $(DISPEXTERN_H) \
1466         $(FRAME_H) \
1467         $(INTERVALS_H) \
1468         $(KEYBOARD_H) \
1469         $(LISP_H) \
1470         $(TERMHOOKS_H) \
1471         $(W32TERM_H) \
1472         $(WINDOW_H)
1474 $(BLD)/xdisp.$(O) : \
1475         $(SRC)/xdisp.c \
1476         $(SRC)/commands.h \
1477         $(SRC)/disptab.h \
1478         $(SRC)/fontset.h \
1479         $(SRC)/indent.h \
1480         $(SRC)/keymap.h \
1481         $(SRC)/macros.h \
1482         $(SRC)/region-cache.h \
1483         $(SRC)/termchar.h \
1484         $(SRC)/termopts.h \
1485         $(BLOCKINPUT_H) \
1486         $(BUFFER_H) \
1487         $(CHARACTER_H) \
1488         $(CHARSET_H) \
1489         $(CODING_H) \
1490         $(CONFIG_H) \
1491         $(DISPEXTERN_H) \
1492         $(FONT_H) \
1493         $(FRAME_H) \
1494         $(INTERVALS_H) \
1495         $(KEYBOARD_H) \
1496         $(LISP_H) \
1497         $(PROCESS_H) \
1498         $(TERMHOOKS_H) \
1499         $(W32TERM_H) \
1500         $(WINDOW_H)
1502 $(BLD)/xfaces.$(O) : \
1503         $(SRC)/xfaces.c \
1504         $(SRC)/fontset.h \
1505         $(SRC)/termchar.h \
1506         $(NT_INC)/sys/stat.h \
1507         $(BLOCKINPUT_H) \
1508         $(BUFFER_H) \
1509         $(CHARACTER_H) \
1510         $(CHARSET_H) \
1511         $(CONFIG_H) \
1512         $(C_CTYPE_H) \
1513         $(DISPEXTERN_H) \
1514         $(FONT_H) \
1515         $(FRAME_H) \
1516         $(INTERVALS_H) \
1517         $(KEYBOARD_H) \
1518         $(LISP_H) \
1519         $(TERMHOOKS_H) \
1520         $(W32TERM_H) \
1521         $(WINDOW_H)
1523 $(BLD)/w32fns.$(O) : \
1524         $(SRC)/w32fns.c \
1525         $(SRC)/ccl.h \
1526         $(SRC)/epaths.h \
1527         $(SRC)/fontset.h \
1528         $(SRC)/w32.h \
1529         $(SRC)/w32font.h \
1530         $(SRC)/w32heap.h \
1531         $(BLOCKINPUT_H) \
1532         $(BUFFER_H) \
1533         $(CHARACTER_H) \
1534         $(CHARSET_H) \
1535         $(CODING_H) \
1536         $(CONFIG_H) \
1537         $(DISPEXTERN_H) \
1538         $(FONT_H) \
1539         $(FRAME_H) \
1540         $(INTERVALS_H) \
1541         $(KEYBOARD_H) \
1542         $(LISP_H) \
1543         $(SYSTIME_H) \
1544         $(TERMHOOKS_H) \
1545         $(W32TERM_H) \
1546         $(WINDOW_H)
1548 $(BLD)/w32menu.$(O) : \
1549         $(SRC)/w32menu.c \
1550         $(SRC)/keymap.h \
1551         $(SRC)/w32heap.h \
1552         $(BLOCKINPUT_H) \
1553         $(BUFFER_H) \
1554         $(CHARACTER_H) \
1555         $(CHARSET_H) \
1556         $(CODING_H) \
1557         $(CONFIG_H) \
1558         $(DISPEXTERN_H) \
1559         $(FRAME_H) \
1560         $(KEYBOARD_H) \
1561         $(LISP_H) \
1562         $(MENU_H) \
1563         $(TERMHOOKS_H) \
1564         $(W32TERM_H) \
1565         $(WINDOW_H)
1567 $(BLD)/w32term.$(O) : \
1568         $(SRC)/w32term.c \
1569         $(SRC)/ccl.h \
1570         $(SRC)/disptab.h \
1571         $(SRC)/fontset.h \
1572         $(SRC)/keymap.h \
1573         $(SRC)/termchar.h \
1574         $(SRC)/termopts.h \
1575         $(SRC)/w32font.h \
1576         $(SRC)/w32heap.h \
1577         $(NT_INC)/sys/stat.h \
1578         $(ATIMER_H) \
1579         $(BLOCKINPUT_H) \
1580         $(BUFFER_H) \
1581         $(CHARACTER_H) \
1582         $(CHARSET_H) \
1583         $(CODING_H) \
1584         $(CONFIG_H) \
1585         $(DISPEXTERN_H) \
1586         $(FONT_H) \
1587         $(FRAME_H) \
1588         $(INTERVALS_H) \
1589         $(KEYBOARD_H) \
1590         $(LISP_H) \
1591         $(PROCESS_H) \
1592         $(SYSTIME_H) \
1593         $(SYSTTY_H) \
1594         $(TERMHOOKS_H) \
1595         $(W32TERM_H) \
1596         $(WINDOW_H)
1598 $(BLD)/w32select.$(O) : \
1599         $(SRC)/w32select.c \
1600         $(SRC)/composite.h \
1601         $(SRC)/w32heap.h \
1602         $(BLOCKINPUT_H) \
1603         $(CHARSET_H) \
1604         $(CODING_H) \
1605         $(CONFIG_H) \
1606         $(LISP_H) \
1607         $(W32TERM_H)
1609 $(BLD)/w32reg.$(O) : \
1610         $(SRC)/w32reg.c \
1611         $(BLOCKINPUT_H) \
1612         $(CONFIG_H) \
1613         $(LISP_H) \
1614         $(W32TERM_H)
1616 $(BLD)/w32xfns.$(O) : \
1617         $(SRC)/w32xfns.c \
1618         $(SRC)/fontset.h \
1619         $(BLOCKINPUT_H) \
1620         $(CHARSET_H) \
1621         $(CONFIG_H) \
1622         $(FRAME_H) \
1623         $(KEYBOARD_H) \
1624         $(LISP_H) \
1625         $(W32TERM_H)
1627 $(BLD)/w32font.$(O) : \
1628         $(SRC)/w32font.c \
1629         $(SRC)/fontset.h \
1630         $(SRC)/w32font.h \
1631         $(CHARACTER_H) \
1632         $(CHARSET_H) \
1633         $(CODING_H) \
1634         $(CONFIG_H) \
1635         $(DISPEXTERN_H) \
1636         $(FONT_H) \
1637         $(FRAME_H) \
1638         $(LISP_H) \
1639         $(W32TERM_H)
1641 $(BLD)/w32uniscribe.$(O) : \
1642         $(SRC)/w32uniscribe.c \
1643         $(SRC)/composite.h \
1644         $(SRC)/fontset.h \
1645         $(SRC)/w32font.h \
1646         $(CHARACTER_H) \
1647         $(CHARSET_H) \
1648         $(CONFIG_H) \
1649         $(DISPEXTERN_H) \
1650         $(FONT_H) \
1651         $(FRAME_H) \
1652         $(LISP_H) \
1653         $(W32TERM_H)
1655 # Each object file depends on stamp_BLD, because in parallel builds we must
1656 # make sure $(BLD) exists before starting compilations.
1658 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD