Convert safe_call to use variable number of arguments.
[emacs.git] / src / makefile.w32-in
blob45972db2cf44ea9fc55b6973212a2d60ecfa8c18
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)/s/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)/s/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 CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
399                  $(NT_INC)/unistd.h
400 CHARACTER_H    = $(SRC)/character.h \
401                  $(GNU_LIB)/verify.h
402 CHARSET_H      = $(SRC)/charset.h \
403                  $(GNU_LIB)/verify.h
404 CODING_H       = $(SRC)/coding.h \
405                  $(SRC)/composite.h
406 MS_W32_H       = $(SRC)/s/ms-w32.h \
407                  $(NT_INC)/sys/stat.h
408 CONFIG_H       = $(SRC)/config.h \
409                  $(MS_W32_H)
410 DIR_H          = $(NT_INC)/sys/dir.h \
411                  $(SRC)/ndir.h
412 W32GUI_H       = $(SRC)/w32gui.h \
413                  $(SYSTIME_H)
414 DISPEXTERN_H   = $(SRC)/dispextern.h \
415                  $(GNU_LIB)/c-strcase.h \
416                  $(SYSTIME_H) \
417                  $(W32GUI_H)
418 FILEMODE_H     = $(GNU_LIB)/filemode.h \
419                  $(NT_INC)/sys/stat.h
420 FONT_H         = $(SRC)/font.h \
421                  $(SRC)/ccl.h
422 FRAME_H        = $(SRC)/frame.h \
423                  $(DISPEXTERN_H)
424 FTOASTR_H      = $(GNU_LIB)/ftoastr.h \
425                  $(GNU_LIB)/intprops.h
426 GRP_H          = $(NT_INC)/grp.h \
427                  $(NT_INC)/pwd.h
428 INTERVALS_H    = $(SRC)/intervals.h \
429                  $(SRC)/composite.h \
430                  $(DISPEXTERN_H)
431 INTTYPES_H     = $(NT_INC)/inttypes.h \
432                  $(NT_INC)/stdint.h
433 KEYBOARD_H     = $(SRC)/keyboard.h \
434                  $(CODING_H) \
435                  $(SYSTIME_H)
436 LANGINFO_H     = $(NT_INC)/langinfo.h \
437                  $(NT_INC)/nl_types.h
438 LISP_H         = $(SRC)/lisp.h \
439                  $(SRC)/globals.h \
440                  $(GNU_LIB)/intprops.h \
441                  $(INTTYPES_H) \
442                  $(NT_INC)/stdalign.h
443 MD5_H          = $(GNU_LIB)/md5.h \
444                  $(NT_INC)/stdint.h
445 MENU_H         = $(SRC)/menu.h \
446                  $(SYSTIME_H)
447 PROCESS_H      = $(SRC)/process.h \
448                  $(SRC)/gnutls.h \
449                  $(NT_INC)/unistd.h
450 SHA1_H         = $(GNU_LIB)/sha1.h \
451                  $(NT_INC)/stdint.h
452 SHA256_H       = $(GNU_LIB)/sha256.h \
453                  $(NT_INC)/stdint.h
454 U64_H          = $(GNU_LIB)/u64.h \
455                  $(NT_INC)/stdint.h
456 SHA512_H       = $(GNU_LIB)/sha512.h \
457                  $(U64_H)
458 SOCKET_H       = $(NT_INC)/sys/socket.h \
459                  $(SRC)/w32.h
460 STAT_TIME_H    = $(GNU_LIB)/stat-time.h \
461                  $(NT_INC)/sys/stat.h
462 SYSTTY_H       = $(SRC)/systty.h \
463                  $(NT_INC)/sys/ioctl.h \
464                  $(NT_INC)/unistd.h
465 TERMHOOKS_H    = $(SRC)/termhooks.h \
466                  $(SYSTIME_H)
467 W32TERM_H      = $(SRC)/w32term.h \
468                  $(W32GUI_H)
469 WINDOW_H       = $(SRC)/window.h \
470                  $(DISPEXTERN_H)
472 $(BLD)/alloc.$(O) : \
473         $(SRC)/alloc.c \
474         $(SRC)/puresize.h \
475         $(SRC)/syssignal.h \
476         $(SRC)/w32.h \
477         $(NT_INC)/unistd.h \
478         $(GNU_LIB)/verify.h \
479         $(BLOCKINPUT_H) \
480         $(BUFFER_H) \
481         $(CHARACTER_H) \
482         $(CONFIG_H) \
483         $(FRAME_H) \
484         $(INTERVALS_H) \
485         $(KEYBOARD_H) \
486         $(LISP_H) \
487         $(PROCESS_H) \
488         $(TERMHOOKS_H) \
489         $(WINDOW_H)
491 $(BLD)/atimer.$(O) : \
492         $(SRC)/atimer.c \
493         $(SRC)/syssignal.h \
494         $(NT_INC)/unistd.h \
495         $(ATIMER_H) \
496         $(BLOCKINPUT_H) \
497         $(CONFIG_H) \
498         $(LISP_H) \
499         $(SYSTIME_H)
501 $(BLD)/bidi.$(O) : \
502         $(SRC)/bidi.c \
503         $(BUFFER_H) \
504         $(CHARACTER_H) \
505         $(CONFIG_H) \
506         $(DISPEXTERN_H) \
507         $(LISP_H)
509 $(BLD)/buffer.$(O) : \
510         $(SRC)/buffer.c \
511         $(SRC)/commands.h \
512         $(SRC)/indent.h \
513         $(SRC)/keymap.h \
514         $(SRC)/region-cache.h \
515         $(NT_INC)/sys/param.h \
516         $(NT_INC)/sys/stat.h \
517         $(NT_INC)/unistd.h \
518         $(GNU_LIB)/verify.h \
519         $(BLOCKINPUT_H) \
520         $(BUFFER_H) \
521         $(CHARACTER_H) \
522         $(CONFIG_H) \
523         $(FRAME_H) \
524         $(INTERVALS_H) \
525         $(KEYBOARD_H) \
526         $(LISP_H) \
527         $(WINDOW_H)
529 $(BLD)/bytecode.$(O) : \
530         $(SRC)/bytecode.c \
531         $(SRC)/syntax.h \
532         $(BUFFER_H) \
533         $(CHARACTER_H) \
534         $(CONFIG_H) \
535         $(LISP_H) \
536         $(WINDOW_H)
538 $(BLD)/callint.$(O) : \
539         $(SRC)/callint.c \
540         $(SRC)/commands.h \
541         $(SRC)/keymap.h \
542         $(BUFFER_H) \
543         $(CHARACTER_H) \
544         $(CONFIG_H) \
545         $(KEYBOARD_H) \
546         $(LISP_H) \
547         $(WINDOW_H)
549 $(BLD)/callproc.$(O) : \
550         $(SRC)/callproc.c \
551         $(SRC)/ccl.h \
552         $(SRC)/commands.h \
553         $(SRC)/composite.h \
554         $(SRC)/epaths.h \
555         $(SRC)/syssignal.h \
556         $(SRC)/w32.h \
557         $(NT_INC)/sys/file.h \
558         $(NT_INC)/unistd.h \
559         $(BLOCKINPUT_H) \
560         $(BUFFER_H) \
561         $(CHARACTER_H) \
562         $(CODING_H) \
563         $(CONFIG_H) \
564         $(FRAME_H) \
565         $(LISP_H) \
566         $(PROCESS_H) \
567         $(SYSTTY_H) \
568         $(TERMHOOKS_H)
570 $(BLD)/casefiddle.$(O) : \
571         $(SRC)/casefiddle.c \
572         $(SRC)/commands.h \
573         $(SRC)/composite.h \
574         $(SRC)/keymap.h \
575         $(SRC)/syntax.h \
576         $(BUFFER_H) \
577         $(CHARACTER_H) \
578         $(CONFIG_H) \
579         $(LISP_H)
581 $(BLD)/casetab.$(O) : \
582         $(SRC)/casetab.c \
583         $(BUFFER_H) \
584         $(CHARACTER_H) \
585         $(CONFIG_H) \
586         $(LISP_H)
588 $(BLD)/category.$(O) : \
589         $(SRC)/category.c \
590         $(SRC)/category.h \
591         $(SRC)/keymap.h \
592         $(BUFFER_H) \
593         $(CHARACTER_H) \
594         $(CHARSET_H) \
595         $(CONFIG_H) \
596         $(LISP_H)
598 $(BLD)/ccl.$(O) : \
599         $(SRC)/ccl.c \
600         $(SRC)/ccl.h \
601         $(CHARACTER_H) \
602         $(CHARSET_H) \
603         $(CODING_H) \
604         $(CONFIG_H) \
605         $(LISP_H)
607 $(BLD)/character.$(O) : \
608         $(SRC)/character.c \
609         $(SRC)/composite.h \
610         $(SRC)/disptab.h \
611         $(GNU_LIB)/intprops.h \
612         $(BUFFER_H) \
613         $(CHARACTER_H) \
614         $(CHARSET_H) \
615         $(CONFIG_H) \
616         $(LISP_H)
618 $(BLD)/charset.$(O) : \
619         $(SRC)/charset.c \
620         $(SRC)/disptab.h \
621         $(NT_INC)/unistd.h \
622         $(BUFFER_H) \
623         $(CHARACTER_H) \
624         $(CHARSET_H) \
625         $(CODING_H) \
626         $(CONFIG_H) \
627         $(LISP_H)
629 $(BLD)/chartab.$(O) : \
630         $(SRC)/chartab.c \
631         $(SRC)/ccl.h \
632         $(CHARACTER_H) \
633         $(CHARSET_H) \
634         $(CONFIG_H) \
635         $(LISP_H)
637 $(BLD)/cmds.$(O) : \
638         $(SRC)/cmds.c \
639         $(SRC)/commands.h \
640         $(SRC)/keymap.h \
641         $(SRC)/syntax.h \
642         $(BUFFER_H) \
643         $(CHARACTER_H) \
644         $(CONFIG_H) \
645         $(DISPEXTERN_H) \
646         $(FRAME_H) \
647         $(KEYBOARD_H) \
648         $(LISP_H) \
649         $(WINDOW_H)
651 $(BLD)/coding.$(O) : \
652         $(SRC)/coding.c \
653         $(SRC)/ccl.h \
654         $(SRC)/composite.h \
655         $(BUFFER_H) \
656         $(CHARACTER_H) \
657         $(CHARSET_H) \
658         $(CODING_H) \
659         $(CONFIG_H) \
660         $(FRAME_H) \
661         $(LISP_H) \
662         $(TERMHOOKS_H) \
663         $(WINDOW_H)
665 $(BLD)/composite.$(O) : \
666         $(SRC)/composite.c \
667         $(BUFFER_H) \
668         $(CHARACTER_H) \
669         $(CODING_H) \
670         $(CONFIG_H) \
671         $(DISPEXTERN_H) \
672         $(FONT_H) \
673         $(FRAME_H) \
674         $(INTERVALS_H) \
675         $(LISP_H) \
676         $(TERMHOOKS_H) \
677         $(WINDOW_H)
679 $(BLD)/data.$(O) : \
680         $(SRC)/data.c \
681         $(SRC)/keymap.h \
682         $(SRC)/puresize.h \
683         $(SRC)/syssignal.h \
684         $(GNU_LIB)/intprops.h \
685         $(BUFFER_H) \
686         $(CHARACTER_H) \
687         $(CONFIG_H) \
688         $(FONT_H) \
689         $(FRAME_H) \
690         $(KEYBOARD_H) \
691         $(LISP_H) \
692         $(TERMHOOKS_H)
694 $(BLD)/dired.$(O) : \
695         $(SRC)/dired.c \
696         $(SRC)/commands.h \
697         $(SRC)/regex.h \
698         $(NT_INC)/pwd.h \
699         $(NT_INC)/sys/stat.h \
700         $(NT_INC)/unistd.h \
701         $(BLOCKINPUT_H) \
702         $(BUFFER_H) \
703         $(CHARACTER_H) \
704         $(CHARSET_H) \
705         $(CODING_H) \
706         $(CONFIG_H) \
707         $(DIR_H) \
708         $(FILEMODE_H) \
709         $(GRP_H) \
710         $(LISP_H) \
711         $(STAT_TIME_H) \
712         $(SYSTIME_H)
714 $(BLD)/dispnew.$(O) : \
715         $(SRC)/dispnew.c \
716         $(SRC)/cm.h \
717         $(SRC)/commands.h \
718         $(SRC)/disptab.h \
719         $(SRC)/indent.h \
720         $(SRC)/syssignal.h \
721         $(SRC)/termchar.h \
722         $(SRC)/termopts.h \
723         $(NT_INC)/unistd.h \
724         $(BLOCKINPUT_H) \
725         $(BUFFER_H) \
726         $(CHARACTER_H) \
727         $(CONFIG_H) \
728         $(DISPEXTERN_H) \
729         $(FRAME_H) \
730         $(INTERVALS_H) \
731         $(KEYBOARD_H) \
732         $(LISP_H) \
733         $(PROCESS_H) \
734         $(SYSTIME_H) \
735         $(TERMHOOKS_H) \
736         $(W32TERM_H) \
737         $(WINDOW_H)
739 $(BLD)/doc.$(O) : \
740         $(SRC)/doc.c \
741         $(SRC)/buildobj.h \
742         $(SRC)/keymap.h \
743         $(NT_INC)/sys/file.h \
744         $(NT_INC)/unistd.h \
745         $(BUFFER_H) \
746         $(CHARACTER_H) \
747         $(CONFIG_H) \
748         $(KEYBOARD_H) \
749         $(LISP_H)
751 $(BLD)/doprnt.$(O) : \
752         $(SRC)/doprnt.c \
753         $(NT_INC)/unistd.h \
754         $(CHARACTER_H) \
755         $(CONFIG_H) \
756         $(LISP_H)
758 $(BLD)/editfns.$(O) : \
759         $(SRC)/editfns.c \
760         $(NT_INC)/pwd.h \
761         $(NT_INC)/unistd.h \
762         $(GNU_LIB)/intprops.h \
763         $(GNU_LIB)/strftime.h \
764         $(GNU_LIB)/verify.h \
765         $(BLOCKINPUT_H) \
766         $(BUFFER_H) \
767         $(CHARACTER_H) \
768         $(CODING_H) \
769         $(CONFIG_H) \
770         $(FRAME_H) \
771         $(INTERVALS_H) \
772         $(LISP_H) \
773         $(SYSTIME_H) \
774         $(WINDOW_H)
776 $(BLD)/emacs.$(O) : \
777         $(SRC)/emacs.c \
778         $(SRC)/commands.h \
779         $(SRC)/gnutls.h \
780         $(SRC)/keymap.h \
781         $(SRC)/syssignal.h \
782         $(SRC)/unexec.h \
783         $(SRC)/w32.h \
784         $(SRC)/w32heap.h \
785         $(NT_INC)/sys/file.h \
786         $(NT_INC)/unistd.h \
787         $(BLOCKINPUT_H) \
788         $(BUFFER_H) \
789         $(CHARACTER_H) \
790         $(CONFIG_H) \
791         $(FRAME_H) \
792         $(INTERVALS_H) \
793         $(KEYBOARD_H) \
794         $(LISP_H) \
795         $(PROCESS_H) \
796         $(SYSTTY_H) \
797         $(TERMHOOKS_H) \
798         $(WINDOW_H)
800 $(BLD)/eval.$(O) : \
801         $(SRC)/eval.c \
802         $(SRC)/commands.h \
803         $(BLOCKINPUT_H) \
804         $(CONFIG_H) \
805         $(DISPEXTERN_H) \
806         $(FRAME_H) \
807         $(KEYBOARD_H) \
808         $(LISP_H)
810 $(BLD)/fileio.$(O) : \
811         $(SRC)/fileio.c \
812         $(SRC)/commands.h \
813         $(NT_INC)/pwd.h \
814         $(NT_INC)/sys/stat.h \
815         $(NT_INC)/unistd.h \
816         $(BLOCKINPUT_H) \
817         $(BUFFER_H) \
818         $(CHARACTER_H) \
819         $(CODING_H) \
820         $(CONFIG_H) \
821         $(DISPEXTERN_H) \
822         $(FRAME_H) \
823         $(INTERVALS_H) \
824         $(LISP_H) \
825         $(STAT_TIME_H) \
826         $(SYSTIME_H) \
827         $(WINDOW_H)
829 $(BLD)/filelock.$(O) : \
830         $(SRC)/filelock.c \
831         $(NT_INC)/pwd.h \
832         $(NT_INC)/sys/file.h \
833         $(NT_INC)/sys/stat.h \
834         $(NT_INC)/unistd.h \
835         $(BUFFER_H) \
836         $(CHARACTER_H) \
837         $(CODING_H) \
838         $(CONFIG_H) \
839         $(LISP_H) \
840         $(SYSTIME_H)
842 $(BLD)/firstfile.$(O) : \
843         $(SRC)/firstfile.c \
844         $(CONFIG_H)
846 $(BLD)/floatfns.$(O) : \
847         $(SRC)/floatfns.c \
848         $(SRC)/syssignal.h \
849         $(CONFIG_H) \
850         $(LISP_H)
852 $(BLD)/fns.$(O) : \
853         $(SRC)/fns.c \
854         $(SRC)/commands.h \
855         $(SRC)/keymap.h \
856         $(NT_INC)/unistd.h \
857         $(GNU_LIB)/intprops.h \
858         $(BLOCKINPUT_H) \
859         $(BUFFER_H) \
860         $(CHARACTER_H) \
861         $(CODING_H) \
862         $(CONFIG_H) \
863         $(FRAME_H) \
864         $(INTERVALS_H) \
865         $(KEYBOARD_H) \
866         $(LANGINFO_H) \
867         $(LISP_H) \
868         $(MD5_H) \
869         $(SHA1_H) \
870         $(SHA256_H) \
871         $(SHA512_H) \
872         $(WINDOW_H)
874 $(BLD)/font.$(O) : \
875         $(SRC)/font.c \
876         $(SRC)/composite.h \
877         $(SRC)/fontset.h \
878         $(BUFFER_H) \
879         $(CHARACTER_H) \
880         $(CHARSET_H) \
881         $(CONFIG_H) \
882         $(DISPEXTERN_H) \
883         $(FONT_H) \
884         $(FRAME_H) \
885         $(LISP_H) \
886         $(W32TERM_H) \
887         $(WINDOW_H)
889 $(BLD)/fontset.$(O) : \
890         $(SRC)/fontset.c \
891         $(SRC)/ccl.h \
892         $(SRC)/fontset.h \
893         $(BLOCKINPUT_H) \
894         $(BUFFER_H) \
895         $(CHARACTER_H) \
896         $(CHARSET_H) \
897         $(CONFIG_H) \
898         $(DISPEXTERN_H) \
899         $(FONT_H) \
900         $(FRAME_H) \
901         $(INTERVALS_H) \
902         $(KEYBOARD_H) \
903         $(LISP_H) \
904         $(TERMHOOKS_H) \
905         $(W32TERM_H) \
906         $(WINDOW_H)
908 $(BLD)/frame.$(O) : \
909         $(SRC)/frame.c \
910         $(SRC)/commands.h \
911         $(SRC)/fontset.h \
912         $(SRC)/termchar.h \
913         $(BLOCKINPUT_H) \
914         $(BUFFER_H) \
915         $(CHARACTER_H) \
916         $(CONFIG_H) \
917         $(DISPEXTERN_H) \
918         $(FONT_H) \
919         $(FRAME_H) \
920         $(KEYBOARD_H) \
921         $(LISP_H) \
922         $(TERMHOOKS_H) \
923         $(W32TERM_H) \
924         $(WINDOW_H)
926 $(BLD)/fringe.$(O) : \
927         $(SRC)/fringe.c \
928         $(BLOCKINPUT_H) \
929         $(BUFFER_H) \
930         $(CHARACTER_H) \
931         $(CONFIG_H) \
932         $(DISPEXTERN_H) \
933         $(FRAME_H) \
934         $(LISP_H) \
935         $(TERMHOOKS_H) \
936         $(WINDOW_H)
938 $(BLD)/gmalloc.$(O) : \
939         $(SRC)/gmalloc.c \
940         $(NT_INC)/stdint.h \
941         $(NT_INC)/unistd.h \
942         $(CONFIG_H)
944 $(BLD)/gnutls.$(O) : \
945         $(SRC)/gnutls.c \
946         $(SRC)/w32.h \
947         $(CONFIG_H) \
948         $(LISP_H) \
949         $(PROCESS_H)
951 $(BLD)/xml.$(O) : \
952         $(SRC)/xml.c \
953         $(SRC)/w32.h \
954         $(BUFFER_H) \
955         $(CHARACTER_H) \
956         $(CONFIG_H) \
957         $(LISP_H)
959 $(BLD)/image.$(O) : \
960         $(SRC)/image.c \
961         $(SRC)/epaths.h \
962         $(SRC)/w32.h \
963         $(NT_INC)/unistd.h \
964         $(BLOCKINPUT_H) \
965         $(CHARACTER_H) \
966         $(CODING_H) \
967         $(CONFIG_H) \
968         $(DISPEXTERN_H) \
969         $(FONT_H) \
970         $(FRAME_H) \
971         $(LISP_H) \
972         $(SYSTIME_H) \
973         $(TERMHOOKS_H) \
974         $(W32TERM_H) \
975         $(WINDOW_H)
977 $(BLD)/indent.$(O) : \
978         $(SRC)/indent.c \
979         $(SRC)/category.h \
980         $(SRC)/composite.h \
981         $(SRC)/disptab.h \
982         $(SRC)/indent.h \
983         $(SRC)/region-cache.h \
984         $(SRC)/termchar.h \
985         $(SRC)/termopts.h \
986         $(BUFFER_H) \
987         $(CHARACTER_H) \
988         $(CONFIG_H) \
989         $(DISPEXTERN_H) \
990         $(FRAME_H) \
991         $(INTERVALS_H) \
992         $(KEYBOARD_H) \
993         $(LISP_H) \
994         $(WINDOW_H)
996 $(BLD)/insdel.$(O) : \
997         $(SRC)/insdel.c \
998         $(SRC)/region-cache.h \
999         $(GNU_LIB)/intprops.h \
1000         $(BLOCKINPUT_H) \
1001         $(BUFFER_H) \
1002         $(CHARACTER_H) \
1003         $(CONFIG_H) \
1004         $(INTERVALS_H) \
1005         $(LISP_H) \
1006         $(WINDOW_H)
1008 $(BLD)/intervals.$(O) : \
1009         $(SRC)/intervals.c \
1010         $(SRC)/keymap.h \
1011         $(SRC)/puresize.h \
1012         $(GNU_LIB)/intprops.h \
1013         $(BUFFER_H) \
1014         $(CHARACTER_H) \
1015         $(CONFIG_H) \
1016         $(INTERVALS_H) \
1017         $(KEYBOARD_H) \
1018         $(LISP_H)
1020 $(BLD)/keyboard.$(O) : \
1021         $(SRC)/keyboard.c \
1022         $(SRC)/commands.h \
1023         $(SRC)/disptab.h \
1024         $(SRC)/keymap.h \
1025         $(SRC)/macros.h \
1026         $(SRC)/puresize.h \
1027         $(SRC)/syntax.h \
1028         $(SRC)/syssignal.h \
1029         $(SRC)/termchar.h \
1030         $(SRC)/termopts.h \
1031         $(NT_INC)/sys/ioctl.h \
1032         $(NT_INC)/unistd.h \
1033         $(ATIMER_H) \
1034         $(BLOCKINPUT_H) \
1035         $(BUFFER_H) \
1036         $(CHARACTER_H) \
1037         $(CONFIG_H) \
1038         $(DISPEXTERN_H) \
1039         $(FRAME_H) \
1040         $(INTERVALS_H) \
1041         $(KEYBOARD_H) \
1042         $(LISP_H) \
1043         $(PROCESS_H) \
1044         $(SYSTIME_H) \
1045         $(TERMHOOKS_H) \
1046         $(W32TERM_H) \
1047         $(WINDOW_H)
1049 $(BLD)/keymap.$(O) : \
1050         $(SRC)/keymap.c \
1051         $(SRC)/commands.h \
1052         $(SRC)/keymap.h \
1053         $(SRC)/puresize.h \
1054         $(BLOCKINPUT_H) \
1055         $(BUFFER_H) \
1056         $(CHARACTER_H) \
1057         $(CHARSET_H) \
1058         $(CONFIG_H) \
1059         $(FRAME_H) \
1060         $(INTERVALS_H) \
1061         $(KEYBOARD_H) \
1062         $(LISP_H) \
1063         $(TERMHOOKS_H) \
1064         $(WINDOW_H)
1066 $(BLD)/lastfile.$(O) : \
1067         $(SRC)/lastfile.c \
1068         $(CONFIG_H)
1070 $(BLD)/lread.$(O) : \
1071         $(SRC)/lread.c \
1072         $(SRC)/commands.h \
1073         $(SRC)/epaths.h \
1074         $(NT_INC)/sys/file.h \
1075         $(NT_INC)/sys/stat.h \
1076         $(NT_INC)/unistd.h \
1077         $(BLOCKINPUT_H) \
1078         $(BUFFER_H) \
1079         $(CHARACTER_H) \
1080         $(CHARSET_H) \
1081         $(CODING_H) \
1082         $(CONFIG_H) \
1083         $(FRAME_H) \
1084         $(INTERVALS_H) \
1085         $(KEYBOARD_H) \
1086         $(LISP_H) \
1087         $(STAT_TIME_H) \
1088         $(TERMHOOKS_H)
1090 $(BLD)/macros.$(O) : \
1091         $(SRC)/macros.c \
1092         $(SRC)/commands.h \
1093         $(SRC)/macros.h \
1094         $(BUFFER_H) \
1095         $(CHARACTER_H) \
1096         $(CONFIG_H) \
1097         $(KEYBOARD_H) \
1098         $(LISP_H) \
1099         $(WINDOW_H)
1101 $(BLD)/marker.$(O) : \
1102         $(SRC)/marker.c \
1103         $(BUFFER_H) \
1104         $(CHARACTER_H) \
1105         $(CONFIG_H) \
1106         $(LISP_H)
1108 $(BLD)/menu.$(O) : \
1109         $(SRC)/menu.c \
1110         $(SRC)/keymap.h \
1111         $(BLOCKINPUT_H) \
1112         $(CONFIG_H) \
1113         $(DISPEXTERN_H) \
1114         $(FRAME_H) \
1115         $(KEYBOARD_H) \
1116         $(LISP_H) \
1117         $(MENU_H) \
1118         $(TERMHOOKS_H) \
1119         $(W32TERM_H) \
1120         $(WINDOW_H)
1122 $(BLD)/minibuf.$(O) : \
1123         $(SRC)/minibuf.c \
1124         $(SRC)/commands.h \
1125         $(SRC)/keymap.h \
1126         $(SRC)/syntax.h \
1127         $(BUFFER_H) \
1128         $(CHARACTER_H) \
1129         $(CONFIG_H) \
1130         $(DISPEXTERN_H) \
1131         $(FRAME_H) \
1132         $(INTERVALS_H) \
1133         $(KEYBOARD_H) \
1134         $(LISP_H) \
1135         $(TERMHOOKS_H) \
1136         $(WINDOW_H)
1138 $(BLD)/w32.$(O) : \
1139         $(SRC)/w32.c \
1140         $(SRC)/ndir.h \
1141         $(SRC)/w32.h \
1142         $(SRC)/w32heap.h \
1143         $(NT_INC)/pwd.h \
1144         $(NT_INC)/sys/file.h \
1145         $(NT_INC)/sys/time.h \
1146         $(GNU_LIB)/allocator.h \
1147         $(CAREADLINKAT_H) \
1148         $(CODING_H) \
1149         $(CONFIG_H) \
1150         $(DISPEXTERN_H) \
1151         $(GRP_H) \
1152         $(LISP_H) \
1153         $(PROCESS_H) \
1154         $(SOCKET_H) \
1155         $(SYSTIME_H)
1157 $(BLD)/w32heap.$(O) : \
1158         $(SRC)/w32heap.c \
1159         $(SRC)/w32heap.h \
1160         $(CONFIG_H) \
1161         $(LISP_H)
1163 $(BLD)/w32inevt.$(O) : \
1164         $(SRC)/w32inevt.c \
1165         $(SRC)/termchar.h \
1166         $(SRC)/w32heap.h \
1167         $(SRC)/w32inevt.h \
1168         $(BLOCKINPUT_H) \
1169         $(CONFIG_H) \
1170         $(DISPEXTERN_H) \
1171         $(FRAME_H) \
1172         $(KEYBOARD_H) \
1173         $(LISP_H) \
1174         $(TERMHOOKS_H) \
1175         $(W32TERM_H) \
1176         $(WINDOW_H)
1178 $(BLD)/w32proc.$(O) : \
1179         $(SRC)/w32proc.c \
1180         $(SRC)/syssignal.h \
1181         $(SRC)/syswait.h \
1182         $(SRC)/w32.h \
1183         $(SRC)/w32heap.h \
1184         $(NT_INC)/nl_types.h \
1185         $(NT_INC)/sys/file.h \
1186         $(CODING_H) \
1187         $(CONFIG_H) \
1188         $(DISPEXTERN_H) \
1189         $(LANGINFO_H) \
1190         $(LISP_H) \
1191         $(PROCESS_H) \
1192         $(SYSTIME_H) \
1193         $(W32TERM_H)
1195 $(BLD)/w32console.$(O) : \
1196         $(SRC)/w32console.c \
1197         $(SRC)/disptab.h \
1198         $(SRC)/termchar.h \
1199         $(SRC)/w32heap.h \
1200         $(SRC)/w32inevt.h \
1201         $(CHARACTER_H) \
1202         $(CODING_H) \
1203         $(CONFIG_H) \
1204         $(DISPEXTERN_H) \
1205         $(FRAME_H) \
1206         $(LISP_H) \
1207         $(TERMHOOKS_H) \
1208         $(WINDOW_H)
1210 $(BLD)/print.$(O) : \
1211         $(SRC)/print.c \
1212         $(SRC)/termchar.h \
1213         $(BLOCKINPUT_H) \
1214         $(BUFFER_H) \
1215         $(CHARACTER_H) \
1216         $(CHARSET_H) \
1217         $(CONFIG_H) \
1218         $(DISPEXTERN_H) \
1219         $(FONT_H) \
1220         $(FRAME_H) \
1221         $(FTOASTR_H) \
1222         $(INTERVALS_H) \
1223         $(KEYBOARD_H) \
1224         $(LISP_H) \
1225         $(PROCESS_H) \
1226         $(TERMHOOKS_H) \
1227         $(WINDOW_H)
1229 $(BLD)/process.$(O) : \
1230         $(SRC)/process.c \
1231         $(SRC)/commands.h \
1232         $(SRC)/composite.h \
1233         $(SRC)/gnutls.h \
1234         $(SRC)/sysselect.h \
1235         $(SRC)/syssignal.h \
1236         $(SRC)/syswait.h \
1237         $(SRC)/termopts.h \
1238         $(NT_INC)/arpa/inet.h \
1239         $(NT_INC)/netdb.h \
1240         $(NT_INC)/netinet/in.h \
1241         $(NT_INC)/sys/file.h \
1242         $(NT_INC)/sys/ioctl.h \
1243         $(NT_INC)/sys/stat.h \
1244         $(NT_INC)/unistd.h \
1245         $(ATIMER_H) \
1246         $(BLOCKINPUT_H) \
1247         $(BUFFER_H) \
1248         $(CHARACTER_H) \
1249         $(CODING_H) \
1250         $(CONFIG_H) \
1251         $(DISPEXTERN_H) \
1252         $(FRAME_H) \
1253         $(KEYBOARD_H) \
1254         $(LISP_H) \
1255         $(PROCESS_H) \
1256         $(SOCKET_H) \
1257         $(SYSTIME_H) \
1258         $(SYSTTY_H) \
1259         $(TERMHOOKS_H) \
1260         $(WINDOW_H)
1262 $(BLD)/ralloc.$(O) : \
1263         $(SRC)/ralloc.c \
1264         $(SRC)/getpagesize.h \
1265         $(NT_INC)/unistd.h \
1266         $(BLOCKINPUT_H) \
1267         $(CONFIG_H) \
1268         $(LISP_H)
1270 $(BLD)/regex.$(O) : \
1271         $(SRC)/regex.c \
1272         $(SRC)/category.h \
1273         $(SRC)/regex.h \
1274         $(SRC)/syntax.h \
1275         $(BUFFER_H) \
1276         $(CHARACTER_H) \
1277         $(CONFIG_H) \
1278         $(LISP_H)
1280 $(BLD)/region-cache.$(O) : \
1281         $(SRC)/region-cache.c \
1282         $(SRC)/region-cache.h \
1283         $(BUFFER_H) \
1284         $(CHARACTER_H) \
1285         $(CONFIG_H) \
1286         $(LISP_H)
1288 $(BLD)/scroll.$(O) : \
1289         $(SRC)/scroll.c \
1290         $(SRC)/termchar.h \
1291         $(CONFIG_H) \
1292         $(DISPEXTERN_H) \
1293         $(FRAME_H) \
1294         $(KEYBOARD_H) \
1295         $(LISP_H) \
1296         $(TERMHOOKS_H) \
1297         $(WINDOW_H)
1299 $(BLD)/search.$(O) : \
1300         $(SRC)/search.c \
1301         $(SRC)/category.h \
1302         $(SRC)/commands.h \
1303         $(SRC)/regex.h \
1304         $(SRC)/region-cache.h \
1305         $(SRC)/syntax.h \
1306         $(BLOCKINPUT_H) \
1307         $(BUFFER_H) \
1308         $(CHARACTER_H) \
1309         $(CHARSET_H) \
1310         $(CONFIG_H) \
1311         $(INTERVALS_H) \
1312         $(LISP_H)
1314 $(BLD)/sound.$(O) : \
1315         $(SRC)/sound.c \
1316         $(SRC)/syssignal.h \
1317         $(NT_INC)/unistd.h \
1318         $(ATIMER_H) \
1319         $(CONFIG_H) \
1320         $(DISPEXTERN_H) \
1321         $(LISP_H)
1323 $(BLD)/syntax.$(O) : \
1324         $(SRC)/syntax.c \
1325         $(SRC)/category.h \
1326         $(SRC)/commands.h \
1327         $(SRC)/keymap.h \
1328         $(SRC)/regex.h \
1329         $(SRC)/syntax.h \
1330         $(BUFFER_H) \
1331         $(CHARACTER_H) \
1332         $(CONFIG_H) \
1333         $(INTERVALS_H) \
1334         $(LISP_H)
1336 $(BLD)/sysdep.$(O) : \
1337         $(SRC)/sysdep.c \
1338         $(SRC)/cm.h \
1339         $(SRC)/sysselect.h \
1340         $(SRC)/syssignal.h \
1341         $(SRC)/syswait.h \
1342         $(SRC)/termchar.h \
1343         $(SRC)/termopts.h \
1344         $(NT_INC)/netdb.h \
1345         $(NT_INC)/pwd.h \
1346         $(NT_INC)/sys/file.h \
1347         $(NT_INC)/sys/stat.h \
1348         $(NT_INC)/unistd.h \
1349         $(GNU_LIB)/allocator.h \
1350         $(GNU_LIB)/ignore-value.h \
1351         $(GNU_LIB)/utimens.h \
1352         $(BLOCKINPUT_H) \
1353         $(CAREADLINKAT_H) \
1354         $(CONFIG_H) \
1355         $(DISPEXTERN_H) \
1356         $(FRAME_H) \
1357         $(GRP_H) \
1358         $(KEYBOARD_H) \
1359         $(LISP_H) \
1360         $(PROCESS_H) \
1361         $(SOCKET_H) \
1362         $(SYSTIME_H) \
1363         $(SYSTTY_H) \
1364         $(TERMHOOKS_H) \
1365         $(WINDOW_H)
1367 $(BLD)/term.$(O) : \
1368         $(SRC)/term.c \
1369         $(SRC)/cm.h \
1370         $(SRC)/composite.h \
1371         $(SRC)/disptab.h \
1372         $(SRC)/keymap.h \
1373         $(SRC)/syssignal.h \
1374         $(SRC)/termchar.h \
1375         $(SRC)/termopts.h \
1376         $(SRC)/tparam.h \
1377         $(NT_INC)/sys/file.h \
1378         $(NT_INC)/sys/time.h \
1379         $(NT_INC)/unistd.h \
1380         $(BLOCKINPUT_H) \
1381         $(BUFFER_H) \
1382         $(CHARACTER_H) \
1383         $(CHARSET_H) \
1384         $(CODING_H) \
1385         $(CONFIG_H) \
1386         $(DISPEXTERN_H) \
1387         $(FRAME_H) \
1388         $(INTERVALS_H) \
1389         $(KEYBOARD_H) \
1390         $(LISP_H) \
1391         $(SYSTTY_H) \
1392         $(TERMHOOKS_H) \
1393         $(WINDOW_H)
1395 $(BLD)/terminal.$(O) : \
1396         $(SRC)/terminal.c \
1397         $(SRC)/termchar.h \
1398         $(CHARSET_H) \
1399         $(CODING_H) \
1400         $(CONFIG_H) \
1401         $(FRAME_H) \
1402         $(KEYBOARD_H) \
1403         $(LISP_H) \
1404         $(TERMHOOKS_H)
1406 $(BLD)/textprop.$(O) : \
1407         $(SRC)/textprop.c \
1408         $(BUFFER_H) \
1409         $(CHARACTER_H) \
1410         $(CONFIG_H) \
1411         $(INTERVALS_H) \
1412         $(LISP_H) \
1413         $(WINDOW_H)
1415 $(BLD)/tparam.$(O) : \
1416         $(SRC)/tparam.c \
1417         $(SRC)/tparam.h \
1418         $(CONFIG_H) \
1419         $(LISP_H)
1421 $(BLD)/undo.$(O) : \
1422         $(SRC)/undo.c \
1423         $(SRC)/commands.h \
1424         $(BUFFER_H) \
1425         $(CHARACTER_H) \
1426         $(CONFIG_H) \
1427         $(LISP_H) \
1428         $(WINDOW_H)
1430 $(BLD)/unexw32.$(O) : \
1431         $(SRC)/unexw32.c \
1432         $(SRC)/unexec.h \
1433         $(SRC)/w32heap.h \
1434         $(CONFIG_H)
1436 $(BLD)/vm-limit.$(O) : \
1437         $(SRC)/vm-limit.c \
1438         $(SRC)/mem-limits.h \
1439         $(CONFIG_H) \
1440         $(LISP_H)
1442 $(BLD)/window.$(O) : \
1443         $(SRC)/window.c \
1444         $(SRC)/commands.h \
1445         $(SRC)/disptab.h \
1446         $(SRC)/indent.h \
1447         $(SRC)/keymap.h \
1448         $(SRC)/termchar.h \
1449         $(BLOCKINPUT_H) \
1450         $(BUFFER_H) \
1451         $(CHARACTER_H) \
1452         $(CONFIG_H) \
1453         $(DISPEXTERN_H) \
1454         $(FRAME_H) \
1455         $(INTERVALS_H) \
1456         $(KEYBOARD_H) \
1457         $(LISP_H) \
1458         $(TERMHOOKS_H) \
1459         $(W32TERM_H) \
1460         $(WINDOW_H)
1462 $(BLD)/xdisp.$(O) : \
1463         $(SRC)/xdisp.c \
1464         $(SRC)/commands.h \
1465         $(SRC)/disptab.h \
1466         $(SRC)/fontset.h \
1467         $(SRC)/indent.h \
1468         $(SRC)/keymap.h \
1469         $(SRC)/macros.h \
1470         $(SRC)/region-cache.h \
1471         $(SRC)/termchar.h \
1472         $(SRC)/termopts.h \
1473         $(BLOCKINPUT_H) \
1474         $(BUFFER_H) \
1475         $(CHARACTER_H) \
1476         $(CHARSET_H) \
1477         $(CODING_H) \
1478         $(CONFIG_H) \
1479         $(DISPEXTERN_H) \
1480         $(FONT_H) \
1481         $(FRAME_H) \
1482         $(INTERVALS_H) \
1483         $(KEYBOARD_H) \
1484         $(LISP_H) \
1485         $(PROCESS_H) \
1486         $(TERMHOOKS_H) \
1487         $(W32TERM_H) \
1488         $(WINDOW_H)
1490 $(BLD)/xfaces.$(O) : \
1491         $(SRC)/xfaces.c \
1492         $(SRC)/fontset.h \
1493         $(SRC)/termchar.h \
1494         $(NT_INC)/sys/stat.h \
1495         $(BLOCKINPUT_H) \
1496         $(BUFFER_H) \
1497         $(CHARACTER_H) \
1498         $(CHARSET_H) \
1499         $(CONFIG_H) \
1500         $(DISPEXTERN_H) \
1501         $(FONT_H) \
1502         $(FRAME_H) \
1503         $(INTERVALS_H) \
1504         $(KEYBOARD_H) \
1505         $(LISP_H) \
1506         $(TERMHOOKS_H) \
1507         $(W32TERM_H) \
1508         $(WINDOW_H)
1510 $(BLD)/w32fns.$(O) : \
1511         $(SRC)/w32fns.c \
1512         $(SRC)/ccl.h \
1513         $(SRC)/epaths.h \
1514         $(SRC)/fontset.h \
1515         $(SRC)/w32.h \
1516         $(SRC)/w32font.h \
1517         $(SRC)/w32heap.h \
1518         $(BLOCKINPUT_H) \
1519         $(BUFFER_H) \
1520         $(CHARACTER_H) \
1521         $(CHARSET_H) \
1522         $(CODING_H) \
1523         $(CONFIG_H) \
1524         $(DISPEXTERN_H) \
1525         $(FONT_H) \
1526         $(FRAME_H) \
1527         $(INTERVALS_H) \
1528         $(KEYBOARD_H) \
1529         $(LISP_H) \
1530         $(SYSTIME_H) \
1531         $(TERMHOOKS_H) \
1532         $(W32TERM_H) \
1533         $(WINDOW_H)
1535 $(BLD)/w32menu.$(O) : \
1536         $(SRC)/w32menu.c \
1537         $(SRC)/keymap.h \
1538         $(SRC)/w32heap.h \
1539         $(BLOCKINPUT_H) \
1540         $(BUFFER_H) \
1541         $(CHARACTER_H) \
1542         $(CHARSET_H) \
1543         $(CODING_H) \
1544         $(CONFIG_H) \
1545         $(DISPEXTERN_H) \
1546         $(FRAME_H) \
1547         $(KEYBOARD_H) \
1548         $(LISP_H) \
1549         $(MENU_H) \
1550         $(TERMHOOKS_H) \
1551         $(W32TERM_H) \
1552         $(WINDOW_H)
1554 $(BLD)/w32term.$(O) : \
1555         $(SRC)/w32term.c \
1556         $(SRC)/ccl.h \
1557         $(SRC)/disptab.h \
1558         $(SRC)/fontset.h \
1559         $(SRC)/keymap.h \
1560         $(SRC)/termchar.h \
1561         $(SRC)/termopts.h \
1562         $(SRC)/w32font.h \
1563         $(SRC)/w32heap.h \
1564         $(NT_INC)/sys/stat.h \
1565         $(ATIMER_H) \
1566         $(BLOCKINPUT_H) \
1567         $(BUFFER_H) \
1568         $(CHARACTER_H) \
1569         $(CHARSET_H) \
1570         $(CODING_H) \
1571         $(CONFIG_H) \
1572         $(DISPEXTERN_H) \
1573         $(FONT_H) \
1574         $(FRAME_H) \
1575         $(INTERVALS_H) \
1576         $(KEYBOARD_H) \
1577         $(LISP_H) \
1578         $(PROCESS_H) \
1579         $(SYSTIME_H) \
1580         $(SYSTTY_H) \
1581         $(TERMHOOKS_H) \
1582         $(W32TERM_H) \
1583         $(WINDOW_H)
1585 $(BLD)/w32select.$(O) : \
1586         $(SRC)/w32select.c \
1587         $(SRC)/composite.h \
1588         $(SRC)/w32heap.h \
1589         $(BLOCKINPUT_H) \
1590         $(CHARSET_H) \
1591         $(CODING_H) \
1592         $(CONFIG_H) \
1593         $(LISP_H) \
1594         $(W32TERM_H)
1596 $(BLD)/w32reg.$(O) : \
1597         $(SRC)/w32reg.c \
1598         $(BLOCKINPUT_H) \
1599         $(CONFIG_H) \
1600         $(LISP_H) \
1601         $(W32TERM_H)
1603 $(BLD)/w32xfns.$(O) : \
1604         $(SRC)/w32xfns.c \
1605         $(SRC)/fontset.h \
1606         $(BLOCKINPUT_H) \
1607         $(CHARSET_H) \
1608         $(CONFIG_H) \
1609         $(FRAME_H) \
1610         $(KEYBOARD_H) \
1611         $(LISP_H) \
1612         $(W32TERM_H)
1614 $(BLD)/w32font.$(O) : \
1615         $(SRC)/w32font.c \
1616         $(SRC)/fontset.h \
1617         $(SRC)/w32font.h \
1618         $(CHARACTER_H) \
1619         $(CHARSET_H) \
1620         $(CODING_H) \
1621         $(CONFIG_H) \
1622         $(DISPEXTERN_H) \
1623         $(FONT_H) \
1624         $(FRAME_H) \
1625         $(LISP_H) \
1626         $(W32TERM_H)
1628 $(BLD)/w32uniscribe.$(O) : \
1629         $(SRC)/w32uniscribe.c \
1630         $(SRC)/composite.h \
1631         $(SRC)/fontset.h \
1632         $(SRC)/w32font.h \
1633         $(CHARACTER_H) \
1634         $(CHARSET_H) \
1635         $(CONFIG_H) \
1636         $(DISPEXTERN_H) \
1637         $(FONT_H) \
1638         $(FRAME_H) \
1639         $(LISP_H) \
1640         $(W32TERM_H)
1642 # Each object file depends on stamp_BLD, because in parallel builds we must
1643 # make sure $(BLD) exists before starting compilations.
1645 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD