socket args
[emacs.git] / src / makefile.w32-in
blob792b66b0e4f03de8c36279fb2404e322d0ab8d46
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000-2011  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
28 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
29 # the emacs source tree.
31 LOCAL_FLAGS     = -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
33 SRC             = .
34 EMACS           = $(BLD)/emacs.exe
35 TEMACS          = $(BLD)/temacs.exe
36 TEMACS_TMP      = $(BLD)/temacs.bin
37 TLIB0           = $(BLD)/temacs0.$(A)
38 TLIB1           = $(BLD)/temacs1.$(A)
39 TLIB2           = $(BLD)/temacs2.$(A)
40 TOBJ            = $(BLD)/firstfile.$(O)
41 TRES            = $(BLD)/emacs.res
42 TLASTLIB        = $(BLD)/lastfile.$(A)
43 GNULIB          = ../lib/$(BLD)/libgnu.$(A)
45 DOC             = $(OBJDIR)/etc/DOC-X
47 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
50 # Split up the objects into two sets so that we don't run out of
51 # command line space when we link them into a library.
53 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
54 # as the "main" object file when linking.
56 OBJ0 =  $(BLD)/emacs.$(O)
58 OBJ1 =  $(BLD)/alloc.$(O)               \
59         $(BLD)/atimer.$(O)              \
60         $(BLD)/buffer.$(O)              \
61         $(BLD)/bytecode.$(O)            \
62         $(BLD)/callint.$(O)             \
63         $(BLD)/callproc.$(O)            \
64         $(BLD)/casefiddle.$(O)          \
65         $(BLD)/cmds.$(O)                \
66         $(BLD)/data.$(O)                \
67         $(BLD)/dired.$(O)               \
68         $(BLD)/dispnew.$(O)             \
69         $(BLD)/doc.$(O)                 \
70         $(BLD)/doprnt.$(O)              \
71         $(BLD)/editfns.$(O)             \
72         $(BLD)/eval.$(O)                \
73         $(BLD)/fileio.$(O)              \
74         $(BLD)/filelock.$(O)            \
75         $(BLD)/fns.$(O)                 \
76         $(BLD)/indent.$(O)              \
77         $(BLD)/insdel.$(O)              \
78         $(BLD)/keyboard.$(O)            \
79         $(BLD)/keymap.$(O)              \
80         $(BLD)/lread.$(O)               \
81         $(BLD)/macros.$(O)              \
82         $(BLD)/marker.$(O)              \
83         $(BLD)/minibuf.$(O)             \
84         $(BLD)/w32.$(O)                 \
85         $(BLD)/w32heap.$(O)             \
86         $(BLD)/w32inevt.$(O)            \
87         $(BLD)/w32proc.$(O)             \
88         $(BLD)/w32console.$(O)          \
89         $(BLD)/print.$(O)               \
90         $(BLD)/process.$(O)             \
91         $(BLD)/regex.$(O)               \
92         $(BLD)/scroll.$(O)              \
93         $(BLD)/search.$(O)              \
94         $(BLD)/sound.$(O)               \
95         $(BLD)/syntax.$(O)
97 OBJ2 =  $(BLD)/sysdep.$(O)              \
98         $(BLD)/term.$(O)                \
99         $(BLD)/tparam.$(O)              \
100         $(BLD)/undo.$(O)                \
101         $(BLD)/unexw32.$(O)             \
102         $(BLD)/window.$(O)              \
103         $(BLD)/xdisp.$(O)               \
104         $(BLD)/casetab.$(O)             \
105         $(BLD)/floatfns.$(O)            \
106         $(BLD)/frame.$(O)               \
107         $(BLD)/gmalloc.$(O)             \
108         $(BLD)/gnutls.$(O)              \
109         $(BLD)/intervals.$(O)           \
110         $(BLD)/composite.$(O)           \
111         $(BLD)/ralloc.$(O)              \
112         $(BLD)/textprop.$(O)            \
113         $(BLD)/vm-limit.$(O)            \
114         $(BLD)/region-cache.$(O)        \
115         $(BLD)/bidi.$(O)                \
116         $(BLD)/charset.$(O)             \
117         $(BLD)/character.$(O)           \
118         $(BLD)/chartab.$(O)             \
119         $(BLD)/coding.$(O)              \
120         $(BLD)/category.$(O)            \
121         $(BLD)/ccl.$(O)                 \
122         $(BLD)/font.$(O)                \
123         $(BLD)/fontset.$(O)             \
124         $(BLD)/fringe.$(O)              \
125         $(BLD)/image.$(O)               \
126         $(BLD)/terminal.$(O)            \
127         $(BLD)/menu.$(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         "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
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
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         "../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)/m/intel386.h $(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           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ0))
352         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
353           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1))
354         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
355           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2)) \
356           $(CURDIR)/*.h $(CURDIR)/m/intel386.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 ATIMER_H       = $(SRC)/atimer.h \
392                  $(SYSTIME_H)
393 BLOCKINPUT_H   = $(SRC)/blockinput.h \
394                  $(ATIMER_H)
395 CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
396                  $(NT_INC)/unistd.h
397 CHARACTER_H    = $(SRC)/character.h \
398                  $(GNU_LIB)/verify.h
399 CHARSET_H      = $(SRC)/charset.h \
400                  $(GNU_LIB)/verify.h
401 CODING_H       = $(SRC)/coding.h \
402                  $(SRC)/composite.h
403 MS_W32_H       = $(SRC)/s/ms-w32.h \
404                  $(NT_INC)/sys/stat.h
405 CONFIG_H       = $(SRC)/config.h \
406                  $(SRC)/m/intel386.h \
407                  $(MS_W32_H)
408 DIR_H          = $(NT_INC)/sys/dir.h \
409                  $(SRC)/ndir.h
410 W32GUI_H       = $(SRC)/w32gui.h \
411                  $(SYSTIME_H)
412 DISPEXTERN_H   = $(SRC)/dispextern.h \
413                  $(W32GUI_H)
414 FILEMODE_H     = $(GNU_LIB)/filemode.h \
415                  $(NT_INC)/sys/stat.h
416 FONT_H         = $(SRC)/font.h \
417                  $(SRC)/ccl.h
418 FRAME_H        = $(SRC)/frame.h \
419                  $(DISPEXTERN_H)
420 FTOASTR_H      = $(GNU_LIB)/ftoastr.h \
421                  $(GNU_LIB)/intprops.h
422 GRP_H          = $(NT_INC)/grp.h \
423                  $(NT_INC)/pwd.h
424 INTERVALS_H    = $(SRC)/intervals.h \
425                  $(SRC)/composite.h \
426                  $(DISPEXTERN_H)
427 INTTYPES_H     = $(NT_INC)/inttypes.h \
428                  $(NT_INC)/stdint.h
429 KEYBOARD_H     = $(SRC)/keyboard.h \
430                  $(CODING_H) \
431                  $(SYSTIME_H)
432 LANGINFO_H     = $(NT_INC)/langinfo.h \
433                  $(NT_INC)/nl_types.h
434 LISP_H         = $(SRC)/lisp.h \
435                  $(SRC)/globals.h \
436                  $(GNU_LIB)/intprops.h \
437                  $(INTTYPES_H)
438 MD5_H          = $(GNU_LIB)/md5.h \
439                  $(NT_INC)/stdint.h
440 MENU_H         = $(SRC)/menu.h \
441                  $(SYSTIME_H)
442 PROCESS_H      = $(SRC)/process.h \
443                  $(SRC)/gnutls.h \
444                  $(NT_INC)/unistd.h
445 SHA1_H         = $(GNU_LIB)/sha1.h \
446                  $(NT_INC)/stdint.h
447 SHA256_H       = $(GNU_LIB)/sha256.h \
448                  $(NT_INC)/stdint.h
449 U64_H          = $(GNU_LIB)/u64.h \
450                  $(NT_INC)/stdint.h
451 SHA512_H       = $(GNU_LIB)/sha512.h \
452                  $(U64_H)
453 SOCKET_H       = $(NT_INC)/sys/socket.h \
454                  $(SRC)/w32.h
455 SYSTTY_H       = $(SRC)/systty.h \
456                  $(NT_INC)/sys/ioctl.h \
457                  $(NT_INC)/unistd.h
458 TERMHOOKS_H    = $(SRC)/termhooks.h \
459                  $(SYSTIME_H)
460 W32TERM_H      = $(SRC)/w32term.h \
461                  $(W32GUI_H)
462 WINDOW_H       = $(SRC)/window.h \
463                  $(DISPEXTERN_H)
465 $(BLD)/alloc.$(O) : \
466         $(SRC)/alloc.c \
467         $(SRC)/buffer.h \
468         $(SRC)/puresize.h \
469         $(SRC)/syssignal.h \
470         $(SRC)/w32.h \
471         $(NT_INC)/unistd.h \
472         $(BLOCKINPUT_H) \
473         $(CHARACTER_H) \
474         $(CONFIG_H) \
475         $(FRAME_H) \
476         $(INTERVALS_H) \
477         $(KEYBOARD_H) \
478         $(LISP_H) \
479         $(PROCESS_H) \
480         $(TERMHOOKS_H) \
481         $(WINDOW_H)
483 $(BLD)/atimer.$(O) : \
484         $(SRC)/atimer.c \
485         $(SRC)/syssignal.h \
486         $(NT_INC)/sys/time.h \
487         $(NT_INC)/unistd.h \
488         $(ATIMER_H) \
489         $(BLOCKINPUT_H) \
490         $(CONFIG_H) \
491         $(LISP_H) \
492         $(SYSTIME_H)
494 $(BLD)/bidi.$(O) : \
495         $(SRC)/bidi.c \
496         $(SRC)/buffer.h \
497         $(CHARACTER_H) \
498         $(CONFIG_H) \
499         $(DISPEXTERN_H) \
500         $(LISP_H)
502 $(BLD)/buffer.$(O) : \
503         $(SRC)/buffer.c \
504         $(SRC)/buffer.h \
505         $(SRC)/commands.h \
506         $(SRC)/indent.h \
507         $(SRC)/keymap.h \
508         $(SRC)/region-cache.h \
509         $(NT_INC)/sys/param.h \
510         $(NT_INC)/sys/stat.h \
511         $(NT_INC)/unistd.h \
512         $(GNU_LIB)/verify.h \
513         $(BLOCKINPUT_H) \
514         $(CHARACTER_H) \
515         $(CONFIG_H) \
516         $(FRAME_H) \
517         $(INTERVALS_H) \
518         $(KEYBOARD_H) \
519         $(LISP_H) \
520         $(WINDOW_H)
522 $(BLD)/bytecode.$(O) : \
523         $(SRC)/bytecode.c \
524         $(SRC)/buffer.h \
525         $(SRC)/syntax.h \
526         $(CHARACTER_H) \
527         $(CONFIG_H) \
528         $(LISP_H) \
529         $(WINDOW_H)
531 $(BLD)/callint.$(O) : \
532         $(SRC)/callint.c \
533         $(SRC)/buffer.h \
534         $(SRC)/commands.h \
535         $(SRC)/keymap.h \
536         $(CHARACTER_H) \
537         $(CONFIG_H) \
538         $(KEYBOARD_H) \
539         $(LISP_H) \
540         $(WINDOW_H)
542 $(BLD)/callproc.$(O) : \
543         $(SRC)/callproc.c \
544         $(SRC)/buffer.h \
545         $(SRC)/ccl.h \
546         $(SRC)/commands.h \
547         $(SRC)/composite.h \
548         $(SRC)/epaths.h \
549         $(SRC)/syssignal.h \
550         $(SRC)/w32.h \
551         $(NT_INC)/sys/file.h \
552         $(NT_INC)/unistd.h \
553         $(BLOCKINPUT_H) \
554         $(CHARACTER_H) \
555         $(CODING_H) \
556         $(CONFIG_H) \
557         $(FRAME_H) \
558         $(LISP_H) \
559         $(PROCESS_H) \
560         $(SYSTTY_H) \
561         $(TERMHOOKS_H)
563 $(BLD)/casefiddle.$(O) : \
564         $(SRC)/casefiddle.c \
565         $(SRC)/buffer.h \
566         $(SRC)/commands.h \
567         $(SRC)/composite.h \
568         $(SRC)/keymap.h \
569         $(SRC)/syntax.h \
570         $(CHARACTER_H) \
571         $(CONFIG_H) \
572         $(LISP_H)
574 $(BLD)/casetab.$(O) : \
575         $(SRC)/casetab.c \
576         $(SRC)/buffer.h \
577         $(CHARACTER_H) \
578         $(CONFIG_H) \
579         $(LISP_H)
581 $(BLD)/category.$(O) : \
582         $(SRC)/category.c \
583         $(SRC)/buffer.h \
584         $(SRC)/category.h \
585         $(SRC)/keymap.h \
586         $(CHARACTER_H) \
587         $(CHARSET_H) \
588         $(CONFIG_H) \
589         $(LISP_H)
591 $(BLD)/ccl.$(O) : \
592         $(SRC)/ccl.c \
593         $(SRC)/ccl.h \
594         $(CHARACTER_H) \
595         $(CHARSET_H) \
596         $(CODING_H) \
597         $(CONFIG_H) \
598         $(LISP_H)
600 $(BLD)/character.$(O) : \
601         $(SRC)/character.c \
602         $(SRC)/buffer.h \
603         $(SRC)/composite.h \
604         $(SRC)/disptab.h \
605         $(GNU_LIB)/intprops.h \
606         $(CHARACTER_H) \
607         $(CHARSET_H) \
608         $(CONFIG_H) \
609         $(LISP_H)
611 $(BLD)/charset.$(O) : \
612         $(SRC)/charset.c \
613         $(SRC)/buffer.h \
614         $(SRC)/disptab.h \
615         $(NT_INC)/unistd.h \
616         $(CHARACTER_H) \
617         $(CHARSET_H) \
618         $(CODING_H) \
619         $(CONFIG_H) \
620         $(LISP_H)
622 $(BLD)/chartab.$(O) : \
623         $(SRC)/chartab.c \
624         $(SRC)/ccl.h \
625         $(CHARACTER_H) \
626         $(CHARSET_H) \
627         $(CONFIG_H) \
628         $(LISP_H)
630 $(BLD)/cmds.$(O) : \
631         $(SRC)/cmds.c \
632         $(SRC)/buffer.h \
633         $(SRC)/commands.h \
634         $(SRC)/keymap.h \
635         $(SRC)/syntax.h \
636         $(CHARACTER_H) \
637         $(CONFIG_H) \
638         $(DISPEXTERN_H) \
639         $(FRAME_H) \
640         $(KEYBOARD_H) \
641         $(LISP_H) \
642         $(WINDOW_H)
644 $(BLD)/coding.$(O) : \
645         $(SRC)/coding.c \
646         $(SRC)/buffer.h \
647         $(SRC)/ccl.h \
648         $(SRC)/composite.h \
649         $(CHARACTER_H) \
650         $(CHARSET_H) \
651         $(CODING_H) \
652         $(CONFIG_H) \
653         $(FRAME_H) \
654         $(LISP_H) \
655         $(TERMHOOKS_H) \
656         $(WINDOW_H)
658 $(BLD)/composite.$(O) : \
659         $(SRC)/composite.c \
660         $(SRC)/buffer.h \
661         $(CHARACTER_H) \
662         $(CODING_H) \
663         $(CONFIG_H) \
664         $(DISPEXTERN_H) \
665         $(FONT_H) \
666         $(FRAME_H) \
667         $(INTERVALS_H) \
668         $(LISP_H) \
669         $(TERMHOOKS_H) \
670         $(WINDOW_H)
672 $(BLD)/data.$(O) : \
673         $(SRC)/data.c \
674         $(SRC)/buffer.h \
675         $(SRC)/puresize.h \
676         $(SRC)/syssignal.h \
677         $(GNU_LIB)/intprops.h \
678         $(CHARACTER_H) \
679         $(CONFIG_H) \
680         $(FONT_H) \
681         $(FRAME_H) \
682         $(KEYBOARD_H) \
683         $(LISP_H) \
684         $(TERMHOOKS_H)
686 $(BLD)/dired.$(O) : \
687         $(SRC)/dired.c \
688         $(SRC)/buffer.h \
689         $(SRC)/commands.h \
690         $(SRC)/regex.h \
691         $(NT_INC)/pwd.h \
692         $(NT_INC)/sys/stat.h \
693         $(NT_INC)/unistd.h \
694         $(BLOCKINPUT_H) \
695         $(CHARACTER_H) \
696         $(CHARSET_H) \
697         $(CODING_H) \
698         $(CONFIG_H) \
699         $(DIR_H) \
700         $(FILEMODE_H) \
701         $(GRP_H) \
702         $(LISP_H) \
703         $(SYSTIME_H)
705 $(BLD)/dispnew.$(O) : \
706         $(SRC)/dispnew.c \
707         $(SRC)/buffer.h \
708         $(SRC)/cm.h \
709         $(SRC)/commands.h \
710         $(SRC)/disptab.h \
711         $(SRC)/indent.h \
712         $(SRC)/syssignal.h \
713         $(SRC)/termchar.h \
714         $(SRC)/termopts.h \
715         $(NT_INC)/unistd.h \
716         $(BLOCKINPUT_H) \
717         $(CHARACTER_H) \
718         $(CONFIG_H) \
719         $(DISPEXTERN_H) \
720         $(FRAME_H) \
721         $(INTERVALS_H) \
722         $(KEYBOARD_H) \
723         $(LISP_H) \
724         $(PROCESS_H) \
725         $(SYSTIME_H) \
726         $(TERMHOOKS_H) \
727         $(W32TERM_H) \
728         $(WINDOW_H)
730 $(BLD)/doc.$(O) : \
731         $(SRC)/doc.c \
732         $(SRC)/buffer.h \
733         $(SRC)/buildobj.h \
734         $(SRC)/keymap.h \
735         $(NT_INC)/sys/file.h \
736         $(NT_INC)/unistd.h \
737         $(CHARACTER_H) \
738         $(CONFIG_H) \
739         $(KEYBOARD_H) \
740         $(LISP_H)
742 $(BLD)/doprnt.$(O) : \
743         $(SRC)/doprnt.c \
744         $(NT_INC)/unistd.h \
745         $(CHARACTER_H) \
746         $(CONFIG_H) \
747         $(LISP_H)
749 $(BLD)/editfns.$(O) : \
750         $(SRC)/editfns.c \
751         $(SRC)/buffer.h \
752         $(NT_INC)/pwd.h \
753         $(NT_INC)/unistd.h \
754         $(GNU_LIB)/intprops.h \
755         $(GNU_LIB)/strftime.h \
756         $(GNU_LIB)/verify.h \
757         $(BLOCKINPUT_H) \
758         $(CHARACTER_H) \
759         $(CODING_H) \
760         $(CONFIG_H) \
761         $(FRAME_H) \
762         $(INTERVALS_H) \
763         $(LISP_H) \
764         $(SYSTIME_H) \
765         $(WINDOW_H)
767 $(BLD)/emacs.$(O) : \
768         $(SRC)/emacs.c \
769         $(SRC)/buffer.h \
770         $(SRC)/commands.h \
771         $(SRC)/gnutls.h \
772         $(SRC)/keymap.h \
773         $(SRC)/syssignal.h \
774         $(SRC)/unexec.h \
775         $(SRC)/w32.h \
776         $(SRC)/w32heap.h \
777         $(NT_INC)/sys/file.h \
778         $(NT_INC)/unistd.h \
779         $(BLOCKINPUT_H) \
780         $(CONFIG_H) \
781         $(FRAME_H) \
782         $(INTERVALS_H) \
783         $(KEYBOARD_H) \
784         $(LISP_H) \
785         $(PROCESS_H) \
786         $(SYSTTY_H) \
787         $(TERMHOOKS_H) \
788         $(WINDOW_H)
790 $(BLD)/eval.$(O) : \
791         $(SRC)/eval.c \
792         $(SRC)/commands.h \
793         $(BLOCKINPUT_H) \
794         $(CONFIG_H) \
795         $(DISPEXTERN_H) \
796         $(FRAME_H) \
797         $(KEYBOARD_H) \
798         $(LISP_H)
800 $(BLD)/fileio.$(O) : \
801         $(SRC)/fileio.c \
802         $(SRC)/buffer.h \
803         $(SRC)/commands.h \
804         $(NT_INC)/pwd.h \
805         $(NT_INC)/sys/stat.h \
806         $(NT_INC)/unistd.h \
807         $(BLOCKINPUT_H) \
808         $(CHARACTER_H) \
809         $(CODING_H) \
810         $(CONFIG_H) \
811         $(DISPEXTERN_H) \
812         $(FRAME_H) \
813         $(INTERVALS_H) \
814         $(LISP_H) \
815         $(SYSTIME_H) \
816         $(WINDOW_H)
818 $(BLD)/filelock.$(O) : \
819         $(SRC)/filelock.c \
820         $(SRC)/buffer.h \
821         $(NT_INC)/pwd.h \
822         $(NT_INC)/sys/file.h \
823         $(NT_INC)/sys/stat.h \
824         $(NT_INC)/unistd.h \
825         $(CHARACTER_H) \
826         $(CODING_H) \
827         $(CONFIG_H) \
828         $(LISP_H) \
829         $(SYSTIME_H)
831 $(BLD)/firstfile.$(O) : \
832         $(SRC)/firstfile.c \
833         $(CONFIG_H)
835 $(BLD)/floatfns.$(O) : \
836         $(SRC)/floatfns.c \
837         $(SRC)/syssignal.h \
838         $(CONFIG_H) \
839         $(LISP_H)
841 $(BLD)/fns.$(O) : \
842         $(SRC)/fns.c \
843         $(SRC)/buffer.h \
844         $(SRC)/commands.h \
845         $(SRC)/keymap.h \
846         $(NT_INC)/unistd.h \
847         $(GNU_LIB)/intprops.h \
848         $(BLOCKINPUT_H) \
849         $(CHARACTER_H) \
850         $(CODING_H) \
851         $(CONFIG_H) \
852         $(FRAME_H) \
853         $(INTERVALS_H) \
854         $(KEYBOARD_H) \
855         $(LANGINFO_H) \
856         $(LISP_H) \
857         $(MD5_H) \
858         $(SHA1_H) \
859         $(SHA256_H) \
860         $(SHA512_H) \
861         $(WINDOW_H)
863 $(BLD)/font.$(O) : \
864         $(SRC)/font.c \
865         $(SRC)/buffer.h \
866         $(SRC)/composite.h \
867         $(SRC)/fontset.h \
868         $(CHARACTER_H) \
869         $(CHARSET_H) \
870         $(CONFIG_H) \
871         $(DISPEXTERN_H) \
872         $(FONT_H) \
873         $(FRAME_H) \
874         $(LISP_H) \
875         $(W32TERM_H) \
876         $(WINDOW_H)
878 $(BLD)/fontset.$(O) : \
879         $(SRC)/fontset.c \
880         $(SRC)/buffer.h \
881         $(SRC)/ccl.h \
882         $(SRC)/fontset.h \
883         $(BLOCKINPUT_H) \
884         $(CHARACTER_H) \
885         $(CHARSET_H) \
886         $(CONFIG_H) \
887         $(DISPEXTERN_H) \
888         $(FONT_H) \
889         $(FRAME_H) \
890         $(INTERVALS_H) \
891         $(KEYBOARD_H) \
892         $(LISP_H) \
893         $(TERMHOOKS_H) \
894         $(W32TERM_H) \
895         $(WINDOW_H)
897 $(BLD)/frame.$(O) : \
898         $(SRC)/frame.c \
899         $(SRC)/buffer.h \
900         $(SRC)/commands.h \
901         $(SRC)/fontset.h \
902         $(SRC)/termchar.h \
903         $(BLOCKINPUT_H) \
904         $(CHARACTER_H) \
905         $(CONFIG_H) \
906         $(DISPEXTERN_H) \
907         $(FONT_H) \
908         $(FRAME_H) \
909         $(KEYBOARD_H) \
910         $(LISP_H) \
911         $(TERMHOOKS_H) \
912         $(W32TERM_H) \
913         $(WINDOW_H)
915 $(BLD)/fringe.$(O) : \
916         $(SRC)/fringe.c \
917         $(SRC)/buffer.h \
918         $(BLOCKINPUT_H) \
919         $(CONFIG_H) \
920         $(DISPEXTERN_H) \
921         $(FRAME_H) \
922         $(LISP_H) \
923         $(TERMHOOKS_H) \
924         $(WINDOW_H)
926 $(BLD)/gmalloc.$(O) : \
927         $(SRC)/gmalloc.c \
928         $(SRC)/getpagesize.h \
929         $(NT_INC)/unistd.h \
930         $(CONFIG_H)
932 $(BLD)/gnutls.$(O) : \
933         $(SRC)/gnutls.c \
934         $(SRC)/w32.h \
935         $(CONFIG_H) \
936         $(LISP_H) \
937         $(PROCESS_H)
939 $(BLD)/image.$(O) : \
940         $(SRC)/image.c \
941         $(SRC)/epaths.h \
942         $(SRC)/w32.h \
943         $(NT_INC)/unistd.h \
944         $(BLOCKINPUT_H) \
945         $(CHARACTER_H) \
946         $(CODING_H) \
947         $(CONFIG_H) \
948         $(DISPEXTERN_H) \
949         $(FONT_H) \
950         $(FRAME_H) \
951         $(LISP_H) \
952         $(SYSTIME_H) \
953         $(TERMHOOKS_H) \
954         $(W32TERM_H) \
955         $(WINDOW_H)
957 $(BLD)/indent.$(O) : \
958         $(SRC)/indent.c \
959         $(SRC)/buffer.h \
960         $(SRC)/category.h \
961         $(SRC)/composite.h \
962         $(SRC)/disptab.h \
963         $(SRC)/indent.h \
964         $(SRC)/region-cache.h \
965         $(SRC)/termchar.h \
966         $(SRC)/termopts.h \
967         $(CHARACTER_H) \
968         $(CONFIG_H) \
969         $(DISPEXTERN_H) \
970         $(FRAME_H) \
971         $(INTERVALS_H) \
972         $(KEYBOARD_H) \
973         $(LISP_H) \
974         $(WINDOW_H)
976 $(BLD)/insdel.$(O) : \
977         $(SRC)/insdel.c \
978         $(SRC)/buffer.h \
979         $(SRC)/region-cache.h \
980         $(GNU_LIB)/intprops.h \
981         $(BLOCKINPUT_H) \
982         $(CHARACTER_H) \
983         $(CONFIG_H) \
984         $(INTERVALS_H) \
985         $(LISP_H) \
986         $(WINDOW_H)
988 $(BLD)/intervals.$(O) : \
989         $(SRC)/intervals.c \
990         $(SRC)/buffer.h \
991         $(SRC)/keymap.h \
992         $(SRC)/puresize.h \
993         $(GNU_LIB)/intprops.h \
994         $(CONFIG_H) \
995         $(INTERVALS_H) \
996         $(KEYBOARD_H) \
997         $(LISP_H)
999 $(BLD)/keyboard.$(O) : \
1000         $(SRC)/keyboard.c \
1001         $(SRC)/buffer.h \
1002         $(SRC)/commands.h \
1003         $(SRC)/disptab.h \
1004         $(SRC)/keymap.h \
1005         $(SRC)/macros.h \
1006         $(SRC)/puresize.h \
1007         $(SRC)/syntax.h \
1008         $(SRC)/syssignal.h \
1009         $(SRC)/termchar.h \
1010         $(SRC)/termopts.h \
1011         $(NT_INC)/sys/ioctl.h \
1012         $(NT_INC)/unistd.h \
1013         $(ATIMER_H) \
1014         $(BLOCKINPUT_H) \
1015         $(CHARACTER_H) \
1016         $(CONFIG_H) \
1017         $(DISPEXTERN_H) \
1018         $(FRAME_H) \
1019         $(INTERVALS_H) \
1020         $(KEYBOARD_H) \
1021         $(LISP_H) \
1022         $(PROCESS_H) \
1023         $(SYSTIME_H) \
1024         $(TERMHOOKS_H) \
1025         $(W32TERM_H) \
1026         $(WINDOW_H)
1028 $(BLD)/keymap.$(O) : \
1029         $(SRC)/keymap.c \
1030         $(SRC)/buffer.h \
1031         $(SRC)/commands.h \
1032         $(SRC)/keymap.h \
1033         $(SRC)/puresize.h \
1034         $(BLOCKINPUT_H) \
1035         $(CHARACTER_H) \
1036         $(CHARSET_H) \
1037         $(CONFIG_H) \
1038         $(FRAME_H) \
1039         $(INTERVALS_H) \
1040         $(KEYBOARD_H) \
1041         $(LISP_H) \
1042         $(TERMHOOKS_H) \
1043         $(WINDOW_H)
1045 $(BLD)/lastfile.$(O) : \
1046         $(SRC)/lastfile.c \
1047         $(CONFIG_H)
1049 $(BLD)/lread.$(O) : \
1050         $(SRC)/lread.c \
1051         $(SRC)/buffer.h \
1052         $(SRC)/commands.h \
1053         $(SRC)/epaths.h \
1054         $(NT_INC)/sys/file.h \
1055         $(NT_INC)/sys/stat.h \
1056         $(NT_INC)/unistd.h \
1057         $(BLOCKINPUT_H) \
1058         $(CHARACTER_H) \
1059         $(CHARSET_H) \
1060         $(CODING_H) \
1061         $(CONFIG_H) \
1062         $(FRAME_H) \
1063         $(INTERVALS_H) \
1064         $(KEYBOARD_H) \
1065         $(LISP_H) \
1066         $(TERMHOOKS_H)
1068 $(BLD)/macros.$(O) : \
1069         $(SRC)/macros.c \
1070         $(SRC)/buffer.h \
1071         $(SRC)/commands.h \
1072         $(SRC)/macros.h \
1073         $(CONFIG_H) \
1074         $(KEYBOARD_H) \
1075         $(LISP_H) \
1076         $(WINDOW_H)
1078 $(BLD)/marker.$(O) : \
1079         $(SRC)/marker.c \
1080         $(SRC)/buffer.h \
1081         $(CHARACTER_H) \
1082         $(CONFIG_H) \
1083         $(LISP_H)
1085 $(BLD)/menu.$(O) : \
1086         $(SRC)/menu.c \
1087         $(SRC)/keymap.h \
1088         $(BLOCKINPUT_H) \
1089         $(CONFIG_H) \
1090         $(DISPEXTERN_H) \
1091         $(FRAME_H) \
1092         $(KEYBOARD_H) \
1093         $(LISP_H) \
1094         $(MENU_H) \
1095         $(TERMHOOKS_H) \
1096         $(W32TERM_H) \
1097         $(WINDOW_H)
1099 $(BLD)/minibuf.$(O) : \
1100         $(SRC)/minibuf.c \
1101         $(SRC)/buffer.h \
1102         $(SRC)/commands.h \
1103         $(SRC)/keymap.h \
1104         $(SRC)/syntax.h \
1105         $(CONFIG_H) \
1106         $(DISPEXTERN_H) \
1107         $(FRAME_H) \
1108         $(INTERVALS_H) \
1109         $(KEYBOARD_H) \
1110         $(LISP_H) \
1111         $(TERMHOOKS_H) \
1112         $(WINDOW_H)
1114 $(BLD)/w32.$(O) : \
1115         $(SRC)/w32.c \
1116         $(SRC)/ndir.h \
1117         $(SRC)/w32.h \
1118         $(SRC)/w32heap.h \
1119         $(NT_INC)/pwd.h \
1120         $(NT_INC)/sys/file.h \
1121         $(NT_INC)/sys/time.h \
1122         $(GNU_LIB)/allocator.h \
1123         $(CAREADLINKAT_H) \
1124         $(CODING_H) \
1125         $(CONFIG_H) \
1126         $(DISPEXTERN_H) \
1127         $(GRP_H) \
1128         $(LISP_H) \
1129         $(PROCESS_H) \
1130         $(SOCKET_H) \
1131         $(SYSTIME_H)
1133 $(BLD)/w32heap.$(O) : \
1134         $(SRC)/w32heap.c \
1135         $(SRC)/w32heap.h \
1136         $(CONFIG_H) \
1137         $(LISP_H)
1139 $(BLD)/w32inevt.$(O) : \
1140         $(SRC)/w32inevt.c \
1141         $(SRC)/w32heap.h \
1142         $(BLOCKINPUT_H) \
1143         $(CONFIG_H) \
1144         $(DISPEXTERN_H) \
1145         $(FRAME_H) \
1146         $(KEYBOARD_H) \
1147         $(LISP_H) \
1148         $(TERMHOOKS_H) \
1149         $(W32TERM_H)
1151 $(BLD)/w32proc.$(O) : \
1152         $(SRC)/w32proc.c \
1153         $(SRC)/syssignal.h \
1154         $(SRC)/syswait.h \
1155         $(SRC)/w32.h \
1156         $(SRC)/w32heap.h \
1157         $(NT_INC)/nl_types.h \
1158         $(NT_INC)/sys/file.h \
1159         $(CODING_H) \
1160         $(CONFIG_H) \
1161         $(DISPEXTERN_H) \
1162         $(LANGINFO_H) \
1163         $(LISP_H) \
1164         $(PROCESS_H) \
1165         $(SYSTIME_H) \
1166         $(W32TERM_H)
1168 $(BLD)/w32console.$(O) : \
1169         $(SRC)/w32console.c \
1170         $(SRC)/disptab.h \
1171         $(SRC)/termchar.h \
1172         $(SRC)/w32inevt.h \
1173         $(CHARACTER_H) \
1174         $(CODING_H) \
1175         $(CONFIG_H) \
1176         $(DISPEXTERN_H) \
1177         $(FRAME_H) \
1178         $(LISP_H) \
1179         $(TERMHOOKS_H)
1181 $(BLD)/print.$(O) : \
1182         $(SRC)/print.c \
1183         $(SRC)/buffer.h \
1184         $(SRC)/termchar.h \
1185         $(BLOCKINPUT_H) \
1186         $(CHARACTER_H) \
1187         $(CHARSET_H) \
1188         $(CONFIG_H) \
1189         $(DISPEXTERN_H) \
1190         $(FONT_H) \
1191         $(FRAME_H) \
1192         $(FTOASTR_H) \
1193         $(INTERVALS_H) \
1194         $(KEYBOARD_H) \
1195         $(LISP_H) \
1196         $(PROCESS_H) \
1197         $(TERMHOOKS_H) \
1198         $(WINDOW_H)
1200 $(BLD)/process.$(O) : \
1201         $(SRC)/process.c \
1202         $(SRC)/buffer.h \
1203         $(SRC)/commands.h \
1204         $(SRC)/composite.h \
1205         $(SRC)/gnutls.h \
1206         $(SRC)/sysselect.h \
1207         $(SRC)/syssignal.h \
1208         $(SRC)/syswait.h \
1209         $(SRC)/termopts.h \
1210         $(NT_INC)/arpa/inet.h \
1211         $(NT_INC)/netdb.h \
1212         $(NT_INC)/netinet/in.h \
1213         $(NT_INC)/sys/file.h \
1214         $(NT_INC)/sys/ioctl.h \
1215         $(NT_INC)/sys/stat.h \
1216         $(NT_INC)/unistd.h \
1217         $(ATIMER_H) \
1218         $(BLOCKINPUT_H) \
1219         $(CHARACTER_H) \
1220         $(CODING_H) \
1221         $(CONFIG_H) \
1222         $(DISPEXTERN_H) \
1223         $(FRAME_H) \
1224         $(KEYBOARD_H) \
1225         $(LISP_H) \
1226         $(PROCESS_H) \
1227         $(SOCKET_H) \
1228         $(SYSTIME_H) \
1229         $(SYSTTY_H) \
1230         $(TERMHOOKS_H) \
1231         $(WINDOW_H)
1233 $(BLD)/ralloc.$(O) : \
1234         $(SRC)/ralloc.c \
1235         $(SRC)/getpagesize.h \
1236         $(NT_INC)/unistd.h \
1237         $(BLOCKINPUT_H) \
1238         $(CONFIG_H) \
1239         $(LISP_H)
1241 $(BLD)/regex.$(O) : \
1242         $(SRC)/regex.c \
1243         $(SRC)/buffer.h \
1244         $(SRC)/category.h \
1245         $(SRC)/regex.h \
1246         $(SRC)/syntax.h \
1247         $(NT_INC)/unistd.h \
1248         $(CHARACTER_H) \
1249         $(CONFIG_H) \
1250         $(LISP_H)
1252 $(BLD)/region-cache.$(O) : \
1253         $(SRC)/region-cache.c \
1254         $(SRC)/buffer.h \
1255         $(SRC)/region-cache.h \
1256         $(CONFIG_H) \
1257         $(LISP_H)
1259 $(BLD)/scroll.$(O) : \
1260         $(SRC)/scroll.c \
1261         $(SRC)/termchar.h \
1262         $(CONFIG_H) \
1263         $(DISPEXTERN_H) \
1264         $(FRAME_H) \
1265         $(KEYBOARD_H) \
1266         $(LISP_H) \
1267         $(TERMHOOKS_H) \
1268         $(WINDOW_H)
1270 $(BLD)/search.$(O) : \
1271         $(SRC)/search.c \
1272         $(SRC)/buffer.h \
1273         $(SRC)/category.h \
1274         $(SRC)/commands.h \
1275         $(SRC)/regex.h \
1276         $(SRC)/region-cache.h \
1277         $(SRC)/syntax.h \
1278         $(BLOCKINPUT_H) \
1279         $(CHARACTER_H) \
1280         $(CHARSET_H) \
1281         $(CONFIG_H) \
1282         $(INTERVALS_H) \
1283         $(LISP_H)
1285 $(BLD)/sound.$(O) : \
1286         $(SRC)/sound.c \
1287         $(SRC)/syssignal.h \
1288         $(NT_INC)/unistd.h \
1289         $(ATIMER_H) \
1290         $(CONFIG_H) \
1291         $(DISPEXTERN_H) \
1292         $(LISP_H)
1294 $(BLD)/syntax.$(O) : \
1295         $(SRC)/syntax.c \
1296         $(SRC)/buffer.h \
1297         $(SRC)/category.h \
1298         $(SRC)/commands.h \
1299         $(SRC)/keymap.h \
1300         $(SRC)/regex.h \
1301         $(SRC)/syntax.h \
1302         $(CHARACTER_H) \
1303         $(CONFIG_H) \
1304         $(INTERVALS_H) \
1305         $(LISP_H)
1307 $(BLD)/sysdep.$(O) : \
1308         $(SRC)/sysdep.c \
1309         $(SRC)/cm.h \
1310         $(SRC)/sysselect.h \
1311         $(SRC)/syssignal.h \
1312         $(SRC)/syswait.h \
1313         $(SRC)/termchar.h \
1314         $(SRC)/termopts.h \
1315         $(NT_INC)/netdb.h \
1316         $(NT_INC)/pwd.h \
1317         $(NT_INC)/sys/file.h \
1318         $(NT_INC)/sys/stat.h \
1319         $(NT_INC)/unistd.h \
1320         $(GNU_LIB)/allocator.h \
1321         $(GNU_LIB)/ignore-value.h \
1322         $(BLOCKINPUT_H) \
1323         $(CAREADLINKAT_H) \
1324         $(CONFIG_H) \
1325         $(DISPEXTERN_H) \
1326         $(FRAME_H) \
1327         $(GRP_H) \
1328         $(KEYBOARD_H) \
1329         $(LISP_H) \
1330         $(PROCESS_H) \
1331         $(SOCKET_H) \
1332         $(SYSTIME_H) \
1333         $(SYSTTY_H) \
1334         $(TERMHOOKS_H) \
1335         $(WINDOW_H)
1337 $(BLD)/term.$(O) : \
1338         $(SRC)/term.c \
1339         $(SRC)/buffer.h \
1340         $(SRC)/cm.h \
1341         $(SRC)/composite.h \
1342         $(SRC)/disptab.h \
1343         $(SRC)/keymap.h \
1344         $(SRC)/syssignal.h \
1345         $(SRC)/termchar.h \
1346         $(SRC)/termopts.h \
1347         $(SRC)/tparam.h \
1348         $(NT_INC)/sys/file.h \
1349         $(NT_INC)/unistd.h \
1350         $(BLOCKINPUT_H) \
1351         $(CHARACTER_H) \
1352         $(CHARSET_H) \
1353         $(CODING_H) \
1354         $(CONFIG_H) \
1355         $(DISPEXTERN_H) \
1356         $(FRAME_H) \
1357         $(INTERVALS_H) \
1358         $(KEYBOARD_H) \
1359         $(LISP_H) \
1360         $(SYSTTY_H) \
1361         $(TERMHOOKS_H) \
1362         $(WINDOW_H)
1364 $(BLD)/terminal.$(O) : \
1365         $(SRC)/terminal.c \
1366         $(SRC)/termchar.h \
1367         $(CHARSET_H) \
1368         $(CODING_H) \
1369         $(CONFIG_H) \
1370         $(FRAME_H) \
1371         $(KEYBOARD_H) \
1372         $(LISP_H) \
1373         $(TERMHOOKS_H)
1375 $(BLD)/textprop.$(O) : \
1376         $(SRC)/textprop.c \
1377         $(SRC)/buffer.h \
1378         $(CONFIG_H) \
1379         $(INTERVALS_H) \
1380         $(LISP_H) \
1381         $(WINDOW_H)
1383 $(BLD)/tparam.$(O) : \
1384         $(SRC)/tparam.c \
1385         $(SRC)/tparam.h \
1386         $(CONFIG_H) \
1387         $(LISP_H)
1389 $(BLD)/undo.$(O) : \
1390         $(SRC)/undo.c \
1391         $(SRC)/buffer.h \
1392         $(SRC)/commands.h \
1393         $(CONFIG_H) \
1394         $(LISP_H) \
1395         $(WINDOW_H)
1397 $(BLD)/unexw32.$(O) : \
1398         $(SRC)/unexw32.c \
1399         $(SRC)/unexec.h \
1400         $(SRC)/w32heap.h \
1401         $(CONFIG_H)
1403 $(BLD)/vm-limit.$(O) : \
1404         $(SRC)/vm-limit.c \
1405         $(SRC)/mem-limits.h \
1406         $(CONFIG_H) \
1407         $(LISP_H)
1409 $(BLD)/window.$(O) : \
1410         $(SRC)/window.c \
1411         $(SRC)/buffer.h \
1412         $(SRC)/commands.h \
1413         $(SRC)/disptab.h \
1414         $(SRC)/indent.h \
1415         $(SRC)/keymap.h \
1416         $(SRC)/termchar.h \
1417         $(BLOCKINPUT_H) \
1418         $(CONFIG_H) \
1419         $(DISPEXTERN_H) \
1420         $(FRAME_H) \
1421         $(INTERVALS_H) \
1422         $(KEYBOARD_H) \
1423         $(LISP_H) \
1424         $(TERMHOOKS_H) \
1425         $(W32TERM_H) \
1426         $(WINDOW_H)
1428 $(BLD)/xdisp.$(O) : \
1429         $(SRC)/xdisp.c \
1430         $(SRC)/buffer.h \
1431         $(SRC)/commands.h \
1432         $(SRC)/disptab.h \
1433         $(SRC)/fontset.h \
1434         $(SRC)/indent.h \
1435         $(SRC)/keymap.h \
1436         $(SRC)/macros.h \
1437         $(SRC)/region-cache.h \
1438         $(SRC)/termchar.h \
1439         $(SRC)/termopts.h \
1440         $(BLOCKINPUT_H) \
1441         $(CHARACTER_H) \
1442         $(CHARSET_H) \
1443         $(CODING_H) \
1444         $(CONFIG_H) \
1445         $(DISPEXTERN_H) \
1446         $(FONT_H) \
1447         $(FRAME_H) \
1448         $(INTERVALS_H) \
1449         $(KEYBOARD_H) \
1450         $(LISP_H) \
1451         $(PROCESS_H) \
1452         $(TERMHOOKS_H) \
1453         $(W32TERM_H) \
1454         $(WINDOW_H)
1456 $(BLD)/xfaces.$(O) : \
1457         $(SRC)/xfaces.c \
1458         $(SRC)/buffer.h \
1459         $(SRC)/fontset.h \
1460         $(SRC)/termchar.h \
1461         $(NT_INC)/sys/stat.h \
1462         $(BLOCKINPUT_H) \
1463         $(CHARACTER_H) \
1464         $(CHARSET_H) \
1465         $(CONFIG_H) \
1466         $(DISPEXTERN_H) \
1467         $(FONT_H) \
1468         $(FRAME_H) \
1469         $(INTERVALS_H) \
1470         $(KEYBOARD_H) \
1471         $(LISP_H) \
1472         $(TERMHOOKS_H) \
1473         $(W32TERM_H) \
1474         $(WINDOW_H)
1476 $(BLD)/w32fns.$(O) : \
1477         $(SRC)/w32fns.c \
1478         $(SRC)/buffer.h \
1479         $(SRC)/ccl.h \
1480         $(SRC)/epaths.h \
1481         $(SRC)/fontset.h \
1482         $(SRC)/w32.h \
1483         $(SRC)/w32font.h \
1484         $(SRC)/w32heap.h \
1485         $(BLOCKINPUT_H) \
1486         $(CHARACTER_H) \
1487         $(CHARSET_H) \
1488         $(CODING_H) \
1489         $(CONFIG_H) \
1490         $(DISPEXTERN_H) \
1491         $(FONT_H) \
1492         $(FRAME_H) \
1493         $(INTERVALS_H) \
1494         $(KEYBOARD_H) \
1495         $(LISP_H) \
1496         $(SYSTIME_H) \
1497         $(TERMHOOKS_H) \
1498         $(W32TERM_H) \
1499         $(WINDOW_H)
1501 $(BLD)/w32menu.$(O) : \
1502         $(SRC)/w32menu.c \
1503         $(SRC)/buffer.h \
1504         $(SRC)/keymap.h \
1505         $(BLOCKINPUT_H) \
1506         $(CHARSET_H) \
1507         $(CODING_H) \
1508         $(CONFIG_H) \
1509         $(DISPEXTERN_H) \
1510         $(FRAME_H) \
1511         $(KEYBOARD_H) \
1512         $(LISP_H) \
1513         $(MENU_H) \
1514         $(TERMHOOKS_H) \
1515         $(W32TERM_H) \
1516         $(WINDOW_H)
1518 $(BLD)/w32term.$(O) : \
1519         $(SRC)/w32term.c \
1520         $(SRC)/buffer.h \
1521         $(SRC)/ccl.h \
1522         $(SRC)/disptab.h \
1523         $(SRC)/fontset.h \
1524         $(SRC)/keymap.h \
1525         $(SRC)/termchar.h \
1526         $(SRC)/termopts.h \
1527         $(SRC)/w32font.h \
1528         $(SRC)/w32heap.h \
1529         $(NT_INC)/sys/stat.h \
1530         $(ATIMER_H) \
1531         $(BLOCKINPUT_H) \
1532         $(CHARACTER_H) \
1533         $(CHARSET_H) \
1534         $(CODING_H) \
1535         $(CONFIG_H) \
1536         $(DISPEXTERN_H) \
1537         $(FONT_H) \
1538         $(FRAME_H) \
1539         $(INTERVALS_H) \
1540         $(KEYBOARD_H) \
1541         $(LISP_H) \
1542         $(PROCESS_H) \
1543         $(SYSTIME_H) \
1544         $(SYSTTY_H) \
1545         $(TERMHOOKS_H) \
1546         $(W32TERM_H) \
1547         $(WINDOW_H)
1549 $(BLD)/w32select.$(O) : \
1550         $(SRC)/w32select.c \
1551         $(SRC)/composite.h \
1552         $(SRC)/w32heap.h \
1553         $(BLOCKINPUT_H) \
1554         $(CHARSET_H) \
1555         $(CODING_H) \
1556         $(CONFIG_H) \
1557         $(LISP_H) \
1558         $(W32TERM_H)
1560 $(BLD)/w32reg.$(O) : \
1561         $(SRC)/w32reg.c \
1562         $(BLOCKINPUT_H) \
1563         $(CONFIG_H) \
1564         $(LISP_H) \
1565         $(W32TERM_H)
1567 $(BLD)/w32xfns.$(O) : \
1568         $(SRC)/w32xfns.c \
1569         $(SRC)/fontset.h \
1570         $(BLOCKINPUT_H) \
1571         $(CHARSET_H) \
1572         $(CONFIG_H) \
1573         $(FRAME_H) \
1574         $(KEYBOARD_H) \
1575         $(LISP_H) \
1576         $(W32TERM_H)
1578 $(BLD)/w32font.$(O) : \
1579         $(SRC)/w32font.c \
1580         $(SRC)/fontset.h \
1581         $(SRC)/w32font.h \
1582         $(CHARACTER_H) \
1583         $(CHARSET_H) \
1584         $(CODING_H) \
1585         $(CONFIG_H) \
1586         $(DISPEXTERN_H) \
1587         $(FONT_H) \
1588         $(FRAME_H) \
1589         $(LISP_H) \
1590         $(W32TERM_H)
1592 $(BLD)/w32uniscribe.$(O) : \
1593         $(SRC)/w32uniscribe.c \
1594         $(SRC)/composite.h \
1595         $(SRC)/fontset.h \
1596         $(SRC)/w32font.h \
1597         $(CHARACTER_H) \
1598         $(CHARSET_H) \
1599         $(CONFIG_H) \
1600         $(DISPEXTERN_H) \
1601         $(FONT_H) \
1602         $(FRAME_H) \
1603         $(LISP_H) \
1604         $(W32TERM_H)
1606 # Each object file depends on stamp_BLD, because in parallel builds we must
1607 # make sure $(BLD) exists before starting compilations.
1609 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD