* lisp/isearch.el: Let M-e start with point at the first mismatched char.
[emacs.git] / src / makefile.w32-in
blob060b565b3088b5fa920474440dbe89f142b1bde5
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 CONFIG_H   = $(EMACS_ROOT)/src/s/ms-w32.h \
386              $(EMACS_ROOT)/src/m/intel386.h \
387              $(EMACS_ROOT)/src/config.h \
388              $(EMACS_ROOT)/nt/inc/sys/stat.h
389 LISP_H     = $(SRC)/lisp.h \
390              $(SRC)/globals.h \
391              $(EMACS_ROOT)/nt/inc/inttypes.h \
392              $(EMACS_ROOT)/nt/inc/stdint.h
393 PROCESS_H  = $(SRC)/process.h \
394              $(EMACS_ROOT)/nt/inc/unistd.h \
395              $(SRC)/gnutls.h
397 $(BLD)/alloc.$(O) : \
398         $(SRC)/alloc.c \
399         $(CONFIG_H) \
400         $(EMACS_ROOT)/nt/inc/unistd.h \
401         $(EMACS_ROOT)/nt/inc/sys/time.h \
402         $(LISP_H) \
403         $(PROCESS_H) \
404         $(SRC)/atimer.h \
405         $(SRC)/blockinput.h \
406         $(SRC)/buffer.h \
407         $(SRC)/character.h \
408         $(SRC)/coding.h \
409         $(SRC)/composite.h \
410         $(SRC)/dispextern.h \
411         $(SRC)/frame.h \
412         $(SRC)/intervals.h \
413         $(SRC)/keyboard.h \
414         $(SRC)/puresize.h \
415         $(SRC)/syssignal.h \
416         $(SRC)/systime.h \
417         $(SRC)/termhooks.h \
418         $(SRC)/w32.h \
419         $(SRC)/w32gui.h \
420         $(SRC)/window.h
422 $(BLD)/atimer.$(O) : \
423         $(SRC)/atimer.c \
424         $(CONFIG_H) \
425         $(EMACS_ROOT)/nt/inc/unistd.h \
426         $(EMACS_ROOT)/nt/inc/sys/time.h \
427         $(LISP_H) \
428         $(SRC)/atimer.h \
429         $(SRC)/blockinput.h \
430         $(SRC)/syssignal.h \
431         $(SRC)/systime.h
433 $(BLD)/bidi.$(O) : \
434         $(SRC)/bidi.c \
435         $(CONFIG_H) \
436         $(EMACS_ROOT)/nt/inc/sys/time.h \
437         $(LISP_H) \
438         $(SRC)/bidimirror.h \
439         $(SRC)/biditype.h \
440         $(SRC)/buffer.h \
441         $(SRC)/character.h \
442         $(SRC)/dispextern.h \
443         $(SRC)/systime.h \
444         $(SRC)/w32gui.h
446 $(BLD)/buffer.$(O) : \
447         $(SRC)/buffer.c \
448         $(CONFIG_H) \
449         $(EMACS_ROOT)/nt/inc/unistd.h \
450         $(EMACS_ROOT)/nt/inc/sys/param.h \
451         $(EMACS_ROOT)/nt/inc/sys/time.h \
452         $(LISP_H) \
453         $(SRC)/atimer.h \
454         $(SRC)/blockinput.h \
455         $(SRC)/buffer.h \
456         $(SRC)/character.h \
457         $(SRC)/coding.h \
458         $(SRC)/commands.h \
459         $(SRC)/composite.h \
460         $(SRC)/dispextern.h \
461         $(SRC)/frame.h \
462         $(SRC)/indent.h \
463         $(SRC)/intervals.h \
464         $(SRC)/keyboard.h \
465         $(SRC)/keymap.h \
466         $(SRC)/region-cache.h \
467         $(SRC)/systime.h \
468         $(SRC)/w32gui.h \
469         $(SRC)/window.h
471 $(BLD)/bytecode.$(O) : \
472         $(SRC)/bytecode.c \
473         $(CONFIG_H) \
474         $(EMACS_ROOT)/nt/inc/sys/time.h \
475         $(LISP_H) \
476         $(SRC)/buffer.h \
477         $(SRC)/character.h \
478         $(SRC)/dispextern.h \
479         $(SRC)/syntax.h \
480         $(SRC)/systime.h \
481         $(SRC)/w32gui.h \
482         $(SRC)/window.h
484 $(BLD)/callint.$(O) : \
485         $(SRC)/callint.c \
486         $(CONFIG_H) \
487         $(EMACS_ROOT)/nt/inc/sys/time.h \
488         $(LISP_H) \
489         $(SRC)/buffer.h \
490         $(SRC)/character.h \
491         $(SRC)/coding.h \
492         $(SRC)/commands.h \
493         $(SRC)/composite.h \
494         $(SRC)/dispextern.h \
495         $(SRC)/keyboard.h \
496         $(SRC)/keymap.h \
497         $(SRC)/systime.h \
498         $(SRC)/w32gui.h \
499         $(SRC)/window.h
501 $(BLD)/callproc.$(O) : \
502         $(SRC)/callproc.c \
503         $(CONFIG_H) \
504         $(EMACS_ROOT)/nt/inc/unistd.h \
505         $(EMACS_ROOT)/nt/inc/sys/file.h \
506         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
507         $(EMACS_ROOT)/nt/inc/sys/time.h \
508         $(LISP_H) \
509         $(PROCESS_H) \
510         $(SRC)/atimer.h \
511         $(SRC)/blockinput.h \
512         $(SRC)/buffer.h \
513         $(SRC)/ccl.h \
514         $(SRC)/character.h \
515         $(SRC)/coding.h \
516         $(SRC)/commands.h \
517         $(SRC)/composite.h \
518         $(SRC)/dispextern.h \
519         $(SRC)/epaths.h \
520         $(SRC)/frame.h \
521         $(SRC)/syssignal.h \
522         $(SRC)/systime.h \
523         $(SRC)/systty.h \
524         $(SRC)/termhooks.h \
525         $(SRC)/w32.h \
526         $(SRC)/w32gui.h
528 $(BLD)/casefiddle.$(O) : \
529         $(SRC)/casefiddle.c \
530         $(CONFIG_H) \
531         $(LISP_H) \
532         $(SRC)/buffer.h \
533         $(SRC)/character.h \
534         $(SRC)/commands.h \
535         $(SRC)/composite.h \
536         $(SRC)/keymap.h \
537         $(SRC)/syntax.h
539 $(BLD)/casetab.$(O) : \
540         $(SRC)/casetab.c \
541         $(CONFIG_H) \
542         $(LISP_H) \
543         $(SRC)/buffer.h \
544         $(SRC)/character.h
546 $(BLD)/category.$(O) : \
547         $(SRC)/category.c \
548         $(CONFIG_H) \
549         $(LISP_H) \
550         $(SRC)/buffer.h \
551         $(SRC)/category.h \
552         $(SRC)/character.h \
553         $(SRC)/charset.h \
554         $(SRC)/keymap.h
556 $(BLD)/ccl.$(O) : \
557         $(SRC)/ccl.c \
558         $(CONFIG_H) \
559         $(LISP_H) \
560         $(SRC)/ccl.h \
561         $(SRC)/character.h \
562         $(SRC)/charset.h \
563         $(SRC)/coding.h \
564         $(SRC)/composite.h
566 $(BLD)/character.$(O) : \
567         $(SRC)/character.c \
568         $(CONFIG_H) \
569         $(EMACS_ROOT)/lib/intprops.h \
570         $(LISP_H) \
571         $(SRC)/buffer.h \
572         $(SRC)/character.h \
573         $(SRC)/charset.h \
574         $(SRC)/composite.h \
575         $(SRC)/disptab.h
577 $(BLD)/charset.$(O) : \
578         $(SRC)/charset.c \
579         $(CONFIG_H) \
580         $(EMACS_ROOT)/nt/inc/unistd.h \
581         $(LISP_H) \
582         $(SRC)/buffer.h \
583         $(SRC)/character.h \
584         $(SRC)/charset.h \
585         $(SRC)/coding.h \
586         $(SRC)/composite.h \
587         $(SRC)/disptab.h
589 $(BLD)/chartab.$(O) : \
590         $(SRC)/chartab.c \
591         $(CONFIG_H) \
592         $(LISP_H) \
593         $(SRC)/ccl.h \
594         $(SRC)/character.h \
595         $(SRC)/charset.h
597 $(BLD)/cmds.$(O) : \
598         $(SRC)/cmds.c \
599         $(CONFIG_H) \
600         $(EMACS_ROOT)/nt/inc/sys/time.h \
601         $(LISP_H) \
602         $(SRC)/buffer.h \
603         $(SRC)/character.h \
604         $(SRC)/coding.h \
605         $(SRC)/commands.h \
606         $(SRC)/composite.h \
607         $(SRC)/dispextern.h \
608         $(SRC)/frame.h \
609         $(SRC)/keyboard.h \
610         $(SRC)/keymap.h \
611         $(SRC)/syntax.h \
612         $(SRC)/systime.h \
613         $(SRC)/w32gui.h \
614         $(SRC)/window.h
616 $(BLD)/coding.$(O) : \
617         $(SRC)/coding.c \
618         $(CONFIG_H) \
619         $(EMACS_ROOT)/nt/inc/sys/time.h \
620         $(LISP_H) \
621         $(SRC)/buffer.h \
622         $(SRC)/ccl.h \
623         $(SRC)/character.h \
624         $(SRC)/charset.h \
625         $(SRC)/coding.h \
626         $(SRC)/composite.h \
627         $(SRC)/dispextern.h \
628         $(SRC)/frame.h \
629         $(SRC)/systime.h \
630         $(SRC)/termhooks.h \
631         $(SRC)/w32gui.h \
632         $(SRC)/window.h
634 $(BLD)/composite.$(O) : \
635         $(SRC)/composite.c \
636         $(CONFIG_H) \
637         $(EMACS_ROOT)/nt/inc/sys/time.h \
638         $(LISP_H) \
639         $(SRC)/buffer.h \
640         $(SRC)/ccl.h \
641         $(SRC)/character.h \
642         $(SRC)/coding.h \
643         $(SRC)/composite.h \
644         $(SRC)/dispextern.h \
645         $(SRC)/font.h \
646         $(SRC)/frame.h \
647         $(SRC)/intervals.h \
648         $(SRC)/systime.h \
649         $(SRC)/termhooks.h \
650         $(SRC)/w32gui.h \
651         $(SRC)/window.h
653 $(BLD)/data.$(O) : \
654         $(SRC)/data.c \
655         $(CONFIG_H) \
656         $(EMACS_ROOT)/nt/inc/sys/time.h \
657         $(LISP_H) \
658         $(SRC)/buffer.h \
659         $(SRC)/ccl.h \
660         $(SRC)/character.h \
661         $(SRC)/coding.h \
662         $(SRC)/composite.h \
663         $(SRC)/dispextern.h \
664         $(SRC)/font.h \
665         $(SRC)/frame.h \
666         $(SRC)/keyboard.h \
667         $(SRC)/puresize.h \
668         $(SRC)/syssignal.h \
669         $(SRC)/systime.h \
670         $(SRC)/termhooks.h \
671         $(SRC)/w32gui.h
673 $(BLD)/dired.$(O) : \
674         $(SRC)/dired.c \
675         $(CONFIG_H) \
676         $(EMACS_ROOT)/nt/inc/grp.h \
677         $(EMACS_ROOT)/nt/inc/pwd.h \
678         $(EMACS_ROOT)/nt/inc/unistd.h \
679         $(EMACS_ROOT)/nt/inc/sys/dir.h \
680         $(EMACS_ROOT)/nt/inc/sys/time.h \
681         $(EMACS_ROOT)/lib/filemode.h \
682         $(LISP_H) \
683         $(SRC)/atimer.h \
684         $(SRC)/blockinput.h \
685         $(SRC)/buffer.h \
686         $(SRC)/character.h \
687         $(SRC)/charset.h \
688         $(SRC)/coding.h \
689         $(SRC)/commands.h \
690         $(SRC)/composite.h \
691         $(SRC)/ndir.h \
692         $(SRC)/regex.h \
693         $(SRC)/systime.h
695 $(BLD)/dispnew.$(O) : \
696         $(SRC)/dispnew.c \
697         $(CONFIG_H) \
698         $(EMACS_ROOT)/nt/inc/unistd.h \
699         $(EMACS_ROOT)/nt/inc/sys/time.h \
700         $(LISP_H) \
701         $(PROCESS_H) \
702         $(SRC)/atimer.h \
703         $(SRC)/blockinput.h \
704         $(SRC)/buffer.h \
705         $(SRC)/character.h \
706         $(SRC)/cm.h \
707         $(SRC)/coding.h \
708         $(SRC)/commands.h \
709         $(SRC)/composite.h \
710         $(SRC)/dispextern.h \
711         $(SRC)/disptab.h \
712         $(SRC)/frame.h \
713         $(SRC)/indent.h \
714         $(SRC)/intervals.h \
715         $(SRC)/keyboard.h \
716         $(SRC)/syssignal.h \
717         $(SRC)/systime.h \
718         $(SRC)/termchar.h \
719         $(SRC)/termhooks.h \
720         $(SRC)/termopts.h \
721         $(SRC)/w32gui.h \
722         $(SRC)/w32term.h \
723         $(SRC)/window.h
725 $(BLD)/doc.$(O) : \
726         $(SRC)/doc.c \
727         $(CONFIG_H) \
728         buildobj.h \
729         $(EMACS_ROOT)/nt/inc/unistd.h \
730         $(EMACS_ROOT)/nt/inc/sys/file.h \
731         $(EMACS_ROOT)/nt/inc/sys/time.h \
732         $(LISP_H) \
733         $(SRC)/buffer.h \
734         $(SRC)/character.h \
735         $(SRC)/coding.h \
736         $(SRC)/composite.h \
737         $(SRC)/keyboard.h \
738         $(SRC)/keymap.h \
739         $(SRC)/systime.h
741 $(BLD)/doprnt.$(O) : \
742         $(SRC)/doprnt.c \
743         $(CONFIG_H) \
744         $(EMACS_ROOT)/nt/inc/unistd.h \
745         $(LISP_H) \
746         $(SRC)/character.h
748 $(BLD)/editfns.$(O) : \
749         $(SRC)/editfns.c \
750         $(CONFIG_H) \
751         $(EMACS_ROOT)/nt/inc/pwd.h \
752         $(EMACS_ROOT)/nt/inc/unistd.h \
753         $(EMACS_ROOT)/nt/inc/sys/time.h \
754         $(EMACS_ROOT)/lib/intprops.h \
755         $(EMACS_ROOT)/lib/strftime.h \
756         $(LISP_H) \
757         $(SRC)/atimer.h \
758         $(SRC)/blockinput.h \
759         $(SRC)/buffer.h \
760         $(SRC)/character.h \
761         $(SRC)/coding.h \
762         $(SRC)/composite.h \
763         $(SRC)/dispextern.h \
764         $(SRC)/frame.h \
765         $(SRC)/intervals.h \
766         $(SRC)/systime.h \
767         $(SRC)/w32gui.h \
768         $(SRC)/window.h
770 $(BLD)/emacs.$(O) : \
771         $(SRC)/emacs.c \
772         $(CONFIG_H) \
773         $(EMACS_ROOT)/nt/inc/unistd.h \
774         $(EMACS_ROOT)/nt/inc/sys/file.h \
775         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
776         $(EMACS_ROOT)/nt/inc/sys/time.h \
777         $(LISP_H) \
778         $(PROCESS_H) \
779         $(SRC)/atimer.h \
780         $(SRC)/blockinput.h \
781         $(SRC)/buffer.h \
782         $(SRC)/coding.h \
783         $(SRC)/commands.h \
784         $(SRC)/composite.h \
785         $(SRC)/dispextern.h \
786         $(SRC)/frame.h \
787         $(SRC)/intervals.h \
788         $(SRC)/keyboard.h \
789         $(SRC)/keymap.h \
790         $(SRC)/syssignal.h \
791         $(SRC)/systime.h \
792         $(SRC)/systty.h \
793         $(SRC)/termhooks.h \
794         $(SRC)/unexec.h \
795         $(SRC)/w32.h \
796         $(SRC)/w32gui.h \
797         $(SRC)/w32heap.h \
798         $(SRC)/window.h
800 $(BLD)/eval.$(O) : \
801         $(SRC)/eval.c \
802         $(CONFIG_H) \
803         $(EMACS_ROOT)/nt/inc/sys/time.h \
804         $(LISP_H) \
805         $(SRC)/atimer.h \
806         $(SRC)/blockinput.h \
807         $(SRC)/coding.h \
808         $(SRC)/commands.h \
809         $(SRC)/composite.h \
810         $(SRC)/dispextern.h \
811         $(SRC)/frame.h \
812         $(SRC)/keyboard.h \
813         $(SRC)/systime.h \
814         $(SRC)/w32gui.h
816 $(BLD)/fileio.$(O) : \
817         $(SRC)/fileio.c \
818         $(CONFIG_H) \
819         $(EMACS_ROOT)/nt/inc/pwd.h \
820         $(EMACS_ROOT)/nt/inc/unistd.h \
821         $(EMACS_ROOT)/nt/inc/sys/time.h \
822         $(LISP_H) \
823         $(SRC)/atimer.h \
824         $(SRC)/blockinput.h \
825         $(SRC)/buffer.h \
826         $(SRC)/character.h \
827         $(SRC)/coding.h \
828         $(SRC)/commands.h \
829         $(SRC)/composite.h \
830         $(SRC)/dispextern.h \
831         $(SRC)/frame.h \
832         $(SRC)/intervals.h \
833         $(SRC)/systime.h \
834         $(SRC)/w32gui.h \
835         $(SRC)/window.h
837 $(BLD)/filelock.$(O) : \
838         $(SRC)/filelock.c \
839         $(CONFIG_H) \
840         $(EMACS_ROOT)/nt/inc/pwd.h \
841         $(EMACS_ROOT)/nt/inc/unistd.h \
842         $(EMACS_ROOT)/nt/inc/sys/file.h \
843         $(EMACS_ROOT)/nt/inc/sys/time.h \
844         $(LISP_H) \
845         $(SRC)/buffer.h \
846         $(SRC)/character.h \
847         $(SRC)/coding.h \
848         $(SRC)/composite.h \
849         $(SRC)/systime.h
851 $(BLD)/firstfile.$(O) : \
852         $(SRC)/firstfile.c \
853         $(CONFIG_H)
855 $(BLD)/floatfns.$(O) : \
856         $(SRC)/floatfns.c \
857         $(CONFIG_H) \
858         $(LISP_H) \
859         $(SRC)/syssignal.h
861 $(BLD)/fns.$(O) : \
862         $(SRC)/fns.c \
863         $(CONFIG_H) \
864         $(EMACS_ROOT)/nt/inc/langinfo.h \
865         $(EMACS_ROOT)/nt/inc/nl_types.h \
866         $(EMACS_ROOT)/nt/inc/unistd.h \
867         $(EMACS_ROOT)/nt/inc/sys/time.h \
868         $(EMACS_ROOT)/lib/md5.h \
869         $(EMACS_ROOT)/lib/sha1.h \
870         $(LISP_H) \
871         $(SRC)/atimer.h \
872         $(SRC)/blockinput.h \
873         $(SRC)/buffer.h \
874         $(SRC)/character.h \
875         $(SRC)/coding.h \
876         $(SRC)/commands.h \
877         $(SRC)/composite.h \
878         $(SRC)/dispextern.h \
879         $(SRC)/frame.h \
880         $(SRC)/intervals.h \
881         $(SRC)/keyboard.h \
882         $(SRC)/keymap.h \
883         $(SRC)/systime.h \
884         $(SRC)/w32gui.h \
885         $(SRC)/window.h
887 $(BLD)/font.$(O) : \
888         $(SRC)/font.c \
889         $(CONFIG_H) \
890         $(EMACS_ROOT)/nt/inc/sys/time.h \
891         $(LISP_H) \
892         $(SRC)/buffer.h \
893         $(SRC)/ccl.h \
894         $(SRC)/character.h \
895         $(SRC)/charset.h \
896         $(SRC)/composite.h \
897         $(SRC)/dispextern.h \
898         $(SRC)/font.h \
899         $(SRC)/fontset.h \
900         $(SRC)/frame.h \
901         $(SRC)/systime.h \
902         $(SRC)/w32gui.h \
903         $(SRC)/w32term.h \
904         $(SRC)/window.h
906 $(BLD)/fontset.$(O) : \
907         $(SRC)/fontset.c \
908         $(CONFIG_H) \
909         $(EMACS_ROOT)/nt/inc/sys/time.h \
910         $(LISP_H) \
911         $(SRC)/atimer.h \
912         $(SRC)/blockinput.h \
913         $(SRC)/buffer.h \
914         $(SRC)/ccl.h \
915         $(SRC)/character.h \
916         $(SRC)/charset.h \
917         $(SRC)/coding.h \
918         $(SRC)/composite.h \
919         $(SRC)/dispextern.h \
920         $(SRC)/font.h \
921         $(SRC)/fontset.h \
922         $(SRC)/frame.h \
923         $(SRC)/intervals.h \
924         $(SRC)/keyboard.h \
925         $(SRC)/systime.h \
926         $(SRC)/termhooks.h \
927         $(SRC)/w32gui.h \
928         $(SRC)/w32term.h \
929         $(SRC)/window.h
931 $(BLD)/frame.$(O) : \
932         $(SRC)/frame.c \
933         $(CONFIG_H) \
934         $(EMACS_ROOT)/nt/inc/sys/time.h \
935         $(LISP_H) \
936         $(SRC)/atimer.h \
937         $(SRC)/blockinput.h \
938         $(SRC)/buffer.h \
939         $(SRC)/ccl.h \
940         $(SRC)/character.h \
941         $(SRC)/coding.h \
942         $(SRC)/commands.h \
943         $(SRC)/composite.h \
944         $(SRC)/dispextern.h \
945         $(SRC)/font.h \
946         $(SRC)/fontset.h \
947         $(SRC)/frame.h \
948         $(SRC)/keyboard.h \
949         $(SRC)/systime.h \
950         $(SRC)/termchar.h \
951         $(SRC)/termhooks.h \
952         $(SRC)/w32gui.h \
953         $(SRC)/w32term.h \
954         $(SRC)/window.h
956 $(BLD)/fringe.$(O) : \
957         $(SRC)/fringe.c \
958         $(CONFIG_H) \
959         $(EMACS_ROOT)/nt/inc/sys/time.h \
960         $(LISP_H) \
961         $(SRC)/atimer.h \
962         $(SRC)/blockinput.h \
963         $(SRC)/buffer.h \
964         $(SRC)/dispextern.h \
965         $(SRC)/frame.h \
966         $(SRC)/systime.h \
967         $(SRC)/termhooks.h \
968         $(SRC)/w32gui.h \
969         $(SRC)/window.h
971 $(BLD)/gmalloc.$(O) : \
972         $(SRC)/gmalloc.c \
973         $(CONFIG_H) \
974         $(EMACS_ROOT)/nt/inc/unistd.h \
975         $(SRC)/getpagesize.h
977 $(BLD)/gnutls.$(O) : \
978         $(SRC)/gnutls.c \
979         $(CONFIG_H) \
980         $(EMACS_ROOT)/nt/inc/unistd.h \
981         $(LISP_H) \
982         $(PROCESS_H) \
983         $(SRC)/w32.h
985 $(BLD)/image.$(O) : \
986         $(SRC)/image.c \
987         $(CONFIG_H) \
988         $(EMACS_ROOT)/nt/inc/unistd.h \
989         $(EMACS_ROOT)/nt/inc/sys/time.h \
990         $(LISP_H) \
991         $(SRC)/atimer.h \
992         $(SRC)/blockinput.h \
993         $(SRC)/ccl.h \
994         $(SRC)/character.h \
995         $(SRC)/coding.h \
996         $(SRC)/composite.h \
997         $(SRC)/dispextern.h \
998         $(SRC)/epaths.h \
999         $(SRC)/font.h \
1000         $(SRC)/frame.h \
1001         $(SRC)/systime.h \
1002         $(SRC)/termhooks.h \
1003         $(SRC)/w32.h \
1004         $(SRC)/w32gui.h \
1005         $(SRC)/w32term.h \
1006         $(SRC)/window.h
1008 $(BLD)/indent.$(O) : \
1009         $(SRC)/indent.c \
1010         $(CONFIG_H) \
1011         $(EMACS_ROOT)/nt/inc/sys/time.h \
1012         $(LISP_H) \
1013         $(SRC)/buffer.h \
1014         $(SRC)/category.h \
1015         $(SRC)/character.h \
1016         $(SRC)/coding.h \
1017         $(SRC)/composite.h \
1018         $(SRC)/dispextern.h \
1019         $(SRC)/disptab.h \
1020         $(SRC)/frame.h \
1021         $(SRC)/indent.h \
1022         $(SRC)/intervals.h \
1023         $(SRC)/keyboard.h \
1024         $(SRC)/region-cache.h \
1025         $(SRC)/systime.h \
1026         $(SRC)/termchar.h \
1027         $(SRC)/termopts.h \
1028         $(SRC)/w32gui.h \
1029         $(SRC)/window.h
1031 $(BLD)/insdel.$(O) : \
1032         $(SRC)/insdel.c \
1033         $(CONFIG_H) \
1034         $(EMACS_ROOT)/nt/inc/sys/time.h \
1035         $(EMACS_ROOT)/lib/intprops.h \
1036         $(LISP_H) \
1037         $(SRC)/atimer.h \
1038         $(SRC)/blockinput.h \
1039         $(SRC)/buffer.h \
1040         $(SRC)/character.h \
1041         $(SRC)/composite.h \
1042         $(SRC)/dispextern.h \
1043         $(SRC)/intervals.h \
1044         $(SRC)/region-cache.h \
1045         $(SRC)/systime.h \
1046         $(SRC)/w32gui.h \
1047         $(SRC)/window.h
1049 $(BLD)/intervals.$(O) : \
1050         $(SRC)/intervals.c \
1051         $(CONFIG_H) \
1052         $(EMACS_ROOT)/nt/inc/sys/time.h \
1053         $(EMACS_ROOT)/lib/intprops.h \
1054         $(LISP_H) \
1055         $(SRC)/buffer.h \
1056         $(SRC)/coding.h \
1057         $(SRC)/composite.h \
1058         $(SRC)/dispextern.h \
1059         $(SRC)/intervals.h \
1060         $(SRC)/keyboard.h \
1061         $(SRC)/keymap.h \
1062         $(SRC)/puresize.h \
1063         $(SRC)/systime.h \
1064         $(SRC)/w32gui.h
1066 $(BLD)/keyboard.$(O) : \
1067         $(SRC)/keyboard.c \
1068         $(CONFIG_H) \
1069         $(EMACS_ROOT)/nt/inc/unistd.h \
1070         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1071         $(EMACS_ROOT)/nt/inc/sys/time.h \
1072         $(LISP_H) \
1073         $(PROCESS_H) \
1074         $(SRC)/atimer.h \
1075         $(SRC)/blockinput.h \
1076         $(SRC)/buffer.h \
1077         $(SRC)/character.h \
1078         $(SRC)/coding.h \
1079         $(SRC)/commands.h \
1080         $(SRC)/composite.h \
1081         $(SRC)/dispextern.h \
1082         $(SRC)/disptab.h \
1083         $(SRC)/frame.h \
1084         $(SRC)/intervals.h \
1085         $(SRC)/keyboard.h \
1086         $(SRC)/keymap.h \
1087         $(SRC)/macros.h \
1088         $(SRC)/puresize.h \
1089         $(SRC)/syntax.h \
1090         $(SRC)/syssignal.h \
1091         $(SRC)/systime.h \
1092         $(SRC)/termchar.h \
1093         $(SRC)/termhooks.h \
1094         $(SRC)/termopts.h \
1095         $(SRC)/w32gui.h \
1096         $(SRC)/w32term.h \
1097         $(SRC)/window.h
1099 $(BLD)/keymap.$(O) : \
1100         $(SRC)/keymap.c \
1101         $(CONFIG_H) \
1102         $(EMACS_ROOT)/nt/inc/sys/time.h \
1103         $(LISP_H) \
1104         $(SRC)/atimer.h \
1105         $(SRC)/blockinput.h \
1106         $(SRC)/buffer.h \
1107         $(SRC)/character.h \
1108         $(SRC)/charset.h \
1109         $(SRC)/coding.h \
1110         $(SRC)/commands.h \
1111         $(SRC)/composite.h \
1112         $(SRC)/dispextern.h \
1113         $(SRC)/frame.h \
1114         $(SRC)/intervals.h \
1115         $(SRC)/keyboard.h \
1116         $(SRC)/keymap.h \
1117         $(SRC)/puresize.h \
1118         $(SRC)/systime.h \
1119         $(SRC)/termhooks.h \
1120         $(SRC)/w32gui.h \
1121         $(SRC)/window.h
1123 $(BLD)/lastfile.$(O) : \
1124         $(SRC)/lastfile.c \
1125         $(CONFIG_H)
1127 $(BLD)/lread.$(O) : \
1128         $(SRC)/lread.c \
1129         $(CONFIG_H) \
1130         $(EMACS_ROOT)/nt/inc/unistd.h \
1131         $(EMACS_ROOT)/nt/inc/sys/file.h \
1132         $(EMACS_ROOT)/nt/inc/sys/time.h \
1133         $(LISP_H) \
1134         $(SRC)/atimer.h \
1135         $(SRC)/blockinput.h \
1136         $(SRC)/buffer.h \
1137         $(SRC)/character.h \
1138         $(SRC)/charset.h \
1139         $(SRC)/coding.h \
1140         $(SRC)/commands.h \
1141         $(SRC)/composite.h \
1142         $(SRC)/dispextern.h \
1143         $(SRC)/epaths.h \
1144         $(SRC)/frame.h \
1145         $(SRC)/intervals.h \
1146         $(SRC)/keyboard.h \
1147         $(SRC)/systime.h \
1148         $(SRC)/termhooks.h \
1149         $(SRC)/w32gui.h
1151 $(BLD)/macros.$(O) : \
1152         $(SRC)/macros.c \
1153         $(CONFIG_H) \
1154         $(EMACS_ROOT)/nt/inc/sys/time.h \
1155         $(LISP_H) \
1156         $(SRC)/buffer.h \
1157         $(SRC)/coding.h \
1158         $(SRC)/commands.h \
1159         $(SRC)/composite.h \
1160         $(SRC)/dispextern.h \
1161         $(SRC)/keyboard.h \
1162         $(SRC)/macros.h \
1163         $(SRC)/systime.h \
1164         $(SRC)/w32gui.h \
1165         $(SRC)/window.h
1167 $(BLD)/marker.$(O) : \
1168         $(SRC)/marker.c \
1169         $(CONFIG_H) \
1170         $(LISP_H) \
1171         $(SRC)/buffer.h \
1172         $(SRC)/character.h
1174 $(BLD)/menu.$(O) : \
1175         $(SRC)/menu.c \
1176         $(CONFIG_H) \
1177         $(EMACS_ROOT)/nt/inc/sys/time.h \
1178         $(LISP_H) \
1179         $(SRC)/atimer.h \
1180         $(SRC)/blockinput.h \
1181         $(SRC)/coding.h \
1182         $(SRC)/composite.h \
1183         $(SRC)/dispextern.h \
1184         $(SRC)/frame.h \
1185         $(SRC)/keyboard.h \
1186         $(SRC)/keymap.h \
1187         $(SRC)/menu.h \
1188         $(SRC)/systime.h \
1189         $(SRC)/termhooks.h \
1190         $(SRC)/w32gui.h \
1191         $(SRC)/w32term.h \
1192         $(SRC)/window.h
1194 $(BLD)/minibuf.$(O) : \
1195         $(SRC)/minibuf.c \
1196         $(CONFIG_H) \
1197         $(EMACS_ROOT)/nt/inc/sys/time.h \
1198         $(LISP_H) \
1199         $(SRC)/buffer.h \
1200         $(SRC)/character.h \
1201         $(SRC)/coding.h \
1202         $(SRC)/commands.h \
1203         $(SRC)/composite.h \
1204         $(SRC)/dispextern.h \
1205         $(SRC)/frame.h \
1206         $(SRC)/intervals.h \
1207         $(SRC)/keyboard.h \
1208         $(SRC)/keymap.h \
1209         $(SRC)/syntax.h \
1210         $(SRC)/systime.h \
1211         $(SRC)/termhooks.h \
1212         $(SRC)/w32gui.h \
1213         $(SRC)/window.h
1215 $(BLD)/w32.$(O) : \
1216         $(SRC)/w32.c \
1217         $(CONFIG_H) \
1218         $(EMACS_ROOT)/nt/inc/grp.h \
1219         $(EMACS_ROOT)/nt/inc/pwd.h \
1220         $(EMACS_ROOT)/nt/inc/unistd.h \
1221         $(EMACS_ROOT)/nt/inc/sys/file.h \
1222         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1223         $(EMACS_ROOT)/nt/inc/sys/time.h \
1224         $(EMACS_ROOT)/lib/allocator.h \
1225         $(EMACS_ROOT)/lib/careadlinkat.h \
1226         $(LISP_H) \
1227         $(PROCESS_H) \
1228         $(SRC)/coding.h \
1229         $(SRC)/composite.h \
1230         $(SRC)/dispextern.h \
1231         $(SRC)/ndir.h \
1232         $(SRC)/systime.h \
1233         $(SRC)/w32.h \
1234         $(SRC)/w32gui.h \
1235         $(SRC)/w32heap.h
1237 $(BLD)/w32heap.$(O) : \
1238         $(SRC)/w32heap.c \
1239         $(CONFIG_H) \
1240         $(LISP_H) \
1241         $(SRC)/w32heap.h
1243 $(BLD)/w32inevt.$(O) : \
1244         $(SRC)/w32inevt.c \
1245         $(CONFIG_H) \
1246         $(EMACS_ROOT)/nt/inc/sys/time.h \
1247         $(LISP_H) \
1248         $(SRC)/atimer.h \
1249         $(SRC)/blockinput.h \
1250         $(SRC)/coding.h \
1251         $(SRC)/composite.h \
1252         $(SRC)/dispextern.h \
1253         $(SRC)/frame.h \
1254         $(SRC)/keyboard.h \
1255         $(SRC)/systime.h \
1256         $(SRC)/termhooks.h \
1257         $(SRC)/w32gui.h \
1258         $(SRC)/w32heap.h \
1259         $(SRC)/w32term.h
1261 $(BLD)/w32proc.$(O) : \
1262         $(SRC)/w32proc.c \
1263         $(CONFIG_H) \
1264         $(EMACS_ROOT)/nt/inc/langinfo.h \
1265         $(EMACS_ROOT)/nt/inc/nl_types.h \
1266         $(EMACS_ROOT)/nt/inc/unistd.h \
1267         $(EMACS_ROOT)/nt/inc/sys/file.h \
1268         $(EMACS_ROOT)/nt/inc/sys/time.h \
1269         $(LISP_H) \
1270         $(PROCESS_H) \
1271         $(SRC)/character.h \
1272         $(SRC)/coding.h \
1273         $(SRC)/composite.h \
1274         $(SRC)/dispextern.h \
1275         $(SRC)/syssignal.h \
1276         $(SRC)/systime.h \
1277         $(SRC)/syswait.h \
1278         $(SRC)/w32.h \
1279         $(SRC)/w32gui.h \
1280         $(SRC)/w32heap.h \
1281         $(SRC)/w32term.h
1283 $(BLD)/w32console.$(O) : \
1284         $(SRC)/w32console.c \
1285         $(CONFIG_H) \
1286         $(EMACS_ROOT)/nt/inc/sys/time.h \
1287         $(LISP_H) \
1288         $(SRC)/character.h \
1289         $(SRC)/coding.h \
1290         $(SRC)/composite.h \
1291         $(SRC)/dispextern.h \
1292         $(SRC)/disptab.h \
1293         $(SRC)/frame.h \
1294         $(SRC)/systime.h \
1295         $(SRC)/termchar.h \
1296         $(SRC)/termhooks.h \
1297         $(SRC)/w32gui.h \
1298         $(SRC)/w32inevt.h
1300 $(BLD)/print.$(O) : \
1301         $(SRC)/print.c \
1302         $(CONFIG_H) \
1303         $(EMACS_ROOT)/nt/inc/unistd.h \
1304         $(EMACS_ROOT)/nt/inc/sys/time.h \
1305         $(EMACS_ROOT)/lib/ftoastr.h \
1306         $(EMACS_ROOT)/lib/intprops.h \
1307         $(LISP_H) \
1308         $(PROCESS_H) \
1309         $(SRC)/atimer.h \
1310         $(SRC)/blockinput.h \
1311         $(SRC)/buffer.h \
1312         $(SRC)/ccl.h \
1313         $(SRC)/character.h \
1314         $(SRC)/charset.h \
1315         $(SRC)/coding.h \
1316         $(SRC)/composite.h \
1317         $(SRC)/dispextern.h \
1318         $(SRC)/font.h \
1319         $(SRC)/frame.h \
1320         $(SRC)/intervals.h \
1321         $(SRC)/keyboard.h \
1322         $(SRC)/systime.h \
1323         $(SRC)/termchar.h \
1324         $(SRC)/termhooks.h \
1325         $(SRC)/w32gui.h \
1326         $(SRC)/window.h
1328 $(BLD)/process.$(O) : \
1329         $(SRC)/process.c \
1330         $(CONFIG_H) \
1331         $(EMACS_ROOT)/nt/inc/netdb.h \
1332         $(EMACS_ROOT)/nt/inc/unistd.h \
1333         $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1334         $(EMACS_ROOT)/nt/inc/netinet/in.h \
1335         $(EMACS_ROOT)/nt/inc/sys/file.h \
1336         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1337         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1338         $(EMACS_ROOT)/nt/inc/sys/time.h \
1339         $(LISP_H) \
1340         $(PROCESS_H) \
1341         $(SRC)/atimer.h \
1342         $(SRC)/blockinput.h \
1343         $(SRC)/buffer.h \
1344         $(SRC)/character.h \
1345         $(SRC)/coding.h \
1346         $(SRC)/commands.h \
1347         $(SRC)/composite.h \
1348         $(SRC)/dispextern.h \
1349         $(SRC)/frame.h \
1350         $(SRC)/keyboard.h \
1351         $(SRC)/sysselect.h \
1352         $(SRC)/syssignal.h \
1353         $(SRC)/systime.h \
1354         $(SRC)/systty.h \
1355         $(SRC)/syswait.h \
1356         $(SRC)/termhooks.h \
1357         $(SRC)/termopts.h \
1358         $(SRC)/w32.h \
1359         $(SRC)/w32gui.h \
1360         $(SRC)/window.h
1362 $(BLD)/ralloc.$(O) : \
1363         $(SRC)/ralloc.c \
1364         $(CONFIG_H) \
1365         $(EMACS_ROOT)/nt/inc/unistd.h \
1366         $(EMACS_ROOT)/nt/inc/sys/time.h \
1367         $(LISP_H) \
1368         $(SRC)/atimer.h \
1369         $(SRC)/blockinput.h \
1370         $(SRC)/getpagesize.h \
1371         $(SRC)/systime.h
1373 $(BLD)/regex.$(O) : \
1374         $(SRC)/regex.c \
1375         $(CONFIG_H) \
1376         $(LISP_H) \
1377         $(SRC)/buffer.h \
1378         $(SRC)/category.h \
1379         $(SRC)/character.h \
1380         $(SRC)/regex.h \
1381         $(SRC)/syntax.h
1383 $(BLD)/region-cache.$(O) : \
1384         $(SRC)/region-cache.c \
1385         $(CONFIG_H) \
1386         $(LISP_H) \
1387         $(SRC)/buffer.h \
1388         $(SRC)/region-cache.h
1390 $(BLD)/scroll.$(O) : \
1391         $(SRC)/scroll.c \
1392         $(CONFIG_H) \
1393         $(EMACS_ROOT)/nt/inc/sys/time.h \
1394         $(LISP_H) \
1395         $(SRC)/coding.h \
1396         $(SRC)/composite.h \
1397         $(SRC)/dispextern.h \
1398         $(SRC)/frame.h \
1399         $(SRC)/keyboard.h \
1400         $(SRC)/systime.h \
1401         $(SRC)/termchar.h \
1402         $(SRC)/termhooks.h \
1403         $(SRC)/w32gui.h \
1404         $(SRC)/window.h
1406 $(BLD)/search.$(O) : \
1407         $(SRC)/search.c \
1408         $(CONFIG_H) \
1409         $(EMACS_ROOT)/nt/inc/sys/time.h \
1410         $(LISP_H) \
1411         $(SRC)/atimer.h \
1412         $(SRC)/blockinput.h \
1413         $(SRC)/buffer.h \
1414         $(SRC)/category.h \
1415         $(SRC)/character.h \
1416         $(SRC)/charset.h \
1417         $(SRC)/commands.h \
1418         $(SRC)/composite.h \
1419         $(SRC)/dispextern.h \
1420         $(SRC)/intervals.h \
1421         $(SRC)/regex.h \
1422         $(SRC)/region-cache.h \
1423         $(SRC)/syntax.h \
1424         $(SRC)/systime.h \
1425         $(SRC)/w32gui.h
1427 $(BLD)/sound.$(O) : \
1428         $(SRC)/sound.c \
1429         $(CONFIG_H) \
1430         $(EMACS_ROOT)/nt/inc/unistd.h \
1431         $(EMACS_ROOT)/nt/inc/sys/time.h \
1432         $(LISP_H) \
1433         $(SRC)/atimer.h \
1434         $(SRC)/dispextern.h \
1435         $(SRC)/syssignal.h \
1436         $(SRC)/systime.h \
1437         $(SRC)/w32gui.h
1439 $(BLD)/syntax.$(O) : \
1440         $(SRC)/syntax.c \
1441         $(CONFIG_H) \
1442         $(EMACS_ROOT)/nt/inc/sys/time.h \
1443         $(LISP_H) \
1444         $(SRC)/buffer.h \
1445         $(SRC)/category.h \
1446         $(SRC)/character.h \
1447         $(SRC)/commands.h \
1448         $(SRC)/composite.h \
1449         $(SRC)/dispextern.h \
1450         $(SRC)/intervals.h \
1451         $(SRC)/keymap.h \
1452         $(SRC)/regex.h \
1453         $(SRC)/syntax.h \
1454         $(SRC)/systime.h \
1455         $(SRC)/w32gui.h
1457 $(BLD)/sysdep.$(O) : \
1458         $(SRC)/sysdep.c \
1459         $(CONFIG_H) \
1460         $(EMACS_ROOT)/nt/inc/grp.h \
1461         $(EMACS_ROOT)/nt/inc/netdb.h \
1462         $(EMACS_ROOT)/nt/inc/pwd.h \
1463         $(EMACS_ROOT)/nt/inc/unistd.h \
1464         $(EMACS_ROOT)/nt/inc/sys/file.h \
1465         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1466         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1467         $(EMACS_ROOT)/nt/inc/sys/time.h \
1468         $(EMACS_ROOT)/lib/allocator.h \
1469         $(EMACS_ROOT)/lib/careadlinkat.h \
1470         $(EMACS_ROOT)/lib/ignore-value.h \
1471         $(LISP_H) \
1472         $(PROCESS_H) \
1473         $(SRC)/atimer.h \
1474         $(SRC)/blockinput.h \
1475         $(SRC)/cm.h \
1476         $(SRC)/coding.h \
1477         $(SRC)/composite.h \
1478         $(SRC)/dispextern.h \
1479         $(SRC)/frame.h \
1480         $(SRC)/keyboard.h \
1481         $(SRC)/sysselect.h \
1482         $(SRC)/syssignal.h \
1483         $(SRC)/systime.h \
1484         $(SRC)/systty.h \
1485         $(SRC)/syswait.h \
1486         $(SRC)/termchar.h \
1487         $(SRC)/termhooks.h \
1488         $(SRC)/termopts.h \
1489         $(SRC)/w32.h \
1490         $(SRC)/w32gui.h \
1491         $(SRC)/window.h
1493 $(BLD)/term.$(O) : \
1494         $(SRC)/term.c \
1495         $(CONFIG_H) \
1496         $(EMACS_ROOT)/nt/inc/unistd.h \
1497         $(EMACS_ROOT)/nt/inc/sys/file.h \
1498         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1499         $(EMACS_ROOT)/nt/inc/sys/time.h \
1500         $(LISP_H) \
1501         $(SRC)/atimer.h \
1502         $(SRC)/blockinput.h \
1503         $(SRC)/buffer.h \
1504         $(SRC)/character.h \
1505         $(SRC)/charset.h \
1506         $(SRC)/cm.h \
1507         $(SRC)/coding.h \
1508         $(SRC)/composite.h \
1509         $(SRC)/dispextern.h \
1510         $(SRC)/disptab.h \
1511         $(SRC)/frame.h \
1512         $(SRC)/intervals.h \
1513         $(SRC)/keyboard.h \
1514         $(SRC)/keymap.h \
1515         $(SRC)/syssignal.h \
1516         $(SRC)/systime.h \
1517         $(SRC)/systty.h \
1518         $(SRC)/termchar.h \
1519         $(SRC)/termhooks.h \
1520         $(SRC)/termopts.h \
1521         $(SRC)/tparam.h \
1522         $(SRC)/w32gui.h \
1523         $(SRC)/window.h
1525 $(BLD)/terminal.$(O) : \
1526         $(SRC)/terminal.c \
1527         $(CONFIG_H) \
1528         $(EMACS_ROOT)/nt/inc/sys/time.h \
1529         $(LISP_H) \
1530         $(SRC)/charset.h \
1531         $(SRC)/coding.h \
1532         $(SRC)/composite.h \
1533         $(SRC)/dispextern.h \
1534         $(SRC)/frame.h \
1535         $(SRC)/keyboard.h \
1536         $(SRC)/systime.h \
1537         $(SRC)/termchar.h \
1538         $(SRC)/termhooks.h \
1539         $(SRC)/w32gui.h
1541 $(BLD)/textprop.$(O) : \
1542         $(SRC)/textprop.c \
1543         $(CONFIG_H) \
1544         $(EMACS_ROOT)/nt/inc/sys/time.h \
1545         $(LISP_H) \
1546         $(SRC)/buffer.h \
1547         $(SRC)/composite.h \
1548         $(SRC)/dispextern.h \
1549         $(SRC)/intervals.h \
1550         $(SRC)/systime.h \
1551         $(SRC)/w32gui.h \
1552         $(SRC)/window.h
1554 $(BLD)/tparam.$(O) : \
1555         $(SRC)/tparam.c \
1556         $(CONFIG_H) \
1557         $(LISP_H) \
1558         $(SRC)/tparam.h
1560 $(BLD)/undo.$(O) : \
1561         $(SRC)/undo.c \
1562         $(CONFIG_H) \
1563         $(EMACS_ROOT)/nt/inc/sys/time.h \
1564         $(LISP_H) \
1565         $(SRC)/buffer.h \
1566         $(SRC)/commands.h \
1567         $(SRC)/dispextern.h \
1568         $(SRC)/systime.h \
1569         $(SRC)/w32gui.h \
1570         $(SRC)/window.h
1572 $(BLD)/unexw32.$(O) : \
1573         $(SRC)/unexw32.c \
1574         $(CONFIG_H) \
1575         $(SRC)/unexec.h \
1576         $(SRC)/w32heap.h
1578 $(BLD)/vm-limit.$(O) : \
1579         $(SRC)/vm-limit.c \
1580         $(CONFIG_H) \
1581         $(LISP_H) \
1582         $(SRC)/mem-limits.h
1584 $(BLD)/window.$(O) : \
1585         $(SRC)/window.c \
1586         $(CONFIG_H) \
1587         $(EMACS_ROOT)/nt/inc/sys/time.h \
1588         $(LISP_H) \
1589         $(SRC)/atimer.h \
1590         $(SRC)/blockinput.h \
1591         $(SRC)/buffer.h \
1592         $(SRC)/coding.h \
1593         $(SRC)/commands.h \
1594         $(SRC)/composite.h \
1595         $(SRC)/dispextern.h \
1596         $(SRC)/disptab.h \
1597         $(SRC)/frame.h \
1598         $(SRC)/indent.h \
1599         $(SRC)/intervals.h \
1600         $(SRC)/keyboard.h \
1601         $(SRC)/keymap.h \
1602         $(SRC)/systime.h \
1603         $(SRC)/termchar.h \
1604         $(SRC)/termhooks.h \
1605         $(SRC)/w32gui.h \
1606         $(SRC)/w32term.h \
1607         $(SRC)/window.h
1609 $(BLD)/xdisp.$(O) : \
1610         $(SRC)/xdisp.c \
1611         $(CONFIG_H) \
1612         $(EMACS_ROOT)/nt/inc/unistd.h \
1613         $(EMACS_ROOT)/nt/inc/sys/time.h \
1614         $(LISP_H) \
1615         $(PROCESS_H) \
1616         $(SRC)/atimer.h \
1617         $(SRC)/blockinput.h \
1618         $(SRC)/buffer.h \
1619         $(SRC)/ccl.h \
1620         $(SRC)/character.h \
1621         $(SRC)/charset.h \
1622         $(SRC)/coding.h \
1623         $(SRC)/commands.h \
1624         $(SRC)/composite.h \
1625         $(SRC)/dispextern.h \
1626         $(SRC)/disptab.h \
1627         $(SRC)/font.h \
1628         $(SRC)/fontset.h \
1629         $(SRC)/frame.h \
1630         $(SRC)/indent.h \
1631         $(SRC)/intervals.h \
1632         $(SRC)/keyboard.h \
1633         $(SRC)/keymap.h \
1634         $(SRC)/macros.h \
1635         $(SRC)/region-cache.h \
1636         $(SRC)/systime.h \
1637         $(SRC)/termchar.h \
1638         $(SRC)/termhooks.h \
1639         $(SRC)/termopts.h \
1640         $(SRC)/w32gui.h \
1641         $(SRC)/w32term.h \
1642         $(SRC)/window.h
1644 $(BLD)/xfaces.$(O) : \
1645         $(SRC)/xfaces.c \
1646         $(CONFIG_H) \
1647         $(EMACS_ROOT)/nt/inc/sys/time.h \
1648         $(LISP_H) \
1649         $(SRC)/atimer.h \
1650         $(SRC)/blockinput.h \
1651         $(SRC)/buffer.h \
1652         $(SRC)/ccl.h \
1653         $(SRC)/character.h \
1654         $(SRC)/charset.h \
1655         $(SRC)/coding.h \
1656         $(SRC)/composite.h \
1657         $(SRC)/dispextern.h \
1658         $(SRC)/font.h \
1659         $(SRC)/fontset.h \
1660         $(SRC)/frame.h \
1661         $(SRC)/intervals.h \
1662         $(SRC)/keyboard.h \
1663         $(SRC)/systime.h \
1664         $(SRC)/termchar.h \
1665         $(SRC)/termhooks.h \
1666         $(SRC)/w32gui.h \
1667         $(SRC)/w32term.h \
1668         $(SRC)/window.h
1670 $(BLD)/w32fns.$(O) : \
1671         $(SRC)/w32fns.c \
1672         $(CONFIG_H) \
1673         $(EMACS_ROOT)/nt/inc/sys/time.h \
1674         $(LISP_H) \
1675         $(SRC)/atimer.h \
1676         $(SRC)/blockinput.h \
1677         $(SRC)/buffer.h \
1678         $(SRC)/ccl.h \
1679         $(SRC)/character.h \
1680         $(SRC)/charset.h \
1681         $(SRC)/coding.h \
1682         $(SRC)/composite.h \
1683         $(SRC)/dispextern.h \
1684         $(SRC)/epaths.h \
1685         $(SRC)/font.h \
1686         $(SRC)/fontset.h \
1687         $(SRC)/frame.h \
1688         $(SRC)/intervals.h \
1689         $(SRC)/keyboard.h \
1690         $(SRC)/systime.h \
1691         $(SRC)/termhooks.h \
1692         $(SRC)/w32.h \
1693         $(SRC)/w32font.h \
1694         $(SRC)/w32gui.h \
1695         $(SRC)/w32heap.h \
1696         $(SRC)/w32term.h \
1697         $(SRC)/window.h
1699 $(BLD)/w32menu.$(O) : \
1700         $(SRC)/w32menu.c \
1701         $(CONFIG_H) \
1702         $(EMACS_ROOT)/nt/inc/sys/time.h \
1703         $(LISP_H) \
1704         $(SRC)/atimer.h \
1705         $(SRC)/blockinput.h \
1706         $(SRC)/buffer.h \
1707         $(SRC)/character.h \
1708         $(SRC)/charset.h \
1709         $(SRC)/coding.h \
1710         $(SRC)/composite.h \
1711         $(SRC)/dispextern.h \
1712         $(SRC)/frame.h \
1713         $(SRC)/keyboard.h \
1714         $(SRC)/keymap.h \
1715         $(SRC)/menu.h \
1716         $(SRC)/systime.h \
1717         $(SRC)/termhooks.h \
1718         $(SRC)/w32gui.h \
1719         $(SRC)/w32term.h \
1720         $(SRC)/window.h
1722 $(BLD)/w32term.$(O) : \
1723         $(SRC)/w32term.c \
1724         $(CONFIG_H) \
1725         $(EMACS_ROOT)/nt/inc/unistd.h \
1726         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1727         $(EMACS_ROOT)/nt/inc/sys/time.h \
1728         $(LISP_H) \
1729         $(PROCESS_H) \
1730         $(SRC)/atimer.h \
1731         $(SRC)/blockinput.h \
1732         $(SRC)/buffer.h \
1733         $(SRC)/ccl.h \
1734         $(SRC)/character.h \
1735         $(SRC)/charset.h \
1736         $(SRC)/coding.h \
1737         $(SRC)/composite.h \
1738         $(SRC)/dispextern.h \
1739         $(SRC)/disptab.h \
1740         $(SRC)/font.h \
1741         $(SRC)/fontset.h \
1742         $(SRC)/frame.h \
1743         $(SRC)/intervals.h \
1744         $(SRC)/keyboard.h \
1745         $(SRC)/keymap.h \
1746         $(SRC)/systime.h \
1747         $(SRC)/systty.h \
1748         $(SRC)/termchar.h \
1749         $(SRC)/termhooks.h \
1750         $(SRC)/termopts.h \
1751         $(SRC)/w32font.h \
1752         $(SRC)/w32gui.h \
1753         $(SRC)/w32heap.h \
1754         $(SRC)/w32term.h \
1755         $(SRC)/window.h
1757 $(BLD)/w32select.$(O) : \
1758         $(SRC)/w32select.c \
1759         $(CONFIG_H) \
1760         $(EMACS_ROOT)/nt/inc/sys/time.h \
1761         $(LISP_H) \
1762         $(SRC)/atimer.h \
1763         $(SRC)/blockinput.h \
1764         $(SRC)/character.h \
1765         $(SRC)/charset.h \
1766         $(SRC)/coding.h \
1767         $(SRC)/composite.h \
1768         $(SRC)/systime.h \
1769         $(SRC)/w32gui.h \
1770         $(SRC)/w32heap.h \
1771         $(SRC)/w32term.h
1773 $(BLD)/w32reg.$(O) : \
1774         $(SRC)/w32reg.c \
1775         $(CONFIG_H) \
1776         $(EMACS_ROOT)/nt/inc/sys/time.h \
1777         $(LISP_H) \
1778         $(SRC)/atimer.h \
1779         $(SRC)/blockinput.h \
1780         $(SRC)/systime.h \
1781         $(SRC)/w32gui.h \
1782         $(SRC)/w32term.h
1784 $(BLD)/w32xfns.$(O) : \
1785         $(SRC)/w32xfns.c \
1786         $(CONFIG_H) \
1787         $(EMACS_ROOT)/nt/inc/sys/time.h \
1788         $(LISP_H) \
1789         $(SRC)/atimer.h \
1790         $(SRC)/blockinput.h \
1791         $(SRC)/charset.h \
1792         $(SRC)/coding.h \
1793         $(SRC)/composite.h \
1794         $(SRC)/dispextern.h \
1795         $(SRC)/fontset.h \
1796         $(SRC)/frame.h \
1797         $(SRC)/keyboard.h \
1798         $(SRC)/systime.h \
1799         $(SRC)/w32gui.h \
1800         $(SRC)/w32term.h
1802 $(BLD)/w32font.$(O) : \
1803         $(SRC)/w32font.c \
1804         $(CONFIG_H) \
1805         $(EMACS_ROOT)/nt/inc/sys/time.h \
1806         $(LISP_H) \
1807         $(SRC)/ccl.h \
1808         $(SRC)/character.h \
1809         $(SRC)/charset.h \
1810         $(SRC)/coding.h \
1811         $(SRC)/composite.h \
1812         $(SRC)/dispextern.h \
1813         $(SRC)/font.h \
1814         $(SRC)/fontset.h \
1815         $(SRC)/frame.h \
1816         $(SRC)/systime.h \
1817         $(SRC)/w32font.h \
1818         $(SRC)/w32gui.h \
1819         $(SRC)/w32term.h
1821 $(BLD)/w32uniscribe.$(O) : \
1822         $(SRC)/w32uniscribe.c \
1823         $(CONFIG_H) \
1824         $(EMACS_ROOT)/nt/inc/sys/time.h \
1825         $(LISP_H) \
1826         $(SRC)/ccl.h \
1827         $(SRC)/character.h \
1828         $(SRC)/charset.h \
1829         $(SRC)/composite.h \
1830         $(SRC)/dispextern.h \
1831         $(SRC)/font.h \
1832         $(SRC)/fontset.h \
1833         $(SRC)/frame.h \
1834         $(SRC)/systime.h \
1835         $(SRC)/w32font.h \
1836         $(SRC)/w32gui.h \
1837         $(SRC)/w32term.h
1839 # Each object file depends on stamp_BLD, because in parallel builds we must
1840 # make sure $(BLD) exists before starting compilations.
1842 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD