Preserve point when doing untabify
[emacs.git] / src / makefile.w32-in
blob88b5355492573d16b3183be8b219763a83c9803e
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 SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
226         xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o dbusbind.o
227 obj = $(GLOBAL_SOURCES:.c=.o)
229 globals.h: gl-stamp
230         @cmd /c rem true
232 gl-stamp: ../lib-src/$(BLD)/make-docfile.exe $(GLOBAL_SOURCES)
233         - $(DEL) gl-tmp
234         "../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp
235         cmd /c "fc /b gl-tmp globals.h >nul 2>&1 || $(CP) gl-tmp globals.h"
236         - $(DEL) gl-tmp
237         echo timestamp > $@
239 bootstrap: bootstrap-emacs
242 # Build a temacs with a sufficiently large PURESIZE to load the
243 # Lisp files from loadup.el in source form.
245 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
246 #          this can break with GNU Make 3.81 and later if sh.exe is used.
247 bootstrap-temacs-CMD:
248         $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(ESC_CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
250 bootstrap-temacs-SH:
251         $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
253 bootstrap-temacs:
254         $(MAKE) $(MFLAGS) bootstrap-temacs-$(SHELLTYPE)
257 # Dump an Emacs executable named bootstrap-emacs containing the
258 # files from loadup.el in source form.
260 bootstrap-emacs: bootstrap-temacs
261         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
262         - mkdir "../bin"
263         $(CP) $(EMACS) ../bin
266 # Force recompile of files that depend on PURESIZE
268 bootstrap-clean:
269         - $(DEL) $(BLD)/alloc.$(O)
270         - $(DEL) $(BLD)/data.$(O)
271         - $(DEL) $(BLD)/intervals.$(O)
272         - $(DEL) $(BLD)/keyboard.$(O)
273         - $(DEL) $(BLD)/keymap.$(O)
276 # The resource file.  NT 3.10 requires the use of cvtres; even though
277 # it is not necessary on later versions, it is still ok to use it.
279 $(TRES): ../nt/emacs.rc stamp_BLD
280         $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
283 # Build the library.  Split up the build into two phases...otherwise we
284 # run out of command line space.
286 $(TLIB0):       $(OBJ0)
287         - $(DEL) $@
288         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
289 $(TLIB1):       $(OBJ1)
290         - $(DEL) $@
291         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
292 $(TLIB2):       $(OBJ2)
293         - $(DEL) $@
294         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
297 # Place lastfile.$(O) in its own library so that it can be loaded after
298 # the source libraries but before any system libraries.  Doing so defines
299 # the end of Emacs' data section portably across compilers and systems.
301 $(TLASTLIB):    $(BLD)/lastfile.$(O)
302         - $(DEL) $@
303         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
306 # Assuming INSTALL_DIR is defined, build and install emacs in it.
308 install:        $(ALL)
309         - mkdir "$(INSTALL_DIR)/bin"
310         $(CP) $(EMACS) $(INSTALL_DIR)/bin
313 # Maintenance
315 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
316 # remove precious files if it happens to match their short 8+3 aliases.
317 clean:
318         - $(DEL) "s/*.h~" "m/*.h~"
319         - $(DEL) $(COMPILER_TEMP_FILES)
320         - $(DEL_TREE) $(OBJDIR)
321         - $(DEL) stamp_BLD gl-stamp globals.h
322         - $(DEL) buildobj.h
324 distclean:      cleanall
325         - $(DEL) config.h epaths.h Makefile
327 maintainer-clean: distclean
328         - $(DEL) TAGS
330 cleanall:       clean
331         - $(DEL_TREE) obj
332         - $(DEL_TREE) obj-spd
333         - $(DEL_TREE) oo
334         - $(DEL_TREE) oo-spd
336 ## Arrange to make a tags table TAGS-LISP for ../lisp,
337 ## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
339 ## This works only with GNU Make.
341 TAGS: $(OBJ0) $(OBJ1) $(OBJ2) $(CURDIR)/m/intel386.h $(CURDIR)/s/ms-w32.h
342         $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE)
344 TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2)
345         $(MAKE) $(MFLAGS) TAGS-LISP-$(MAKETYPE)
347 TAGS-gmake:
348         ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \
349           --regex=@../nt/emacs-src.tags \
350           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ0))
351         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
352           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1))
353         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
354           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2)) \
355           $(CURDIR)/*.h $(CURDIR)/m/intel386.h $(CURDIR)/s/ms-w32.h
357 TAGS-nmake:
358         echo This target is not supported with NMake
359         exit -1
361 frc:
362 TAGS-LISP-gmake: frc
363         $(MAKE) $(MFLAGS) -C ../lisp TAGS-LISP DEST=../src
365 TAGS-LISP-nmake:
366         echo This target is not supported with NMake
367         exit -1
369 ../nt/TAGS: frc
370         $(MAKE) $(MFLAGS) nt-TAGS-$(MAKETYPE)
372 nt-TAGS-gmake:
373         $(MAKE) $(MFLAGS) -C ../nt TAGS
375 nt-TAGS-nmake:
376         echo This target is not supported with NMake
377         exit -1
379 full-tags: TAGS TAGS-LISP ../nt/TAGS
380 .PHONY: full-tags
382 ### DEPENDENCIES ###
384 EMACS_ROOT = ..
385 GNU_LIB = $(EMACS_ROOT)/lib
386 NT_INC = $(EMACS_ROOT)/nt/inc
388 SYSTIME_H      = $(SRC)/systime.h \
389                  $(NT_INC)/sys/time.h
390 ATIMER_H       = $(SRC)/atimer.h \
391                  $(SYSTIME_H)
392 BLOCKINPUT_H   = $(SRC)/blockinput.h \
393                  $(ATIMER_H)
394 CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
395                  $(NT_INC)/unistd.h
396 CHARACTER_H    = $(SRC)/character.h \
397                  $(GNU_LIB)/verify.h
398 CHARSET_H      = $(SRC)/charset.h \
399                  $(GNU_LIB)/verify.h
400 CODING_H       = $(SRC)/coding.h \
401                  $(SRC)/composite.h
402 MS_W32_H       = $(SRC)/s/ms-w32.h \
403                  $(NT_INC)/sys/stat.h
404 CONFIG_H       = $(SRC)/config.h \
405                  $(SRC)/m/intel386.h \
406                  $(MS_W32_H)
407 DIR_H          = $(NT_INC)/sys/dir.h \
408                  $(SRC)/ndir.h
409 W32GUI_H       = $(SRC)/w32gui.h \
410                  $(SYSTIME_H)
411 DISPEXTERN_H   = $(SRC)/dispextern.h \
412                  $(W32GUI_H)
413 FILEMODE_H     = $(GNU_LIB)/filemode.h \
414                  $(NT_INC)/sys/stat.h
415 FONT_H         = $(SRC)/font.h \
416                  $(SRC)/ccl.h
417 FRAME_H        = $(SRC)/frame.h \
418                  $(DISPEXTERN_H)
419 FTOASTR_H      = $(GNU_LIB)/ftoastr.h \
420                  $(GNU_LIB)/intprops.h
421 GRP_H          = $(NT_INC)/grp.h \
422                  $(NT_INC)/pwd.h
423 INTERVALS_H    = $(SRC)/intervals.h \
424                  $(SRC)/composite.h \
425                  $(DISPEXTERN_H)
426 INTTYPES_H     = $(NT_INC)/inttypes.h \
427                  $(NT_INC)/stdint.h
428 KEYBOARD_H     = $(SRC)/keyboard.h \
429                  $(CODING_H) \
430                  $(SYSTIME_H)
431 LANGINFO_H     = $(NT_INC)/langinfo.h \
432                  $(NT_INC)/nl_types.h
433 LISP_H         = $(SRC)/lisp.h \
434                  $(SRC)/globals.h \
435                  $(GNU_LIB)/intprops.h \
436                  $(INTTYPES_H)
437 MD5_H          = $(GNU_LIB)/md5.h \
438                  $(NT_INC)/stdint.h
439 MENU_H         = $(SRC)/menu.h \
440                  $(SYSTIME_H)
441 PROCESS_H      = $(SRC)/process.h \
442                  $(SRC)/gnutls.h \
443                  $(NT_INC)/unistd.h
444 SHA1_H         = $(GNU_LIB)/sha1.h \
445                  $(NT_INC)/stdint.h
446 SHA256_H       = $(GNU_LIB)/sha256.h \
447                  $(NT_INC)/stdint.h
448 U64_H          = $(GNU_LIB)/u64.h \
449                  $(NT_INC)/stdint.h
450 SHA512_H       = $(GNU_LIB)/sha512.h \
451                  $(U64_H)
452 SOCKET_H       = $(NT_INC)/sys/socket.h \
453                  $(SRC)/w32.h
454 SYSTTY_H       = $(SRC)/systty.h \
455                  $(NT_INC)/sys/ioctl.h \
456                  $(NT_INC)/unistd.h
457 TERMHOOKS_H    = $(SRC)/termhooks.h \
458                  $(SYSTIME_H)
459 W32TERM_H      = $(SRC)/w32term.h \
460                  $(W32GUI_H)
461 WINDOW_H       = $(SRC)/window.h \
462                  $(DISPEXTERN_H)
464 $(BLD)/alloc.$(O) : \
465         $(SRC)/alloc.c \
466         $(SRC)/buffer.h \
467         $(SRC)/puresize.h \
468         $(SRC)/syssignal.h \
469         $(SRC)/w32.h \
470         $(NT_INC)/unistd.h \
471         $(BLOCKINPUT_H) \
472         $(CHARACTER_H) \
473         $(CONFIG_H) \
474         $(FRAME_H) \
475         $(INTERVALS_H) \
476         $(KEYBOARD_H) \
477         $(LISP_H) \
478         $(PROCESS_H) \
479         $(TERMHOOKS_H) \
480         $(WINDOW_H)
482 $(BLD)/atimer.$(O) : \
483         $(SRC)/atimer.c \
484         $(SRC)/syssignal.h \
485         $(NT_INC)/sys/time.h \
486         $(NT_INC)/unistd.h \
487         $(ATIMER_H) \
488         $(BLOCKINPUT_H) \
489         $(CONFIG_H) \
490         $(LISP_H) \
491         $(SYSTIME_H)
493 $(BLD)/bidi.$(O) : \
494         $(SRC)/bidi.c \
495         $(SRC)/bidimirror.h \
496         $(SRC)/biditype.h \
497         $(SRC)/buffer.h \
498         $(CHARACTER_H) \
499         $(CONFIG_H) \
500         $(DISPEXTERN_H) \
501         $(LISP_H)
503 $(BLD)/buffer.$(O) : \
504         $(SRC)/buffer.c \
505         $(SRC)/buffer.h \
506         $(SRC)/commands.h \
507         $(SRC)/indent.h \
508         $(SRC)/keymap.h \
509         $(SRC)/region-cache.h \
510         $(NT_INC)/sys/param.h \
511         $(NT_INC)/sys/stat.h \
512         $(NT_INC)/unistd.h \
513         $(GNU_LIB)/verify.h \
514         $(BLOCKINPUT_H) \
515         $(CHARACTER_H) \
516         $(CONFIG_H) \
517         $(FRAME_H) \
518         $(INTERVALS_H) \
519         $(KEYBOARD_H) \
520         $(LISP_H) \
521         $(WINDOW_H)
523 $(BLD)/bytecode.$(O) : \
524         $(SRC)/bytecode.c \
525         $(SRC)/buffer.h \
526         $(SRC)/syntax.h \
527         $(CHARACTER_H) \
528         $(CONFIG_H) \
529         $(LISP_H) \
530         $(WINDOW_H)
532 $(BLD)/callint.$(O) : \
533         $(SRC)/callint.c \
534         $(SRC)/buffer.h \
535         $(SRC)/commands.h \
536         $(SRC)/keymap.h \
537         $(CHARACTER_H) \
538         $(CONFIG_H) \
539         $(KEYBOARD_H) \
540         $(LISP_H) \
541         $(WINDOW_H)
543 $(BLD)/callproc.$(O) : \
544         $(SRC)/callproc.c \
545         $(SRC)/buffer.h \
546         $(SRC)/ccl.h \
547         $(SRC)/commands.h \
548         $(SRC)/composite.h \
549         $(SRC)/epaths.h \
550         $(SRC)/syssignal.h \
551         $(SRC)/w32.h \
552         $(NT_INC)/sys/file.h \
553         $(NT_INC)/unistd.h \
554         $(BLOCKINPUT_H) \
555         $(CHARACTER_H) \
556         $(CODING_H) \
557         $(CONFIG_H) \
558         $(FRAME_H) \
559         $(LISP_H) \
560         $(PROCESS_H) \
561         $(SYSTTY_H) \
562         $(TERMHOOKS_H)
564 $(BLD)/casefiddle.$(O) : \
565         $(SRC)/casefiddle.c \
566         $(SRC)/buffer.h \
567         $(SRC)/commands.h \
568         $(SRC)/composite.h \
569         $(SRC)/keymap.h \
570         $(SRC)/syntax.h \
571         $(CHARACTER_H) \
572         $(CONFIG_H) \
573         $(LISP_H)
575 $(BLD)/casetab.$(O) : \
576         $(SRC)/casetab.c \
577         $(SRC)/buffer.h \
578         $(CHARACTER_H) \
579         $(CONFIG_H) \
580         $(LISP_H)
582 $(BLD)/category.$(O) : \
583         $(SRC)/category.c \
584         $(SRC)/buffer.h \
585         $(SRC)/category.h \
586         $(SRC)/keymap.h \
587         $(CHARACTER_H) \
588         $(CHARSET_H) \
589         $(CONFIG_H) \
590         $(LISP_H)
592 $(BLD)/ccl.$(O) : \
593         $(SRC)/ccl.c \
594         $(SRC)/ccl.h \
595         $(CHARACTER_H) \
596         $(CHARSET_H) \
597         $(CODING_H) \
598         $(CONFIG_H) \
599         $(LISP_H)
601 $(BLD)/character.$(O) : \
602         $(SRC)/character.c \
603         $(SRC)/buffer.h \
604         $(SRC)/composite.h \
605         $(SRC)/disptab.h \
606         $(GNU_LIB)/intprops.h \
607         $(CHARACTER_H) \
608         $(CHARSET_H) \
609         $(CONFIG_H) \
610         $(LISP_H)
612 $(BLD)/charset.$(O) : \
613         $(SRC)/charset.c \
614         $(SRC)/buffer.h \
615         $(SRC)/disptab.h \
616         $(NT_INC)/unistd.h \
617         $(CHARACTER_H) \
618         $(CHARSET_H) \
619         $(CODING_H) \
620         $(CONFIG_H) \
621         $(LISP_H)
623 $(BLD)/chartab.$(O) : \
624         $(SRC)/chartab.c \
625         $(SRC)/ccl.h \
626         $(CHARACTER_H) \
627         $(CHARSET_H) \
628         $(CONFIG_H) \
629         $(LISP_H)
631 $(BLD)/cmds.$(O) : \
632         $(SRC)/cmds.c \
633         $(SRC)/buffer.h \
634         $(SRC)/commands.h \
635         $(SRC)/keymap.h \
636         $(SRC)/syntax.h \
637         $(CHARACTER_H) \
638         $(CONFIG_H) \
639         $(DISPEXTERN_H) \
640         $(FRAME_H) \
641         $(KEYBOARD_H) \
642         $(LISP_H) \
643         $(WINDOW_H)
645 $(BLD)/coding.$(O) : \
646         $(SRC)/coding.c \
647         $(SRC)/buffer.h \
648         $(SRC)/ccl.h \
649         $(SRC)/composite.h \
650         $(CHARACTER_H) \
651         $(CHARSET_H) \
652         $(CODING_H) \
653         $(CONFIG_H) \
654         $(FRAME_H) \
655         $(LISP_H) \
656         $(TERMHOOKS_H) \
657         $(WINDOW_H)
659 $(BLD)/composite.$(O) : \
660         $(SRC)/composite.c \
661         $(SRC)/buffer.h \
662         $(CHARACTER_H) \
663         $(CODING_H) \
664         $(CONFIG_H) \
665         $(DISPEXTERN_H) \
666         $(FONT_H) \
667         $(FRAME_H) \
668         $(INTERVALS_H) \
669         $(LISP_H) \
670         $(TERMHOOKS_H) \
671         $(WINDOW_H)
673 $(BLD)/data.$(O) : \
674         $(SRC)/data.c \
675         $(SRC)/buffer.h \
676         $(SRC)/puresize.h \
677         $(SRC)/syssignal.h \
678         $(GNU_LIB)/intprops.h \
679         $(CHARACTER_H) \
680         $(CONFIG_H) \
681         $(FONT_H) \
682         $(FRAME_H) \
683         $(KEYBOARD_H) \
684         $(LISP_H) \
685         $(TERMHOOKS_H)
687 $(BLD)/dired.$(O) : \
688         $(SRC)/dired.c \
689         $(SRC)/buffer.h \
690         $(SRC)/commands.h \
691         $(SRC)/regex.h \
692         $(NT_INC)/pwd.h \
693         $(NT_INC)/sys/stat.h \
694         $(NT_INC)/unistd.h \
695         $(BLOCKINPUT_H) \
696         $(CHARACTER_H) \
697         $(CHARSET_H) \
698         $(CODING_H) \
699         $(CONFIG_H) \
700         $(DIR_H) \
701         $(FILEMODE_H) \
702         $(GRP_H) \
703         $(LISP_H) \
704         $(SYSTIME_H)
706 $(BLD)/dispnew.$(O) : \
707         $(SRC)/dispnew.c \
708         $(SRC)/buffer.h \
709         $(SRC)/cm.h \
710         $(SRC)/commands.h \
711         $(SRC)/disptab.h \
712         $(SRC)/indent.h \
713         $(SRC)/syssignal.h \
714         $(SRC)/termchar.h \
715         $(SRC)/termopts.h \
716         $(NT_INC)/unistd.h \
717         $(BLOCKINPUT_H) \
718         $(CHARACTER_H) \
719         $(CONFIG_H) \
720         $(DISPEXTERN_H) \
721         $(FRAME_H) \
722         $(INTERVALS_H) \
723         $(KEYBOARD_H) \
724         $(LISP_H) \
725         $(PROCESS_H) \
726         $(SYSTIME_H) \
727         $(TERMHOOKS_H) \
728         $(W32TERM_H) \
729         $(WINDOW_H)
731 $(BLD)/doc.$(O) : \
732         $(SRC)/doc.c \
733         $(SRC)/buffer.h \
734         $(SRC)/buildobj.h \
735         $(SRC)/keymap.h \
736         $(NT_INC)/sys/file.h \
737         $(NT_INC)/unistd.h \
738         $(CHARACTER_H) \
739         $(CONFIG_H) \
740         $(KEYBOARD_H) \
741         $(LISP_H)
743 $(BLD)/doprnt.$(O) : \
744         $(SRC)/doprnt.c \
745         $(NT_INC)/unistd.h \
746         $(CHARACTER_H) \
747         $(CONFIG_H) \
748         $(LISP_H)
750 $(BLD)/editfns.$(O) : \
751         $(SRC)/editfns.c \
752         $(SRC)/buffer.h \
753         $(NT_INC)/pwd.h \
754         $(NT_INC)/unistd.h \
755         $(GNU_LIB)/intprops.h \
756         $(GNU_LIB)/strftime.h \
757         $(GNU_LIB)/verify.h \
758         $(BLOCKINPUT_H) \
759         $(CHARACTER_H) \
760         $(CODING_H) \
761         $(CONFIG_H) \
762         $(FRAME_H) \
763         $(INTERVALS_H) \
764         $(LISP_H) \
765         $(SYSTIME_H) \
766         $(WINDOW_H)
768 $(BLD)/emacs.$(O) : \
769         $(SRC)/emacs.c \
770         $(SRC)/buffer.h \
771         $(SRC)/commands.h \
772         $(SRC)/gnutls.h \
773         $(SRC)/keymap.h \
774         $(SRC)/syssignal.h \
775         $(SRC)/unexec.h \
776         $(SRC)/w32.h \
777         $(SRC)/w32heap.h \
778         $(NT_INC)/sys/file.h \
779         $(NT_INC)/unistd.h \
780         $(BLOCKINPUT_H) \
781         $(CONFIG_H) \
782         $(FRAME_H) \
783         $(INTERVALS_H) \
784         $(KEYBOARD_H) \
785         $(LISP_H) \
786         $(PROCESS_H) \
787         $(SYSTTY_H) \
788         $(TERMHOOKS_H) \
789         $(WINDOW_H)
791 $(BLD)/eval.$(O) : \
792         $(SRC)/eval.c \
793         $(SRC)/commands.h \
794         $(BLOCKINPUT_H) \
795         $(CONFIG_H) \
796         $(DISPEXTERN_H) \
797         $(FRAME_H) \
798         $(KEYBOARD_H) \
799         $(LISP_H)
801 $(BLD)/fileio.$(O) : \
802         $(SRC)/fileio.c \
803         $(SRC)/buffer.h \
804         $(SRC)/commands.h \
805         $(NT_INC)/pwd.h \
806         $(NT_INC)/sys/stat.h \
807         $(NT_INC)/unistd.h \
808         $(BLOCKINPUT_H) \
809         $(CHARACTER_H) \
810         $(CODING_H) \
811         $(CONFIG_H) \
812         $(DISPEXTERN_H) \
813         $(FRAME_H) \
814         $(INTERVALS_H) \
815         $(LISP_H) \
816         $(SYSTIME_H) \
817         $(WINDOW_H)
819 $(BLD)/filelock.$(O) : \
820         $(SRC)/filelock.c \
821         $(SRC)/buffer.h \
822         $(NT_INC)/pwd.h \
823         $(NT_INC)/sys/file.h \
824         $(NT_INC)/sys/stat.h \
825         $(NT_INC)/unistd.h \
826         $(CHARACTER_H) \
827         $(CODING_H) \
828         $(CONFIG_H) \
829         $(LISP_H) \
830         $(SYSTIME_H)
832 $(BLD)/firstfile.$(O) : \
833         $(SRC)/firstfile.c \
834         $(CONFIG_H)
836 $(BLD)/floatfns.$(O) : \
837         $(SRC)/floatfns.c \
838         $(SRC)/syssignal.h \
839         $(CONFIG_H) \
840         $(LISP_H)
842 $(BLD)/fns.$(O) : \
843         $(SRC)/fns.c \
844         $(SRC)/buffer.h \
845         $(SRC)/commands.h \
846         $(SRC)/keymap.h \
847         $(NT_INC)/unistd.h \
848         $(GNU_LIB)/intprops.h \
849         $(BLOCKINPUT_H) \
850         $(CHARACTER_H) \
851         $(CODING_H) \
852         $(CONFIG_H) \
853         $(FRAME_H) \
854         $(INTERVALS_H) \
855         $(KEYBOARD_H) \
856         $(LANGINFO_H) \
857         $(LISP_H) \
858         $(MD5_H) \
859         $(SHA1_H) \
860         $(SHA256_H) \
861         $(SHA512_H) \
862         $(WINDOW_H)
864 $(BLD)/font.$(O) : \
865         $(SRC)/font.c \
866         $(SRC)/buffer.h \
867         $(SRC)/composite.h \
868         $(SRC)/fontset.h \
869         $(CHARACTER_H) \
870         $(CHARSET_H) \
871         $(CONFIG_H) \
872         $(DISPEXTERN_H) \
873         $(FONT_H) \
874         $(FRAME_H) \
875         $(LISP_H) \
876         $(W32TERM_H) \
877         $(WINDOW_H)
879 $(BLD)/fontset.$(O) : \
880         $(SRC)/fontset.c \
881         $(SRC)/buffer.h \
882         $(SRC)/ccl.h \
883         $(SRC)/fontset.h \
884         $(BLOCKINPUT_H) \
885         $(CHARACTER_H) \
886         $(CHARSET_H) \
887         $(CONFIG_H) \
888         $(DISPEXTERN_H) \
889         $(FONT_H) \
890         $(FRAME_H) \
891         $(INTERVALS_H) \
892         $(KEYBOARD_H) \
893         $(LISP_H) \
894         $(TERMHOOKS_H) \
895         $(W32TERM_H) \
896         $(WINDOW_H)
898 $(BLD)/frame.$(O) : \
899         $(SRC)/frame.c \
900         $(SRC)/buffer.h \
901         $(SRC)/commands.h \
902         $(SRC)/fontset.h \
903         $(SRC)/termchar.h \
904         $(BLOCKINPUT_H) \
905         $(CHARACTER_H) \
906         $(CONFIG_H) \
907         $(DISPEXTERN_H) \
908         $(FONT_H) \
909         $(FRAME_H) \
910         $(KEYBOARD_H) \
911         $(LISP_H) \
912         $(TERMHOOKS_H) \
913         $(W32TERM_H) \
914         $(WINDOW_H)
916 $(BLD)/fringe.$(O) : \
917         $(SRC)/fringe.c \
918         $(SRC)/buffer.h \
919         $(BLOCKINPUT_H) \
920         $(CONFIG_H) \
921         $(DISPEXTERN_H) \
922         $(FRAME_H) \
923         $(LISP_H) \
924         $(TERMHOOKS_H) \
925         $(WINDOW_H)
927 $(BLD)/gmalloc.$(O) : \
928         $(SRC)/gmalloc.c \
929         $(SRC)/getpagesize.h \
930         $(NT_INC)/unistd.h \
931         $(CONFIG_H)
933 $(BLD)/gnutls.$(O) : \
934         $(SRC)/gnutls.c \
935         $(SRC)/w32.h \
936         $(CONFIG_H) \
937         $(LISP_H) \
938         $(PROCESS_H)
940 $(BLD)/image.$(O) : \
941         $(SRC)/image.c \
942         $(SRC)/epaths.h \
943         $(SRC)/w32.h \
944         $(NT_INC)/unistd.h \
945         $(BLOCKINPUT_H) \
946         $(CHARACTER_H) \
947         $(CODING_H) \
948         $(CONFIG_H) \
949         $(DISPEXTERN_H) \
950         $(FONT_H) \
951         $(FRAME_H) \
952         $(LISP_H) \
953         $(SYSTIME_H) \
954         $(TERMHOOKS_H) \
955         $(W32TERM_H) \
956         $(WINDOW_H)
958 $(BLD)/indent.$(O) : \
959         $(SRC)/indent.c \
960         $(SRC)/buffer.h \
961         $(SRC)/category.h \
962         $(SRC)/composite.h \
963         $(SRC)/disptab.h \
964         $(SRC)/indent.h \
965         $(SRC)/region-cache.h \
966         $(SRC)/termchar.h \
967         $(SRC)/termopts.h \
968         $(CHARACTER_H) \
969         $(CONFIG_H) \
970         $(DISPEXTERN_H) \
971         $(FRAME_H) \
972         $(INTERVALS_H) \
973         $(KEYBOARD_H) \
974         $(LISP_H) \
975         $(WINDOW_H)
977 $(BLD)/insdel.$(O) : \
978         $(SRC)/insdel.c \
979         $(SRC)/buffer.h \
980         $(SRC)/region-cache.h \
981         $(GNU_LIB)/intprops.h \
982         $(BLOCKINPUT_H) \
983         $(CHARACTER_H) \
984         $(CONFIG_H) \
985         $(INTERVALS_H) \
986         $(LISP_H) \
987         $(WINDOW_H)
989 $(BLD)/intervals.$(O) : \
990         $(SRC)/intervals.c \
991         $(SRC)/buffer.h \
992         $(SRC)/keymap.h \
993         $(SRC)/puresize.h \
994         $(GNU_LIB)/intprops.h \
995         $(CONFIG_H) \
996         $(INTERVALS_H) \
997         $(KEYBOARD_H) \
998         $(LISP_H)
1000 $(BLD)/keyboard.$(O) : \
1001         $(SRC)/keyboard.c \
1002         $(SRC)/buffer.h \
1003         $(SRC)/commands.h \
1004         $(SRC)/disptab.h \
1005         $(SRC)/keymap.h \
1006         $(SRC)/macros.h \
1007         $(SRC)/puresize.h \
1008         $(SRC)/syntax.h \
1009         $(SRC)/syssignal.h \
1010         $(SRC)/termchar.h \
1011         $(SRC)/termopts.h \
1012         $(NT_INC)/sys/ioctl.h \
1013         $(NT_INC)/unistd.h \
1014         $(ATIMER_H) \
1015         $(BLOCKINPUT_H) \
1016         $(CHARACTER_H) \
1017         $(CONFIG_H) \
1018         $(DISPEXTERN_H) \
1019         $(FRAME_H) \
1020         $(INTERVALS_H) \
1021         $(KEYBOARD_H) \
1022         $(LISP_H) \
1023         $(PROCESS_H) \
1024         $(SYSTIME_H) \
1025         $(TERMHOOKS_H) \
1026         $(W32TERM_H) \
1027         $(WINDOW_H)
1029 $(BLD)/keymap.$(O) : \
1030         $(SRC)/keymap.c \
1031         $(SRC)/buffer.h \
1032         $(SRC)/commands.h \
1033         $(SRC)/keymap.h \
1034         $(SRC)/puresize.h \
1035         $(BLOCKINPUT_H) \
1036         $(CHARACTER_H) \
1037         $(CHARSET_H) \
1038         $(CONFIG_H) \
1039         $(FRAME_H) \
1040         $(INTERVALS_H) \
1041         $(KEYBOARD_H) \
1042         $(LISP_H) \
1043         $(TERMHOOKS_H) \
1044         $(WINDOW_H)
1046 $(BLD)/lastfile.$(O) : \
1047         $(SRC)/lastfile.c \
1048         $(CONFIG_H)
1050 $(BLD)/lread.$(O) : \
1051         $(SRC)/lread.c \
1052         $(SRC)/buffer.h \
1053         $(SRC)/commands.h \
1054         $(SRC)/epaths.h \
1055         $(NT_INC)/sys/file.h \
1056         $(NT_INC)/sys/stat.h \
1057         $(NT_INC)/unistd.h \
1058         $(BLOCKINPUT_H) \
1059         $(CHARACTER_H) \
1060         $(CHARSET_H) \
1061         $(CODING_H) \
1062         $(CONFIG_H) \
1063         $(FRAME_H) \
1064         $(INTERVALS_H) \
1065         $(KEYBOARD_H) \
1066         $(LISP_H) \
1067         $(TERMHOOKS_H)
1069 $(BLD)/macros.$(O) : \
1070         $(SRC)/macros.c \
1071         $(SRC)/buffer.h \
1072         $(SRC)/commands.h \
1073         $(SRC)/macros.h \
1074         $(CONFIG_H) \
1075         $(KEYBOARD_H) \
1076         $(LISP_H) \
1077         $(WINDOW_H)
1079 $(BLD)/marker.$(O) : \
1080         $(SRC)/marker.c \
1081         $(SRC)/buffer.h \
1082         $(CHARACTER_H) \
1083         $(CONFIG_H) \
1084         $(LISP_H)
1086 $(BLD)/menu.$(O) : \
1087         $(SRC)/menu.c \
1088         $(SRC)/keymap.h \
1089         $(BLOCKINPUT_H) \
1090         $(CONFIG_H) \
1091         $(DISPEXTERN_H) \
1092         $(FRAME_H) \
1093         $(KEYBOARD_H) \
1094         $(LISP_H) \
1095         $(MENU_H) \
1096         $(TERMHOOKS_H) \
1097         $(W32TERM_H) \
1098         $(WINDOW_H)
1100 $(BLD)/minibuf.$(O) : \
1101         $(SRC)/minibuf.c \
1102         $(SRC)/buffer.h \
1103         $(SRC)/commands.h \
1104         $(SRC)/keymap.h \
1105         $(SRC)/syntax.h \
1106         $(CONFIG_H) \
1107         $(DISPEXTERN_H) \
1108         $(FRAME_H) \
1109         $(INTERVALS_H) \
1110         $(KEYBOARD_H) \
1111         $(LISP_H) \
1112         $(TERMHOOKS_H) \
1113         $(WINDOW_H)
1115 $(BLD)/w32.$(O) : \
1116         $(SRC)/w32.c \
1117         $(SRC)/ndir.h \
1118         $(SRC)/w32.h \
1119         $(SRC)/w32heap.h \
1120         $(NT_INC)/pwd.h \
1121         $(NT_INC)/sys/file.h \
1122         $(NT_INC)/sys/time.h \
1123         $(GNU_LIB)/allocator.h \
1124         $(CAREADLINKAT_H) \
1125         $(CODING_H) \
1126         $(CONFIG_H) \
1127         $(DISPEXTERN_H) \
1128         $(GRP_H) \
1129         $(LISP_H) \
1130         $(PROCESS_H) \
1131         $(SOCKET_H) \
1132         $(SYSTIME_H)
1134 $(BLD)/w32heap.$(O) : \
1135         $(SRC)/w32heap.c \
1136         $(SRC)/w32heap.h \
1137         $(CONFIG_H) \
1138         $(LISP_H)
1140 $(BLD)/w32inevt.$(O) : \
1141         $(SRC)/w32inevt.c \
1142         $(SRC)/w32heap.h \
1143         $(BLOCKINPUT_H) \
1144         $(CONFIG_H) \
1145         $(DISPEXTERN_H) \
1146         $(FRAME_H) \
1147         $(KEYBOARD_H) \
1148         $(LISP_H) \
1149         $(TERMHOOKS_H) \
1150         $(W32TERM_H)
1152 $(BLD)/w32proc.$(O) : \
1153         $(SRC)/w32proc.c \
1154         $(SRC)/syssignal.h \
1155         $(SRC)/syswait.h \
1156         $(SRC)/w32.h \
1157         $(SRC)/w32heap.h \
1158         $(NT_INC)/nl_types.h \
1159         $(NT_INC)/sys/file.h \
1160         $(CODING_H) \
1161         $(CONFIG_H) \
1162         $(DISPEXTERN_H) \
1163         $(LANGINFO_H) \
1164         $(LISP_H) \
1165         $(PROCESS_H) \
1166         $(SYSTIME_H) \
1167         $(W32TERM_H)
1169 $(BLD)/w32console.$(O) : \
1170         $(SRC)/w32console.c \
1171         $(SRC)/disptab.h \
1172         $(SRC)/termchar.h \
1173         $(SRC)/w32inevt.h \
1174         $(CHARACTER_H) \
1175         $(CODING_H) \
1176         $(CONFIG_H) \
1177         $(DISPEXTERN_H) \
1178         $(FRAME_H) \
1179         $(LISP_H) \
1180         $(TERMHOOKS_H)
1182 $(BLD)/print.$(O) : \
1183         $(SRC)/print.c \
1184         $(SRC)/buffer.h \
1185         $(SRC)/termchar.h \
1186         $(BLOCKINPUT_H) \
1187         $(CHARACTER_H) \
1188         $(CHARSET_H) \
1189         $(CONFIG_H) \
1190         $(DISPEXTERN_H) \
1191         $(FONT_H) \
1192         $(FRAME_H) \
1193         $(FTOASTR_H) \
1194         $(INTERVALS_H) \
1195         $(KEYBOARD_H) \
1196         $(LISP_H) \
1197         $(PROCESS_H) \
1198         $(TERMHOOKS_H) \
1199         $(WINDOW_H)
1201 $(BLD)/process.$(O) : \
1202         $(SRC)/process.c \
1203         $(SRC)/buffer.h \
1204         $(SRC)/commands.h \
1205         $(SRC)/composite.h \
1206         $(SRC)/gnutls.h \
1207         $(SRC)/sysselect.h \
1208         $(SRC)/syssignal.h \
1209         $(SRC)/syswait.h \
1210         $(SRC)/termopts.h \
1211         $(NT_INC)/arpa/inet.h \
1212         $(NT_INC)/netdb.h \
1213         $(NT_INC)/netinet/in.h \
1214         $(NT_INC)/sys/file.h \
1215         $(NT_INC)/sys/ioctl.h \
1216         $(NT_INC)/sys/stat.h \
1217         $(NT_INC)/unistd.h \
1218         $(ATIMER_H) \
1219         $(BLOCKINPUT_H) \
1220         $(CHARACTER_H) \
1221         $(CODING_H) \
1222         $(CONFIG_H) \
1223         $(DISPEXTERN_H) \
1224         $(FRAME_H) \
1225         $(KEYBOARD_H) \
1226         $(LISP_H) \
1227         $(PROCESS_H) \
1228         $(SOCKET_H) \
1229         $(SYSTIME_H) \
1230         $(SYSTTY_H) \
1231         $(TERMHOOKS_H) \
1232         $(WINDOW_H)
1234 $(BLD)/ralloc.$(O) : \
1235         $(SRC)/ralloc.c \
1236         $(SRC)/getpagesize.h \
1237         $(NT_INC)/unistd.h \
1238         $(BLOCKINPUT_H) \
1239         $(CONFIG_H) \
1240         $(LISP_H)
1242 $(BLD)/regex.$(O) : \
1243         $(SRC)/regex.c \
1244         $(SRC)/buffer.h \
1245         $(SRC)/category.h \
1246         $(SRC)/regex.h \
1247         $(SRC)/syntax.h \
1248         $(NT_INC)/unistd.h \
1249         $(CHARACTER_H) \
1250         $(CONFIG_H) \
1251         $(LISP_H)
1253 $(BLD)/region-cache.$(O) : \
1254         $(SRC)/region-cache.c \
1255         $(SRC)/buffer.h \
1256         $(SRC)/region-cache.h \
1257         $(CONFIG_H) \
1258         $(LISP_H)
1260 $(BLD)/scroll.$(O) : \
1261         $(SRC)/scroll.c \
1262         $(SRC)/termchar.h \
1263         $(CONFIG_H) \
1264         $(DISPEXTERN_H) \
1265         $(FRAME_H) \
1266         $(KEYBOARD_H) \
1267         $(LISP_H) \
1268         $(TERMHOOKS_H) \
1269         $(WINDOW_H)
1271 $(BLD)/search.$(O) : \
1272         $(SRC)/search.c \
1273         $(SRC)/buffer.h \
1274         $(SRC)/category.h \
1275         $(SRC)/commands.h \
1276         $(SRC)/regex.h \
1277         $(SRC)/region-cache.h \
1278         $(SRC)/syntax.h \
1279         $(BLOCKINPUT_H) \
1280         $(CHARACTER_H) \
1281         $(CHARSET_H) \
1282         $(CONFIG_H) \
1283         $(INTERVALS_H) \
1284         $(LISP_H)
1286 $(BLD)/sound.$(O) : \
1287         $(SRC)/sound.c \
1288         $(SRC)/syssignal.h \
1289         $(NT_INC)/unistd.h \
1290         $(ATIMER_H) \
1291         $(CONFIG_H) \
1292         $(DISPEXTERN_H) \
1293         $(LISP_H)
1295 $(BLD)/syntax.$(O) : \
1296         $(SRC)/syntax.c \
1297         $(SRC)/buffer.h \
1298         $(SRC)/category.h \
1299         $(SRC)/commands.h \
1300         $(SRC)/keymap.h \
1301         $(SRC)/regex.h \
1302         $(SRC)/syntax.h \
1303         $(CHARACTER_H) \
1304         $(CONFIG_H) \
1305         $(INTERVALS_H) \
1306         $(LISP_H)
1308 $(BLD)/sysdep.$(O) : \
1309         $(SRC)/sysdep.c \
1310         $(SRC)/cm.h \
1311         $(SRC)/sysselect.h \
1312         $(SRC)/syssignal.h \
1313         $(SRC)/syswait.h \
1314         $(SRC)/termchar.h \
1315         $(SRC)/termopts.h \
1316         $(NT_INC)/netdb.h \
1317         $(NT_INC)/pwd.h \
1318         $(NT_INC)/sys/file.h \
1319         $(NT_INC)/sys/stat.h \
1320         $(NT_INC)/unistd.h \
1321         $(GNU_LIB)/allocator.h \
1322         $(GNU_LIB)/ignore-value.h \
1323         $(BLOCKINPUT_H) \
1324         $(CAREADLINKAT_H) \
1325         $(CONFIG_H) \
1326         $(DISPEXTERN_H) \
1327         $(FRAME_H) \
1328         $(GRP_H) \
1329         $(KEYBOARD_H) \
1330         $(LISP_H) \
1331         $(PROCESS_H) \
1332         $(SOCKET_H) \
1333         $(SYSTIME_H) \
1334         $(SYSTTY_H) \
1335         $(TERMHOOKS_H) \
1336         $(WINDOW_H)
1338 $(BLD)/term.$(O) : \
1339         $(SRC)/term.c \
1340         $(SRC)/buffer.h \
1341         $(SRC)/cm.h \
1342         $(SRC)/composite.h \
1343         $(SRC)/disptab.h \
1344         $(SRC)/keymap.h \
1345         $(SRC)/syssignal.h \
1346         $(SRC)/termchar.h \
1347         $(SRC)/termopts.h \
1348         $(SRC)/tparam.h \
1349         $(NT_INC)/sys/file.h \
1350         $(NT_INC)/unistd.h \
1351         $(BLOCKINPUT_H) \
1352         $(CHARACTER_H) \
1353         $(CHARSET_H) \
1354         $(CODING_H) \
1355         $(CONFIG_H) \
1356         $(DISPEXTERN_H) \
1357         $(FRAME_H) \
1358         $(INTERVALS_H) \
1359         $(KEYBOARD_H) \
1360         $(LISP_H) \
1361         $(SYSTTY_H) \
1362         $(TERMHOOKS_H) \
1363         $(WINDOW_H)
1365 $(BLD)/terminal.$(O) : \
1366         $(SRC)/terminal.c \
1367         $(SRC)/termchar.h \
1368         $(CHARSET_H) \
1369         $(CODING_H) \
1370         $(CONFIG_H) \
1371         $(FRAME_H) \
1372         $(KEYBOARD_H) \
1373         $(LISP_H) \
1374         $(TERMHOOKS_H)
1376 $(BLD)/textprop.$(O) : \
1377         $(SRC)/textprop.c \
1378         $(SRC)/buffer.h \
1379         $(CONFIG_H) \
1380         $(INTERVALS_H) \
1381         $(LISP_H) \
1382         $(WINDOW_H)
1384 $(BLD)/tparam.$(O) : \
1385         $(SRC)/tparam.c \
1386         $(SRC)/tparam.h \
1387         $(CONFIG_H) \
1388         $(LISP_H)
1390 $(BLD)/undo.$(O) : \
1391         $(SRC)/undo.c \
1392         $(SRC)/buffer.h \
1393         $(SRC)/commands.h \
1394         $(CONFIG_H) \
1395         $(LISP_H) \
1396         $(WINDOW_H)
1398 $(BLD)/unexw32.$(O) : \
1399         $(SRC)/unexw32.c \
1400         $(SRC)/unexec.h \
1401         $(SRC)/w32heap.h \
1402         $(CONFIG_H)
1404 $(BLD)/vm-limit.$(O) : \
1405         $(SRC)/vm-limit.c \
1406         $(SRC)/mem-limits.h \
1407         $(CONFIG_H) \
1408         $(LISP_H)
1410 $(BLD)/window.$(O) : \
1411         $(SRC)/window.c \
1412         $(SRC)/buffer.h \
1413         $(SRC)/commands.h \
1414         $(SRC)/disptab.h \
1415         $(SRC)/indent.h \
1416         $(SRC)/keymap.h \
1417         $(SRC)/termchar.h \
1418         $(BLOCKINPUT_H) \
1419         $(CONFIG_H) \
1420         $(DISPEXTERN_H) \
1421         $(FRAME_H) \
1422         $(INTERVALS_H) \
1423         $(KEYBOARD_H) \
1424         $(LISP_H) \
1425         $(TERMHOOKS_H) \
1426         $(W32TERM_H) \
1427         $(WINDOW_H)
1429 $(BLD)/xdisp.$(O) : \
1430         $(SRC)/xdisp.c \
1431         $(SRC)/buffer.h \
1432         $(SRC)/commands.h \
1433         $(SRC)/disptab.h \
1434         $(SRC)/fontset.h \
1435         $(SRC)/indent.h \
1436         $(SRC)/keymap.h \
1437         $(SRC)/macros.h \
1438         $(SRC)/region-cache.h \
1439         $(SRC)/termchar.h \
1440         $(SRC)/termopts.h \
1441         $(BLOCKINPUT_H) \
1442         $(CHARACTER_H) \
1443         $(CHARSET_H) \
1444         $(CODING_H) \
1445         $(CONFIG_H) \
1446         $(DISPEXTERN_H) \
1447         $(FONT_H) \
1448         $(FRAME_H) \
1449         $(INTERVALS_H) \
1450         $(KEYBOARD_H) \
1451         $(LISP_H) \
1452         $(PROCESS_H) \
1453         $(TERMHOOKS_H) \
1454         $(W32TERM_H) \
1455         $(WINDOW_H)
1457 $(BLD)/xfaces.$(O) : \
1458         $(SRC)/xfaces.c \
1459         $(SRC)/buffer.h \
1460         $(SRC)/fontset.h \
1461         $(SRC)/termchar.h \
1462         $(NT_INC)/sys/stat.h \
1463         $(BLOCKINPUT_H) \
1464         $(CHARACTER_H) \
1465         $(CHARSET_H) \
1466         $(CONFIG_H) \
1467         $(DISPEXTERN_H) \
1468         $(FONT_H) \
1469         $(FRAME_H) \
1470         $(INTERVALS_H) \
1471         $(KEYBOARD_H) \
1472         $(LISP_H) \
1473         $(TERMHOOKS_H) \
1474         $(W32TERM_H) \
1475         $(WINDOW_H)
1477 $(BLD)/w32fns.$(O) : \
1478         $(SRC)/w32fns.c \
1479         $(SRC)/buffer.h \
1480         $(SRC)/ccl.h \
1481         $(SRC)/epaths.h \
1482         $(SRC)/fontset.h \
1483         $(SRC)/w32.h \
1484         $(SRC)/w32font.h \
1485         $(SRC)/w32heap.h \
1486         $(BLOCKINPUT_H) \
1487         $(CHARACTER_H) \
1488         $(CHARSET_H) \
1489         $(CODING_H) \
1490         $(CONFIG_H) \
1491         $(DISPEXTERN_H) \
1492         $(FONT_H) \
1493         $(FRAME_H) \
1494         $(INTERVALS_H) \
1495         $(KEYBOARD_H) \
1496         $(LISP_H) \
1497         $(SYSTIME_H) \
1498         $(TERMHOOKS_H) \
1499         $(W32TERM_H) \
1500         $(WINDOW_H)
1502 $(BLD)/w32menu.$(O) : \
1503         $(SRC)/w32menu.c \
1504         $(SRC)/buffer.h \
1505         $(SRC)/keymap.h \
1506         $(BLOCKINPUT_H) \
1507         $(CHARSET_H) \
1508         $(CODING_H) \
1509         $(CONFIG_H) \
1510         $(DISPEXTERN_H) \
1511         $(FRAME_H) \
1512         $(KEYBOARD_H) \
1513         $(LISP_H) \
1514         $(MENU_H) \
1515         $(TERMHOOKS_H) \
1516         $(W32TERM_H) \
1517         $(WINDOW_H)
1519 $(BLD)/w32term.$(O) : \
1520         $(SRC)/w32term.c \
1521         $(SRC)/buffer.h \
1522         $(SRC)/ccl.h \
1523         $(SRC)/disptab.h \
1524         $(SRC)/fontset.h \
1525         $(SRC)/keymap.h \
1526         $(SRC)/termchar.h \
1527         $(SRC)/termopts.h \
1528         $(SRC)/w32font.h \
1529         $(SRC)/w32heap.h \
1530         $(NT_INC)/sys/stat.h \
1531         $(ATIMER_H) \
1532         $(BLOCKINPUT_H) \
1533         $(CHARACTER_H) \
1534         $(CHARSET_H) \
1535         $(CODING_H) \
1536         $(CONFIG_H) \
1537         $(DISPEXTERN_H) \
1538         $(FONT_H) \
1539         $(FRAME_H) \
1540         $(INTERVALS_H) \
1541         $(KEYBOARD_H) \
1542         $(LISP_H) \
1543         $(PROCESS_H) \
1544         $(SYSTIME_H) \
1545         $(SYSTTY_H) \
1546         $(TERMHOOKS_H) \
1547         $(W32TERM_H) \
1548         $(WINDOW_H)
1550 $(BLD)/w32select.$(O) : \
1551         $(SRC)/w32select.c \
1552         $(SRC)/composite.h \
1553         $(SRC)/w32heap.h \
1554         $(BLOCKINPUT_H) \
1555         $(CHARSET_H) \
1556         $(CODING_H) \
1557         $(CONFIG_H) \
1558         $(LISP_H) \
1559         $(W32TERM_H)
1561 $(BLD)/w32reg.$(O) : \
1562         $(SRC)/w32reg.c \
1563         $(BLOCKINPUT_H) \
1564         $(CONFIG_H) \
1565         $(LISP_H) \
1566         $(W32TERM_H)
1568 $(BLD)/w32xfns.$(O) : \
1569         $(SRC)/w32xfns.c \
1570         $(SRC)/fontset.h \
1571         $(BLOCKINPUT_H) \
1572         $(CHARSET_H) \
1573         $(CONFIG_H) \
1574         $(FRAME_H) \
1575         $(KEYBOARD_H) \
1576         $(LISP_H) \
1577         $(W32TERM_H)
1579 $(BLD)/w32font.$(O) : \
1580         $(SRC)/w32font.c \
1581         $(SRC)/fontset.h \
1582         $(SRC)/w32font.h \
1583         $(CHARACTER_H) \
1584         $(CHARSET_H) \
1585         $(CODING_H) \
1586         $(CONFIG_H) \
1587         $(DISPEXTERN_H) \
1588         $(FONT_H) \
1589         $(FRAME_H) \
1590         $(LISP_H) \
1591         $(W32TERM_H)
1593 $(BLD)/w32uniscribe.$(O) : \
1594         $(SRC)/w32uniscribe.c \
1595         $(SRC)/composite.h \
1596         $(SRC)/fontset.h \
1597         $(SRC)/w32font.h \
1598         $(CHARACTER_H) \
1599         $(CHARSET_H) \
1600         $(CONFIG_H) \
1601         $(DISPEXTERN_H) \
1602         $(FONT_H) \
1603         $(FRAME_H) \
1604         $(LISP_H) \
1605         $(W32TERM_H)
1607 # Each object file depends on stamp_BLD, because in parallel builds we must
1608 # make sure $(BLD) exists before starting compilations.
1610 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD