Update MS-Windows dependencies after 2011-03-17T18:41:30Z!eggert@cs.ucla.edu.
[emacs.git] / src / makefile.w32-in
blob3d882b23d6bf002ad73602c554d436a6692d3573
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)/intervals.$(O)           \
109         $(BLD)/composite.$(O)           \
110         $(BLD)/ralloc.$(O)              \
111         $(BLD)/textprop.$(O)            \
112         $(BLD)/vm-limit.$(O)            \
113         $(BLD)/region-cache.$(O)        \
114         $(BLD)/bidi.$(O)                \
115         $(BLD)/charset.$(O)             \
116         $(BLD)/character.$(O)           \
117         $(BLD)/chartab.$(O)             \
118         $(BLD)/coding.$(O)              \
119         $(BLD)/category.$(O)            \
120         $(BLD)/ccl.$(O)                 \
121         $(BLD)/font.$(O)                \
122         $(BLD)/fontset.$(O)             \
123         $(BLD)/fringe.$(O)              \
124         $(BLD)/image.$(O)               \
125         $(BLD)/terminal.$(O)            \
126         $(BLD)/menu.$(O)                \
127         $(BLD)/w32term.$(O)             \
128         $(BLD)/w32xfns.$(O)             \
129         $(BLD)/w32fns.$(O)              \
130         $(BLD)/xfaces.$(O)              \
131         $(BLD)/w32select.$(O)           \
132         $(BLD)/w32menu.$(O)             \
133         $(BLD)/w32reg.$(O)              \
134         $(BLD)/w32font.$(O)             \
135         $(BLD)/w32uniscribe.$(O)
137 LIBS =  $(TLIB0)        \
138         $(TLIB1)        \
139         $(TLIB2)        \
140         $(TLASTLIB)     \
141         $(GNULIB)       \
142         $(WINMM)        \
143         $(ADVAPI32)     \
144         $(GDI32)        \
145         $(COMDLG32)     \
146         $(USER32)       \
147         $(MPR)          \
148         $(SHELL32)      \
149         $(WINSPOOL)     \
150         $(OLE32)        \
151         $(COMCTL32)     \
152         $(UNISCRIBE)    \
153         $(libc)
156 # Build the executable and dump it.
158 all:            $(ALL)
161 # The dumped executable
163 emacs:          stamp_BLD $(EMACS)
164 $(EMACS):       $(DOC) $(TEMACS)
165         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
166         -"$(THISDIR)/$(BLD)/emacs.exe" -batch -f list-load-path-shadows
169 # The undumped executable
170 # Note the extra post-link step to insert a static preload heap section.
171 # If preload runs out of memory, increase the last argument to addsection
172 # (it is the preload heap size in MB).
174 temacs:         stamp_BLD $(TEMACS)
175 $(TEMACS):      $(TLIB0) $(TLIB1) $(TLIB2) $(TLASTLIB) $(TOBJ) $(TRES) \
176                   ../nt/$(BLD)/addsection.exe $(GNULIB)
177         $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
178         "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
180 # These omit firstfile.${O}, but there's no documentation in there
181 # anyways.
182 buildobj.h: $(SRC)/makefile.w32-in
183         $(MAKE) $(MFLAGS) make-buildobj-$(SHELLTYPE)
185 # Cannot have blanks between the backslash and the redirection
186 # characters, because CMD's `echo' will put them in buildobj.h.
187 make-buildobj-CMD:
188         echo #define BUILDOBJ ^"\> buildobj.h
189         echo $(OBJ0)            \>> buildobj.h
190         echo $(OBJ1)            \>> buildobj.h
191         echo $(OBJ2)            \>> buildobj.h
192         echo ^">> buildobj.h
194 # "
195 # The above line is here to countermand the single quote
196 # on the last "echo" command above, wrt font-lock.
197 make-buildobj-SH:
198         echo '#define BUILDOBJ $(DQUOTE)\'  > buildobj.h
199         echo $(OBJ0)                   '\' >> buildobj.h
200         echo $(OBJ1)                   '\' >> buildobj.h
201         echo $(OBJ2)                   '\' >> buildobj.h
202         echo '$(DQUOTE)'                   >> buildobj.h
204 GLOBAL_SOURCES =   dosfns.c msdos.c \
205         xterm.c xfns.c xmenu.c xselect.c xrdb.c xsmfns.c fringe.c image.c \
206         fontset.c menu.c dbusbind.c \
207         w32.c w32console.c w32fns.c w32heap.c w32inevt.c \
208         w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \
209         font.c w32font.c w32uniscribe.c \
210         dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \
211         charset.c coding.c category.c ccl.c character.c chartab.c \
212         cm.c term.c terminal.c xfaces.c \
213         emacs.c keyboard.c macros.c keymap.c sysdep.c \
214         buffer.c filelock.c insdel.c marker.c \
215         minibuf.c fileio.c dired.c \
216         cmds.c casetab.c casefiddle.c indent.c search.c regex.c undo.c \
217         alloc.c data.c doc.c editfns.c callint.c \
218         eval.c floatfns.c fns.c print.c lread.c \
219         syntax.c bytecode.c \
220         process.c callproc.c unexw32.c \
221         region-cache.c sound.c atimer.c \
222         doprnt.c intervals.c textprop.c composite.c
223 SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
224   xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o dbusbind.o
225 obj = $(GLOBAL_SOURCES:.c=.o)
227 globals.h: gl-stamp
229 gl-stamp: ../lib-src/$(BLD)/make-docfile.exe $(GLOBAL_SOURCES)
230         - $(DEL) gl-tmp
231         "../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp
232         cmd /c "fc /b gl-tmp globals.h >nul 2>&1 || $(CP) gl-tmp globals.h"
233         - $(DEL) gl-tmp
234         echo timestamp > $@
236 bootstrap: bootstrap-emacs
239 # Build a temacs with a sufficiently large PURESIZE to load the
240 # Lisp files from loadup.el in source form.
242 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
243 #          this can break with GNU Make 3.81 and later if sh.exe is used.
244 bootstrap-temacs:
245         $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
248 # Dump an Emacs executable named bootstrap-emacs containing the
249 # files from loadup.el in source form.
251 bootstrap-emacs: bootstrap-temacs
252         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
253         - mkdir "../bin"
254         $(CP) $(EMACS) ../bin
257 # Force recompile of files that depend on PURESIZE
259 bootstrap-clean:
260         - $(DEL) $(BLD)/alloc.$(O)
261         - $(DEL) $(BLD)/data.$(O)
262         - $(DEL) $(BLD)/intervals.$(O)
263         - $(DEL) $(BLD)/keyboard.$(O)
264         - $(DEL) $(BLD)/keymap.$(O)
267 # The resource file.  NT 3.10 requires the use of cvtres; even though
268 # it is not necessary on later versions, it is still ok to use it.
270 $(TRES): ../nt/emacs.rc stamp_BLD
271         $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
274 # Build the library.  Split up the build into two phases...otherwise we
275 # run out of command line space.
277 $(TLIB0):       $(OBJ0)
278         - $(DEL) $@
279         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
280 $(TLIB1):       $(OBJ1)
281         - $(DEL) $@
282         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
283 $(TLIB2):       $(OBJ2)
284         - $(DEL) $@
285         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
288 # Place lastfile.$(O) in its own library so that it can be loaded after
289 # the source libraries but before any system libraries.  Doing so defines
290 # the end of Emacs' data section portably across compilers and systems.
292 $(TLASTLIB):    $(BLD)/lastfile.$(O)
293         - $(DEL) $@
294         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
297 # Assuming INSTALL_DIR is defined, build and install emacs in it.
299 install:        $(ALL)
300         - mkdir "$(INSTALL_DIR)/bin"
301         $(CP) $(EMACS) $(INSTALL_DIR)/bin
304 # Maintenance
306 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
307 # remove precious files if it happens to match their short 8+3 aliases.
308 clean:
309         - $(DEL) "s/*.h~" "m/*.h~"
310         - $(DEL) $(COMPILER_TEMP_FILES)
311         - $(DEL_TREE) $(OBJDIR)
312         - $(DEL) stamp_BLD gl-stamp globals.h
313         - $(DEL) buildobj.h
315 distclean:      cleanall
316         - $(DEL) config.h epaths.h Makefile
318 maintainer-clean: distclean
319         - $(DEL) TAGS
321 cleanall:       clean
322         - $(DEL_TREE) obj
323         - $(DEL_TREE) obj-spd
324         - $(DEL_TREE) oo
325         - $(DEL_TREE) oo-spd
327 ## Arrange to make a tags table TAGS-LISP for ../lisp,
328 ## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
330 ## This works only with GNU Make.
332 TAGS: $(OBJ0) $(OBJ1) $(OBJ2)
333         $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE)
335 TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2)
336         $(MAKE) $(MFLAGS) TAGS-LISP-$(MAKETYPE)
338 TAGS-gmake:
339         ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \
340           --regex=@../nt/emacs-src.tags \
341           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ0))
342         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
343           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1))
344         ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
345           $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2)) \
346           $(CURDIR)/*.h
348 TAGS-nmake:
349         echo This target is not supported with NMake
350         exit -1
352 frc:
353 TAGS-LISP-gmake: frc
354         $(MAKE) $(MFLAGS) -C ../lisp TAGS-LISP DEST=../src
356 TAGS-LISP-nmake:
357         echo This target is not supported with NMake
358         exit -1
360 ../nt/TAGS: frc
361         $(MAKE) $(MFLAGS) nt-TAGS-$(MAKETYPE)
363 nt-TAGS-gmake:
364         $(MAKE) $(MFLAGS) -C ../nt TAGS
366 nt-TAGS-nmake:
367         echo This target is not supported with NMake
368         exit -1
370 full-tags: TAGS TAGS-LISP ../nt/TAGS
371 .PHONY: full-tags
373 ### DEPENDENCIES ###
375 EMACS_ROOT = ..
376 CONFIG_H   = $(EMACS_ROOT)/src/s/ms-w32.h \
377              $(EMACS_ROOT)/src/m/intel386.h \
378              $(EMACS_ROOT)/src/config.h \
379              $(EMACS_ROOT)/nt/inc/sys/stat.h
380 LISP_H     = $(SRC)/lisp.h $(SRC)/globals.h
381 PROCESS_H  = $(SRC)/process.h $(SRC)/gnutls.h
383 $(BLD)/alloc.$(O) : \
384         $(SRC)/alloc.c \
385         $(CONFIG_H) \
386         $(EMACS_ROOT)/nt/inc/unistd.h \
387         $(EMACS_ROOT)/nt/inc/sys/time.h \
388         $(LISP_H) \
389         $(SRC)/atimer.h \
390         $(SRC)/blockinput.h \
391         $(SRC)/buffer.h \
392         $(SRC)/character.h \
393         $(SRC)/coding.h \
394         $(SRC)/composite.h \
395         $(SRC)/dispextern.h \
396         $(SRC)/frame.h \
397         $(SRC)/intervals.h \
398         $(SRC)/keyboard.h \
399         $(PROCESS_H) \
400         $(SRC)/puresize.h \
401         $(SRC)/syssignal.h \
402         $(SRC)/systime.h \
403         $(SRC)/termhooks.h \
404         $(SRC)/w32.h \
405         $(SRC)/w32gui.h \
406         $(SRC)/window.h
408 $(BLD)/atimer.$(O) : \
409         $(SRC)/atimer.c \
410         $(CONFIG_H) \
411         $(EMACS_ROOT)/nt/inc/unistd.h \
412         $(EMACS_ROOT)/nt/inc/sys/time.h \
413         $(LISP_H) \
414         $(SRC)/atimer.h \
415         $(SRC)/blockinput.h \
416         $(SRC)/syssignal.h \
417         $(SRC)/systime.h
419 $(BLD)/bidi.$(O) : \
420         $(SRC)/bidi.c \
421         $(CONFIG_H) \
422         $(LISP_H) \
423         $(SRC)/bidimirror.h \
424         $(SRC)/biditype.h \
425         $(SRC)/buffer.h \
426         $(SRC)/character.h \
427         $(SRC)/dispextern.h \
428         $(SRC)/w32gui.h
430 $(BLD)/buffer.$(O) : \
431         $(SRC)/buffer.c \
432         $(CONFIG_H) \
433         $(EMACS_ROOT)/nt/inc/unistd.h \
434         $(EMACS_ROOT)/nt/inc/sys/param.h \
435         $(EMACS_ROOT)/nt/inc/sys/time.h \
436         $(LISP_H) \
437         $(SRC)/atimer.h \
438         $(SRC)/blockinput.h \
439         $(SRC)/buffer.h \
440         $(SRC)/character.h \
441         $(SRC)/coding.h \
442         $(SRC)/commands.h \
443         $(SRC)/composite.h \
444         $(SRC)/dispextern.h \
445         $(SRC)/frame.h \
446         $(SRC)/indent.h \
447         $(SRC)/intervals.h \
448         $(SRC)/keyboard.h \
449         $(SRC)/keymap.h \
450         $(SRC)/region-cache.h \
451         $(SRC)/systime.h \
452         $(SRC)/w32gui.h \
453         $(SRC)/window.h
455 $(BLD)/bytecode.$(O) : \
456         $(SRC)/bytecode.c \
457         $(CONFIG_H) \
458         $(LISP_H) \
459         $(SRC)/buffer.h \
460         $(SRC)/character.h \
461         $(SRC)/dispextern.h \
462         $(SRC)/syntax.h \
463         $(SRC)/w32gui.h \
464         $(SRC)/window.h
466 $(BLD)/callint.$(O) : \
467         $(SRC)/callint.c \
468         $(CONFIG_H) \
469         $(EMACS_ROOT)/nt/inc/sys/time.h \
470         $(LISP_H) \
471         $(SRC)/buffer.h \
472         $(SRC)/coding.h \
473         $(SRC)/commands.h \
474         $(SRC)/composite.h \
475         $(SRC)/dispextern.h \
476         $(SRC)/keyboard.h \
477         $(SRC)/keymap.h \
478         $(SRC)/systime.h \
479         $(SRC)/w32gui.h \
480         $(SRC)/window.h
482 $(BLD)/callproc.$(O) : \
483         $(SRC)/callproc.c \
484         $(CONFIG_H) \
485         $(EMACS_ROOT)/nt/inc/unistd.h \
486         $(EMACS_ROOT)/nt/inc/sys/file.h \
487         $(EMACS_ROOT)/nt/inc/sys/time.h \
488         $(LISP_H) \
489         $(SRC)/atimer.h \
490         $(SRC)/blockinput.h \
491         $(SRC)/buffer.h \
492         $(SRC)/ccl.h \
493         $(SRC)/character.h \
494         $(SRC)/coding.h \
495         $(SRC)/commands.h \
496         $(SRC)/composite.h \
497         $(SRC)/dispextern.h \
498         $(SRC)/epaths.h \
499         $(SRC)/frame.h \
500         $(PROCESS_H) \
501         $(SRC)/syssignal.h \
502         $(SRC)/systime.h \
503         $(SRC)/systty.h \
504         $(SRC)/termhooks.h \
505         $(SRC)/w32.h \
506         $(SRC)/w32gui.h
508 $(BLD)/casefiddle.$(O) : \
509         $(SRC)/casefiddle.c \
510         $(CONFIG_H) \
511         $(LISP_H) \
512         $(SRC)/buffer.h \
513         $(SRC)/character.h \
514         $(SRC)/commands.h \
515         $(SRC)/composite.h \
516         $(SRC)/keymap.h \
517         $(SRC)/syntax.h
519 $(BLD)/casetab.$(O) : \
520         $(SRC)/casetab.c \
521         $(CONFIG_H) \
522         $(LISP_H) \
523         $(SRC)/buffer.h \
524         $(SRC)/character.h
526 $(BLD)/category.$(O) : \
527         $(SRC)/category.c \
528         $(CONFIG_H) \
529         $(LISP_H) \
530         $(SRC)/buffer.h \
531         $(SRC)/category.h \
532         $(SRC)/character.h \
533         $(SRC)/charset.h \
534         $(SRC)/keymap.h
536 $(BLD)/ccl.$(O) : \
537         $(SRC)/ccl.c \
538         $(CONFIG_H) \
539         $(LISP_H) \
540         $(SRC)/ccl.h \
541         $(SRC)/character.h \
542         $(SRC)/charset.h \
543         $(SRC)/coding.h \
544         $(SRC)/composite.h
546 $(BLD)/character.$(O) : \
547         $(SRC)/character.c \
548         $(CONFIG_H) \
549         $(LISP_H) \
550         $(SRC)/buffer.h \
551         $(SRC)/character.h \
552         $(SRC)/charset.h \
553         $(SRC)/composite.h \
554         $(SRC)/disptab.h
556 $(BLD)/charset.$(O) : \
557         $(SRC)/charset.c \
558         $(CONFIG_H) \
559         $(EMACS_ROOT)/nt/inc/unistd.h \
560         $(LISP_H) \
561         $(SRC)/buffer.h \
562         $(SRC)/character.h \
563         $(SRC)/charset.h \
564         $(SRC)/coding.h \
565         $(SRC)/composite.h \
566         $(SRC)/disptab.h
568 $(BLD)/chartab.$(O) : \
569         $(SRC)/chartab.c \
570         $(CONFIG_H) \
571         $(LISP_H) \
572         $(SRC)/ccl.h \
573         $(SRC)/character.h \
574         $(SRC)/charset.h
576 $(BLD)/cmds.$(O) : \
577         $(SRC)/cmds.c \
578         $(CONFIG_H) \
579         $(EMACS_ROOT)/nt/inc/sys/time.h \
580         $(LISP_H) \
581         $(SRC)/buffer.h \
582         $(SRC)/character.h \
583         $(SRC)/coding.h \
584         $(SRC)/commands.h \
585         $(SRC)/composite.h \
586         $(SRC)/dispextern.h \
587         $(SRC)/frame.h \
588         $(SRC)/keyboard.h \
589         $(SRC)/keymap.h \
590         $(SRC)/syntax.h \
591         $(SRC)/systime.h \
592         $(SRC)/w32gui.h \
593         $(SRC)/window.h
595 $(BLD)/coding.$(O) : \
596         $(SRC)/coding.c \
597         $(CONFIG_H) \
598         $(LISP_H) \
599         $(SRC)/buffer.h \
600         $(SRC)/ccl.h \
601         $(SRC)/character.h \
602         $(SRC)/charset.h \
603         $(SRC)/coding.h \
604         $(SRC)/composite.h \
605         $(SRC)/dispextern.h \
606         $(SRC)/frame.h \
607         $(SRC)/termhooks.h \
608         $(SRC)/w32gui.h \
609         $(SRC)/window.h
611 $(BLD)/composite.$(O) : \
612         $(SRC)/composite.c \
613         $(CONFIG_H) \
614         $(LISP_H) \
615         $(SRC)/buffer.h \
616         $(SRC)/ccl.h \
617         $(SRC)/character.h \
618         $(SRC)/coding.h \
619         $(SRC)/composite.h \
620         $(SRC)/dispextern.h \
621         $(SRC)/font.h \
622         $(SRC)/frame.h \
623         $(SRC)/intervals.h \
624         $(SRC)/termhooks.h \
625         $(SRC)/w32gui.h \
626         $(SRC)/window.h
628 $(BLD)/data.$(O) : \
629         $(SRC)/data.c \
630         $(CONFIG_H) \
631         $(EMACS_ROOT)/nt/inc/sys/time.h \
632         $(LISP_H) \
633         $(SRC)/buffer.h \
634         $(SRC)/ccl.h \
635         $(SRC)/character.h \
636         $(SRC)/coding.h \
637         $(SRC)/composite.h \
638         $(SRC)/dispextern.h \
639         $(SRC)/font.h \
640         $(SRC)/frame.h \
641         $(SRC)/keyboard.h \
642         $(SRC)/puresize.h \
643         $(SRC)/syssignal.h \
644         $(SRC)/systime.h \
645         $(SRC)/termhooks.h \
646         $(SRC)/w32gui.h
648 $(BLD)/dired.$(O) : \
649         $(SRC)/dired.c \
650         $(CONFIG_H) \
651         $(EMACS_ROOT)/nt/inc/grp.h \
652         $(EMACS_ROOT)/nt/inc/pwd.h \
653         $(EMACS_ROOT)/nt/inc/unistd.h \
654         $(EMACS_ROOT)/nt/inc/sys/dir.h \
655         $(EMACS_ROOT)/nt/inc/sys/time.h \
656         $(LISP_H) \
657         $(SRC)/atimer.h \
658         $(SRC)/blockinput.h \
659         $(SRC)/buffer.h \
660         $(SRC)/character.h \
661         $(SRC)/charset.h \
662         $(SRC)/coding.h \
663         $(SRC)/commands.h \
664         $(SRC)/composite.h \
665         $(EMACS_ROOT)/lib/filemode.h \
666         $(SRC)/ndir.h \
667         $(SRC)/regex.h \
668         $(SRC)/systime.h
670 $(BLD)/dispnew.$(O) : \
671         $(SRC)/dispnew.c \
672         $(CONFIG_H) \
673         $(EMACS_ROOT)/nt/inc/unistd.h \
674         $(EMACS_ROOT)/nt/inc/sys/time.h \
675         $(LISP_H) \
676         $(SRC)/atimer.h \
677         $(SRC)/blockinput.h \
678         $(SRC)/buffer.h \
679         $(SRC)/character.h \
680         $(SRC)/cm.h \
681         $(SRC)/coding.h \
682         $(SRC)/commands.h \
683         $(SRC)/composite.h \
684         $(SRC)/dispextern.h \
685         $(SRC)/disptab.h \
686         $(SRC)/frame.h \
687         $(SRC)/indent.h \
688         $(SRC)/intervals.h \
689         $(SRC)/keyboard.h \
690         $(PROCESS_H) \
691         $(SRC)/syssignal.h \
692         $(SRC)/systime.h \
693         $(SRC)/termchar.h \
694         $(SRC)/termhooks.h \
695         $(SRC)/termopts.h \
696         $(SRC)/w32gui.h \
697         $(SRC)/w32term.h \
698         $(SRC)/window.h
700 $(BLD)/doc.$(O) : \
701         $(SRC)/doc.c \
702         $(CONFIG_H) \
703         buildobj.h \
704         $(EMACS_ROOT)/nt/inc/unistd.h \
705         $(EMACS_ROOT)/nt/inc/sys/file.h \
706         $(EMACS_ROOT)/nt/inc/sys/time.h \
707         $(LISP_H) \
708         $(SRC)/buffer.h \
709         $(SRC)/character.h \
710         $(SRC)/coding.h \
711         $(SRC)/composite.h \
712         $(SRC)/keyboard.h \
713         $(SRC)/keymap.h \
714         $(SRC)/systime.h
716 $(BLD)/doprnt.$(O) : \
717         $(SRC)/doprnt.c \
718         $(CONFIG_H) \
719         $(EMACS_ROOT)/nt/inc/unistd.h \
720         $(LISP_H) \
721         $(SRC)/character.h
723 $(BLD)/editfns.$(O) : \
724         $(SRC)/editfns.c \
725         $(CONFIG_H) \
726         $(EMACS_ROOT)/nt/inc/pwd.h \
727         $(EMACS_ROOT)/nt/inc/unistd.h \
728         $(EMACS_ROOT)/nt/inc/sys/time.h \
729         $(EMACS_ROOT)/lib/strftime.h \
730         $(EMACS_ROOT)/lib/intprops.h \
731         $(LISP_H) \
732         $(SRC)/atimer.h \
733         $(SRC)/blockinput.h \
734         $(SRC)/buffer.h \
735         $(SRC)/character.h \
736         $(SRC)/coding.h \
737         $(SRC)/composite.h \
738         $(SRC)/dispextern.h \
739         $(SRC)/frame.h \
740         $(SRC)/intervals.h \
741         $(SRC)/systime.h \
742         $(SRC)/w32gui.h \
743         $(SRC)/window.h
745 $(BLD)/emacs.$(O) : \
746         $(SRC)/emacs.c \
747         $(CONFIG_H) \
748         $(EMACS_ROOT)/nt/inc/unistd.h \
749         $(EMACS_ROOT)/nt/inc/sys/file.h \
750         $(EMACS_ROOT)/nt/inc/sys/time.h \
751         $(LISP_H) \
752         $(SRC)/atimer.h \
753         $(SRC)/blockinput.h \
754         $(SRC)/buffer.h \
755         $(SRC)/coding.h \
756         $(SRC)/commands.h \
757         $(SRC)/composite.h \
758         $(SRC)/dispextern.h \
759         $(SRC)/frame.h \
760         $(SRC)/gnutls.h \
761         $(SRC)/intervals.h \
762         $(SRC)/keyboard.h \
763         $(SRC)/keymap.h \
764         $(PROCESS_H) \
765         $(SRC)/syssignal.h \
766         $(SRC)/systime.h \
767         $(SRC)/systty.h \
768         $(SRC)/termhooks.h \
769         $(SRC)/w32.h \
770         $(SRC)/w32gui.h \
771         $(SRC)/w32heap.h \
772         $(SRC)/window.h
774 $(BLD)/eval.$(O) : \
775         $(SRC)/eval.c \
776         $(CONFIG_H) \
777         $(EMACS_ROOT)/nt/inc/sys/time.h \
778         $(LISP_H) \
779         $(SRC)/atimer.h \
780         $(SRC)/blockinput.h \
781         $(SRC)/coding.h \
782         $(SRC)/commands.h \
783         $(SRC)/composite.h \
784         $(SRC)/dispextern.h \
785         $(SRC)/frame.h \
786         $(SRC)/keyboard.h \
787         $(SRC)/systime.h \
788         $(SRC)/w32gui.h
790 $(BLD)/fileio.$(O) : \
791         $(SRC)/fileio.c \
792         $(CONFIG_H) \
793         $(EMACS_ROOT)/nt/inc/pwd.h \
794         $(EMACS_ROOT)/nt/inc/unistd.h \
795         $(EMACS_ROOT)/nt/inc/sys/time.h \
796         $(LISP_H) \
797         $(SRC)/atimer.h \
798         $(SRC)/blockinput.h \
799         $(SRC)/buffer.h \
800         $(SRC)/character.h \
801         $(SRC)/coding.h \
802         $(SRC)/commands.h \
803         $(SRC)/composite.h \
804         $(SRC)/dispextern.h \
805         $(SRC)/frame.h \
806         $(SRC)/intervals.h \
807         $(SRC)/systime.h \
808         $(SRC)/w32gui.h \
809         $(SRC)/window.h
811 $(BLD)/filelock.$(O) : \
812         $(SRC)/filelock.c \
813         $(CONFIG_H) \
814         $(EMACS_ROOT)/nt/inc/pwd.h \
815         $(EMACS_ROOT)/nt/inc/unistd.h \
816         $(EMACS_ROOT)/nt/inc/sys/file.h \
817         $(EMACS_ROOT)/nt/inc/sys/time.h \
818         $(LISP_H) \
819         $(SRC)/buffer.h \
820         $(SRC)/character.h \
821         $(SRC)/coding.h \
822         $(SRC)/composite.h \
823         $(SRC)/systime.h
825 $(BLD)/firstfile.$(O) : \
826         $(SRC)/firstfile.c \
827         $(CONFIG_H)
829 $(BLD)/floatfns.$(O) : \
830         $(SRC)/floatfns.c \
831         $(CONFIG_H) \
832         $(LISP_H) \
833         $(SRC)/syssignal.h
835 $(BLD)/fns.$(O) : \
836         $(SRC)/fns.c \
837         $(CONFIG_H) \
838         $(EMACS_ROOT)/nt/inc/langinfo.h \
839         $(EMACS_ROOT)/nt/inc/nl_types.h \
840         $(EMACS_ROOT)/nt/inc/unistd.h \
841         $(EMACS_ROOT)/nt/inc/sys/time.h \
842         $(EMACS_ROOT)/lib/md5.h \
843         $(LISP_H) \
844         $(SRC)/atimer.h \
845         $(SRC)/blockinput.h \
846         $(SRC)/buffer.h \
847         $(SRC)/character.h \
848         $(SRC)/coding.h \
849         $(SRC)/commands.h \
850         $(SRC)/composite.h \
851         $(SRC)/dispextern.h \
852         $(SRC)/frame.h \
853         $(SRC)/intervals.h \
854         $(SRC)/keyboard.h \
855         $(SRC)/keymap.h \
856         $(SRC)/systime.h \
857         $(SRC)/w32gui.h \
858         $(SRC)/window.h
860 $(BLD)/font.$(O) : \
861         $(SRC)/font.c \
862         $(CONFIG_H) \
863         $(LISP_H) \
864         $(SRC)/buffer.h \
865         $(SRC)/ccl.h \
866         $(SRC)/character.h \
867         $(SRC)/charset.h \
868         $(SRC)/composite.h \
869         $(SRC)/dispextern.h \
870         $(SRC)/font.h \
871         $(SRC)/fontset.h \
872         $(SRC)/frame.h \
873         $(SRC)/w32gui.h \
874         $(SRC)/w32term.h \
875         $(SRC)/window.h
877 $(BLD)/fontset.$(O) : \
878         $(SRC)/fontset.c \
879         $(CONFIG_H) \
880         $(EMACS_ROOT)/nt/inc/sys/time.h \
881         $(LISP_H) \
882         $(SRC)/atimer.h \
883         $(SRC)/blockinput.h \
884         $(SRC)/buffer.h \
885         $(SRC)/ccl.h \
886         $(SRC)/character.h \
887         $(SRC)/charset.h \
888         $(SRC)/coding.h \
889         $(SRC)/composite.h \
890         $(SRC)/dispextern.h \
891         $(SRC)/font.h \
892         $(SRC)/fontset.h \
893         $(SRC)/frame.h \
894         $(SRC)/intervals.h \
895         $(SRC)/keyboard.h \
896         $(SRC)/systime.h \
897         $(SRC)/termhooks.h \
898         $(SRC)/w32gui.h \
899         $(SRC)/w32term.h \
900         $(SRC)/window.h
902 $(BLD)/frame.$(O) : \
903         $(SRC)/frame.c \
904         $(CONFIG_H) \
905         $(EMACS_ROOT)/nt/inc/sys/time.h \
906         $(LISP_H) \
907         $(SRC)/atimer.h \
908         $(SRC)/blockinput.h \
909         $(SRC)/buffer.h \
910         $(SRC)/ccl.h \
911         $(SRC)/character.h \
912         $(SRC)/coding.h \
913         $(SRC)/commands.h \
914         $(SRC)/composite.h \
915         $(SRC)/dispextern.h \
916         $(SRC)/font.h \
917         $(SRC)/fontset.h \
918         $(SRC)/frame.h \
919         $(SRC)/keyboard.h \
920         $(SRC)/systime.h \
921         $(SRC)/termchar.h \
922         $(SRC)/termhooks.h \
923         $(SRC)/w32gui.h \
924         $(SRC)/w32term.h \
925         $(SRC)/window.h
927 $(BLD)/fringe.$(O) : \
928         $(SRC)/fringe.c \
929         $(CONFIG_H) \
930         $(EMACS_ROOT)/nt/inc/sys/time.h \
931         $(LISP_H) \
932         $(SRC)/atimer.h \
933         $(SRC)/blockinput.h \
934         $(SRC)/buffer.h \
935         $(SRC)/dispextern.h \
936         $(SRC)/frame.h \
937         $(SRC)/systime.h \
938         $(SRC)/termhooks.h \
939         $(SRC)/w32gui.h \
940         $(SRC)/window.h
942 $(BLD)/gmalloc.$(O) : \
943         $(SRC)/gmalloc.c \
944         $(CONFIG_H) \
945         $(EMACS_ROOT)/nt/inc/unistd.h \
946         $(SRC)/getpagesize.h
948 $(BLD)/image.$(O) : \
949         $(SRC)/image.c \
950         $(CONFIG_H) \
951         $(EMACS_ROOT)/nt/inc/unistd.h \
952         $(EMACS_ROOT)/nt/inc/sys/time.h \
953         $(LISP_H) \
954         $(SRC)/atimer.h \
955         $(SRC)/blockinput.h \
956         $(SRC)/ccl.h \
957         $(SRC)/character.h \
958         $(SRC)/coding.h \
959         $(SRC)/composite.h \
960         $(SRC)/dispextern.h \
961         $(SRC)/epaths.h \
962         $(SRC)/font.h \
963         $(SRC)/frame.h \
964         $(SRC)/systime.h \
965         $(SRC)/termhooks.h \
966         $(SRC)/w32gui.h \
967         $(SRC)/w32term.h \
968         $(SRC)/window.h
970 $(BLD)/indent.$(O) : \
971         $(SRC)/indent.c \
972         $(CONFIG_H) \
973         $(EMACS_ROOT)/nt/inc/sys/time.h \
974         $(LISP_H) \
975         $(SRC)/buffer.h \
976         $(SRC)/category.h \
977         $(SRC)/character.h \
978         $(SRC)/coding.h \
979         $(SRC)/composite.h \
980         $(SRC)/dispextern.h \
981         $(SRC)/disptab.h \
982         $(SRC)/frame.h \
983         $(SRC)/indent.h \
984         $(SRC)/intervals.h \
985         $(SRC)/keyboard.h \
986         $(SRC)/region-cache.h \
987         $(SRC)/systime.h \
988         $(SRC)/termchar.h \
989         $(SRC)/termopts.h \
990         $(SRC)/w32gui.h \
991         $(SRC)/window.h
993 $(BLD)/insdel.$(O) : \
994         $(SRC)/insdel.c \
995         $(CONFIG_H) \
996         $(EMACS_ROOT)/nt/inc/sys/time.h \
997         $(LISP_H) \
998         $(SRC)/atimer.h \
999         $(SRC)/blockinput.h \
1000         $(SRC)/buffer.h \
1001         $(SRC)/character.h \
1002         $(SRC)/composite.h \
1003         $(SRC)/dispextern.h \
1004         $(SRC)/intervals.h \
1005         $(SRC)/region-cache.h \
1006         $(SRC)/systime.h \
1007         $(SRC)/w32gui.h \
1008         $(SRC)/window.h
1010 $(BLD)/intervals.$(O) : \
1011         $(SRC)/intervals.c \
1012         $(CONFIG_H) \
1013         $(EMACS_ROOT)/nt/inc/sys/time.h \
1014         $(LISP_H) \
1015         $(SRC)/buffer.h \
1016         $(SRC)/coding.h \
1017         $(SRC)/composite.h \
1018         $(SRC)/dispextern.h \
1019         $(SRC)/intervals.h \
1020         $(SRC)/keyboard.h \
1021         $(SRC)/keymap.h \
1022         $(SRC)/puresize.h \
1023         $(SRC)/systime.h \
1024         $(SRC)/w32gui.h
1026 $(BLD)/keyboard.$(O) : \
1027         $(SRC)/keyboard.c \
1028         $(CONFIG_H) \
1029         $(EMACS_ROOT)/nt/inc/unistd.h \
1030         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1031         $(EMACS_ROOT)/nt/inc/sys/time.h \
1032         $(LISP_H) \
1033         $(SRC)/atimer.h \
1034         $(SRC)/blockinput.h \
1035         $(SRC)/buffer.h \
1036         $(SRC)/character.h \
1037         $(SRC)/coding.h \
1038         $(SRC)/commands.h \
1039         $(SRC)/composite.h \
1040         $(SRC)/dispextern.h \
1041         $(SRC)/disptab.h \
1042         $(SRC)/frame.h \
1043         $(SRC)/intervals.h \
1044         $(SRC)/keyboard.h \
1045         $(SRC)/keymap.h \
1046         $(SRC)/macros.h \
1047         $(PROCESS_H) \
1048         $(SRC)/puresize.h \
1049         $(SRC)/syntax.h \
1050         $(SRC)/syssignal.h \
1051         $(SRC)/systime.h \
1052         $(SRC)/termchar.h \
1053         $(SRC)/termhooks.h \
1054         $(SRC)/termopts.h \
1055         $(SRC)/w32gui.h \
1056         $(SRC)/w32term.h \
1057         $(SRC)/window.h
1059 $(BLD)/keymap.$(O) : \
1060         $(SRC)/keymap.c \
1061         $(CONFIG_H) \
1062         $(EMACS_ROOT)/nt/inc/sys/time.h \
1063         $(LISP_H) \
1064         $(SRC)/atimer.h \
1065         $(SRC)/blockinput.h \
1066         $(SRC)/buffer.h \
1067         $(SRC)/character.h \
1068         $(SRC)/charset.h \
1069         $(SRC)/coding.h \
1070         $(SRC)/commands.h \
1071         $(SRC)/composite.h \
1072         $(SRC)/dispextern.h \
1073         $(SRC)/frame.h \
1074         $(SRC)/intervals.h \
1075         $(SRC)/keyboard.h \
1076         $(SRC)/keymap.h \
1077         $(SRC)/puresize.h \
1078         $(SRC)/systime.h \
1079         $(SRC)/termhooks.h \
1080         $(SRC)/w32gui.h \
1081         $(SRC)/window.h
1083 $(BLD)/lastfile.$(O) : \
1084         $(SRC)/lastfile.c \
1085         $(CONFIG_H)
1087 $(BLD)/lread.$(O) : \
1088         $(SRC)/lread.c \
1089         $(CONFIG_H) \
1090         $(EMACS_ROOT)/nt/inc/unistd.h \
1091         $(EMACS_ROOT)/nt/inc/sys/file.h \
1092         $(EMACS_ROOT)/nt/inc/sys/time.h \
1093         $(LISP_H) \
1094         $(SRC)/atimer.h \
1095         $(SRC)/blockinput.h \
1096         $(SRC)/buffer.h \
1097         $(SRC)/character.h \
1098         $(SRC)/charset.h \
1099         $(SRC)/coding.h \
1100         $(SRC)/commands.h \
1101         $(SRC)/composite.h \
1102         $(SRC)/dispextern.h \
1103         $(SRC)/epaths.h \
1104         $(SRC)/frame.h \
1105         $(SRC)/intervals.h \
1106         $(SRC)/keyboard.h \
1107         $(SRC)/systime.h \
1108         $(SRC)/termhooks.h \
1109         $(SRC)/w32gui.h
1111 $(BLD)/macros.$(O) : \
1112         $(SRC)/macros.c \
1113         $(CONFIG_H) \
1114         $(EMACS_ROOT)/nt/inc/sys/time.h \
1115         $(LISP_H) \
1116         $(SRC)/buffer.h \
1117         $(SRC)/coding.h \
1118         $(SRC)/commands.h \
1119         $(SRC)/composite.h \
1120         $(SRC)/dispextern.h \
1121         $(SRC)/keyboard.h \
1122         $(SRC)/macros.h \
1123         $(SRC)/systime.h \
1124         $(SRC)/w32gui.h \
1125         $(SRC)/window.h
1127 $(BLD)/marker.$(O) : \
1128         $(SRC)/marker.c \
1129         $(CONFIG_H) \
1130         $(LISP_H) \
1131         $(SRC)/buffer.h \
1132         $(SRC)/character.h
1134 $(BLD)/menu.$(O) : \
1135         $(SRC)/menu.c \
1136         $(CONFIG_H) \
1137         $(EMACS_ROOT)/nt/inc/sys/time.h \
1138         $(LISP_H) \
1139         $(SRC)/atimer.h \
1140         $(SRC)/blockinput.h \
1141         $(SRC)/coding.h \
1142         $(SRC)/composite.h \
1143         $(SRC)/dispextern.h \
1144         $(SRC)/frame.h \
1145         $(SRC)/keyboard.h \
1146         $(SRC)/keymap.h \
1147         $(SRC)/menu.h \
1148         $(SRC)/systime.h \
1149         $(SRC)/termhooks.h \
1150         $(SRC)/w32gui.h \
1151         $(SRC)/w32term.h \
1152         $(SRC)/window.h
1154 $(BLD)/minibuf.$(O) : \
1155         $(SRC)/minibuf.c \
1156         $(CONFIG_H) \
1157         $(EMACS_ROOT)/nt/inc/sys/time.h \
1158         $(LISP_H) \
1159         $(SRC)/buffer.h \
1160         $(SRC)/character.h \
1161         $(SRC)/coding.h \
1162         $(SRC)/commands.h \
1163         $(SRC)/composite.h \
1164         $(SRC)/dispextern.h \
1165         $(SRC)/frame.h \
1166         $(SRC)/intervals.h \
1167         $(SRC)/keyboard.h \
1168         $(SRC)/keymap.h \
1169         $(SRC)/syntax.h \
1170         $(SRC)/systime.h \
1171         $(SRC)/termhooks.h \
1172         $(SRC)/w32gui.h \
1173         $(SRC)/window.h
1175 $(BLD)/w32.$(O) : \
1176         $(SRC)/w32.c \
1177         $(CONFIG_H) \
1178         $(EMACS_ROOT)/nt/inc/grp.h \
1179         $(EMACS_ROOT)/nt/inc/pwd.h \
1180         $(EMACS_ROOT)/nt/inc/unistd.h \
1181         $(EMACS_ROOT)/nt/inc/sys/file.h \
1182         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1183         $(EMACS_ROOT)/nt/inc/sys/time.h \
1184         $(LISP_H) \
1185         $(SRC)/coding.h \
1186         $(SRC)/composite.h \
1187         $(SRC)/dispextern.h \
1188         $(SRC)/ndir.h \
1189         $(PROCESS_H) \
1190         $(SRC)/systime.h \
1191         $(SRC)/w32.h \
1192         $(SRC)/w32gui.h \
1193         $(SRC)/w32heap.h
1195 $(BLD)/w32heap.$(O) : \
1196         $(SRC)/w32heap.c \
1197         $(CONFIG_H) \
1198         $(LISP_H) \
1199         $(SRC)/w32heap.h
1201 $(BLD)/w32inevt.$(O) : \
1202         $(SRC)/w32inevt.c \
1203         $(CONFIG_H) \
1204         $(EMACS_ROOT)/nt/inc/sys/time.h \
1205         $(LISP_H) \
1206         $(SRC)/atimer.h \
1207         $(SRC)/blockinput.h \
1208         $(SRC)/coding.h \
1209         $(SRC)/composite.h \
1210         $(SRC)/dispextern.h \
1211         $(SRC)/frame.h \
1212         $(SRC)/keyboard.h \
1213         $(SRC)/systime.h \
1214         $(SRC)/termhooks.h \
1215         $(SRC)/w32gui.h \
1216         $(SRC)/w32heap.h \
1217         $(SRC)/w32term.h
1219 $(BLD)/w32proc.$(O) : \
1220         $(SRC)/w32proc.c \
1221         $(CONFIG_H) \
1222         $(EMACS_ROOT)/nt/inc/langinfo.h \
1223         $(EMACS_ROOT)/nt/inc/nl_types.h \
1224         $(EMACS_ROOT)/nt/inc/unistd.h \
1225         $(EMACS_ROOT)/nt/inc/sys/file.h \
1226         $(EMACS_ROOT)/nt/inc/sys/time.h \
1227         $(LISP_H) \
1228         $(SRC)/character.h \
1229         $(SRC)/coding.h \
1230         $(SRC)/composite.h \
1231         $(SRC)/dispextern.h \
1232         $(PROCESS_H) \
1233         $(SRC)/syssignal.h \
1234         $(SRC)/systime.h \
1235         $(SRC)/syswait.h \
1236         $(SRC)/w32.h \
1237         $(SRC)/w32gui.h \
1238         $(SRC)/w32heap.h \
1239         $(SRC)/w32term.h
1241 $(BLD)/w32console.$(O) : \
1242         $(SRC)/w32console.c \
1243         $(CONFIG_H) \
1244         $(LISP_H) \
1245         $(SRC)/character.h \
1246         $(SRC)/coding.h \
1247         $(SRC)/composite.h \
1248         $(SRC)/dispextern.h \
1249         $(SRC)/disptab.h \
1250         $(SRC)/frame.h \
1251         $(SRC)/termchar.h \
1252         $(SRC)/termhooks.h \
1253         $(SRC)/w32gui.h \
1254         $(SRC)/w32inevt.h
1256 $(BLD)/print.$(O) : \
1257         $(SRC)/print.c \
1258         $(CONFIG_H) \
1259         $(EMACS_ROOT)/nt/inc/unistd.h \
1260         $(EMACS_ROOT)/nt/inc/sys/time.h \
1261         $(EMACS_ROOT)/lib/ftoastr.h \
1262         $(EMACS_ROOT)/lib/intprops.h \
1263         $(LISP_H) \
1264         $(SRC)/atimer.h \
1265         $(SRC)/blockinput.h \
1266         $(SRC)/buffer.h \
1267         $(SRC)/ccl.h \
1268         $(SRC)/character.h \
1269         $(SRC)/charset.h \
1270         $(SRC)/coding.h \
1271         $(SRC)/composite.h \
1272         $(SRC)/dispextern.h \
1273         $(SRC)/font.h \
1274         $(SRC)/frame.h \
1275         $(SRC)/intervals.h \
1276         $(SRC)/keyboard.h \
1277         $(PROCESS_H) \
1278         $(SRC)/systime.h \
1279         $(SRC)/termchar.h \
1280         $(SRC)/termhooks.h \
1281         $(SRC)/w32gui.h \
1282         $(SRC)/window.h
1284 $(BLD)/process.$(O) : \
1285         $(SRC)/process.c \
1286         $(CONFIG_H) \
1287         $(EMACS_ROOT)/nt/inc/netdb.h \
1288         $(EMACS_ROOT)/nt/inc/unistd.h \
1289         $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1290         $(EMACS_ROOT)/nt/inc/netinet/in.h \
1291         $(EMACS_ROOT)/nt/inc/sys/file.h \
1292         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1293         $(EMACS_ROOT)/nt/inc/sys/time.h \
1294         $(LISP_H) \
1295         $(SRC)/atimer.h \
1296         $(SRC)/blockinput.h \
1297         $(SRC)/buffer.h \
1298         $(SRC)/character.h \
1299         $(SRC)/coding.h \
1300         $(SRC)/commands.h \
1301         $(SRC)/composite.h \
1302         $(SRC)/dispextern.h \
1303         $(SRC)/frame.h \
1304         $(SRC)/keyboard.h \
1305         $(PROCESS_H) \
1306         $(SRC)/sysselect.h \
1307         $(SRC)/syssignal.h \
1308         $(SRC)/systime.h \
1309         $(SRC)/systty.h \
1310         $(SRC)/syswait.h \
1311         $(SRC)/termhooks.h \
1312         $(SRC)/termopts.h \
1313         $(SRC)/w32.h \
1314         $(SRC)/w32gui.h \
1315         $(SRC)/window.h
1317 $(BLD)/ralloc.$(O) : \
1318         $(SRC)/ralloc.c \
1319         $(CONFIG_H) \
1320         $(EMACS_ROOT)/nt/inc/unistd.h \
1321         $(EMACS_ROOT)/nt/inc/sys/time.h \
1322         $(LISP_H) \
1323         $(SRC)/atimer.h \
1324         $(SRC)/blockinput.h \
1325         $(SRC)/getpagesize.h \
1326         $(SRC)/systime.h
1328 $(BLD)/regex.$(O) : \
1329         $(SRC)/regex.c \
1330         $(CONFIG_H) \
1331         $(LISP_H) \
1332         $(SRC)/buffer.h \
1333         $(SRC)/category.h \
1334         $(SRC)/character.h \
1335         $(SRC)/regex.h \
1336         $(SRC)/syntax.h
1338 $(BLD)/region-cache.$(O) : \
1339         $(SRC)/region-cache.c \
1340         $(CONFIG_H) \
1341         $(LISP_H) \
1342         $(SRC)/buffer.h \
1343         $(SRC)/region-cache.h
1345 $(BLD)/scroll.$(O) : \
1346         $(SRC)/scroll.c \
1347         $(CONFIG_H) \
1348         $(EMACS_ROOT)/nt/inc/sys/time.h \
1349         $(LISP_H) \
1350         $(SRC)/coding.h \
1351         $(SRC)/composite.h \
1352         $(SRC)/dispextern.h \
1353         $(SRC)/frame.h \
1354         $(SRC)/keyboard.h \
1355         $(SRC)/systime.h \
1356         $(SRC)/termchar.h \
1357         $(SRC)/termhooks.h \
1358         $(SRC)/w32gui.h \
1359         $(SRC)/window.h
1361 $(BLD)/search.$(O) : \
1362         $(SRC)/search.c \
1363         $(CONFIG_H) \
1364         $(EMACS_ROOT)/nt/inc/sys/time.h \
1365         $(LISP_H) \
1366         $(SRC)/atimer.h \
1367         $(SRC)/blockinput.h \
1368         $(SRC)/buffer.h \
1369         $(SRC)/category.h \
1370         $(SRC)/character.h \
1371         $(SRC)/charset.h \
1372         $(SRC)/commands.h \
1373         $(SRC)/composite.h \
1374         $(SRC)/dispextern.h \
1375         $(SRC)/intervals.h \
1376         $(SRC)/regex.h \
1377         $(SRC)/region-cache.h \
1378         $(SRC)/syntax.h \
1379         $(SRC)/systime.h \
1380         $(SRC)/w32gui.h
1382 $(BLD)/sound.$(O) : \
1383         $(SRC)/sound.c \
1384         $(CONFIG_H) \
1385         $(EMACS_ROOT)/nt/inc/unistd.h \
1386         $(EMACS_ROOT)/nt/inc/sys/time.h \
1387         $(LISP_H) \
1388         $(SRC)/atimer.h \
1389         $(SRC)/dispextern.h \
1390         $(SRC)/syssignal.h \
1391         $(SRC)/systime.h \
1392         $(SRC)/w32gui.h
1394 $(BLD)/syntax.$(O) : \
1395         $(SRC)/syntax.c \
1396         $(CONFIG_H) \
1397         $(LISP_H) \
1398         $(SRC)/buffer.h \
1399         $(SRC)/category.h \
1400         $(SRC)/character.h \
1401         $(SRC)/commands.h \
1402         $(SRC)/composite.h \
1403         $(SRC)/dispextern.h \
1404         $(SRC)/intervals.h \
1405         $(SRC)/keymap.h \
1406         $(SRC)/regex.h \
1407         $(SRC)/syntax.h \
1408         $(SRC)/w32gui.h
1410 $(BLD)/sysdep.$(O) : \
1411         $(SRC)/sysdep.c \
1412         $(CONFIG_H) \
1413         $(EMACS_ROOT)/nt/inc/grp.h \
1414         $(EMACS_ROOT)/nt/inc/netdb.h \
1415         $(EMACS_ROOT)/nt/inc/pwd.h \
1416         $(EMACS_ROOT)/nt/inc/unistd.h \
1417         $(EMACS_ROOT)/nt/inc/sys/file.h \
1418         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1419         $(EMACS_ROOT)/nt/inc/sys/time.h \
1420         $(EMACS_ROOT)/lib/ignore-value.h \
1421         $(LISP_H) \
1422         $(SRC)/atimer.h \
1423         $(SRC)/blockinput.h \
1424         $(SRC)/cm.h \
1425         $(SRC)/coding.h \
1426         $(SRC)/composite.h \
1427         $(SRC)/dispextern.h \
1428         $(SRC)/frame.h \
1429         $(SRC)/keyboard.h \
1430         $(PROCESS_H) \
1431         $(SRC)/sysselect.h \
1432         $(SRC)/syssignal.h \
1433         $(SRC)/systime.h \
1434         $(SRC)/systty.h \
1435         $(SRC)/syswait.h \
1436         $(SRC)/termchar.h \
1437         $(SRC)/termhooks.h \
1438         $(SRC)/termopts.h \
1439         $(SRC)/w32.h \
1440         $(SRC)/w32gui.h \
1441         $(SRC)/window.h
1443 $(BLD)/term.$(O) : \
1444         $(SRC)/term.c \
1445         $(CONFIG_H) \
1446         $(EMACS_ROOT)/nt/inc/unistd.h \
1447         $(EMACS_ROOT)/nt/inc/sys/file.h \
1448         $(EMACS_ROOT)/nt/inc/sys/time.h \
1449         $(LISP_H) \
1450         $(SRC)/atimer.h \
1451         $(SRC)/blockinput.h \
1452         $(SRC)/buffer.h \
1453         $(SRC)/character.h \
1454         $(SRC)/charset.h \
1455         $(SRC)/cm.h \
1456         $(SRC)/coding.h \
1457         $(SRC)/composite.h \
1458         $(SRC)/dispextern.h \
1459         $(SRC)/disptab.h \
1460         $(SRC)/frame.h \
1461         $(SRC)/intervals.h \
1462         $(SRC)/keyboard.h \
1463         $(SRC)/keymap.h \
1464         $(SRC)/syssignal.h \
1465         $(SRC)/systime.h \
1466         $(SRC)/systty.h \
1467         $(SRC)/termchar.h \
1468         $(SRC)/termhooks.h \
1469         $(SRC)/termopts.h \
1470         $(SRC)/tparam.h \
1471         $(SRC)/w32gui.h \
1472         $(SRC)/window.h
1474 $(BLD)/terminal.$(O) : \
1475         $(SRC)/terminal.c \
1476         $(CONFIG_H) \
1477         $(EMACS_ROOT)/nt/inc/sys/time.h \
1478         $(LISP_H) \
1479         $(SRC)/charset.h \
1480         $(SRC)/coding.h \
1481         $(SRC)/composite.h \
1482         $(SRC)/dispextern.h \
1483         $(SRC)/frame.h \
1484         $(SRC)/keyboard.h \
1485         $(SRC)/systime.h \
1486         $(SRC)/termchar.h \
1487         $(SRC)/termhooks.h \
1488         $(SRC)/w32gui.h
1490 $(BLD)/textprop.$(O) : \
1491         $(SRC)/textprop.c \
1492         $(CONFIG_H) \
1493         $(LISP_H) \
1494         $(SRC)/buffer.h \
1495         $(SRC)/composite.h \
1496         $(SRC)/dispextern.h \
1497         $(SRC)/intervals.h \
1498         $(SRC)/w32gui.h \
1499         $(SRC)/window.h
1501 $(BLD)/tparam.$(O) : \
1502         $(SRC)/tparam.c \
1503         $(SRC)/tparam.h \
1504         $(CONFIG_H) \
1505         $(LISP_H)
1507 $(BLD)/undo.$(O) : \
1508         $(SRC)/undo.c \
1509         $(CONFIG_H) \
1510         $(LISP_H) \
1511         $(SRC)/buffer.h \
1512         $(SRC)/commands.h \
1513         $(SRC)/dispextern.h \
1514         $(SRC)/w32gui.h \
1515         $(SRC)/window.h
1517 $(BLD)/unexw32.$(O) : \
1518         $(SRC)/unexw32.c \
1519         $(SRC)/unexec.h \
1520         $(CONFIG_H) \
1521         $(SRC)/w32heap.h
1523 $(BLD)/vm-limit.$(O) : \
1524         $(SRC)/vm-limit.c \
1525         $(CONFIG_H) \
1526         $(LISP_H) \
1527         $(SRC)/mem-limits.h
1529 $(BLD)/window.$(O) : \
1530         $(SRC)/window.c \
1531         $(CONFIG_H) \
1532         $(EMACS_ROOT)/nt/inc/sys/time.h \
1533         $(LISP_H) \
1534         $(SRC)/atimer.h \
1535         $(SRC)/blockinput.h \
1536         $(SRC)/buffer.h \
1537         $(SRC)/coding.h \
1538         $(SRC)/commands.h \
1539         $(SRC)/composite.h \
1540         $(SRC)/dispextern.h \
1541         $(SRC)/disptab.h \
1542         $(SRC)/frame.h \
1543         $(SRC)/indent.h \
1544         $(SRC)/intervals.h \
1545         $(SRC)/keyboard.h \
1546         $(SRC)/keymap.h \
1547         $(SRC)/systime.h \
1548         $(SRC)/termchar.h \
1549         $(SRC)/termhooks.h \
1550         $(SRC)/w32gui.h \
1551         $(SRC)/w32term.h \
1552         $(SRC)/window.h
1554 $(BLD)/xdisp.$(O) : \
1555         $(SRC)/xdisp.c \
1556         $(CONFIG_H) \
1557         $(EMACS_ROOT)/nt/inc/unistd.h \
1558         $(EMACS_ROOT)/nt/inc/sys/time.h \
1559         $(LISP_H) \
1560         $(SRC)/atimer.h \
1561         $(SRC)/blockinput.h \
1562         $(SRC)/buffer.h \
1563         $(SRC)/ccl.h \
1564         $(SRC)/character.h \
1565         $(SRC)/charset.h \
1566         $(SRC)/coding.h \
1567         $(SRC)/commands.h \
1568         $(SRC)/composite.h \
1569         $(SRC)/dispextern.h \
1570         $(SRC)/disptab.h \
1571         $(SRC)/font.h \
1572         $(SRC)/fontset.h \
1573         $(SRC)/frame.h \
1574         $(SRC)/indent.h \
1575         $(SRC)/intervals.h \
1576         $(SRC)/keyboard.h \
1577         $(SRC)/keymap.h \
1578         $(SRC)/macros.h \
1579         $(PROCESS_H) \
1580         $(SRC)/region-cache.h \
1581         $(SRC)/systime.h \
1582         $(SRC)/termchar.h \
1583         $(SRC)/termhooks.h \
1584         $(SRC)/termopts.h \
1585         $(SRC)/w32gui.h \
1586         $(SRC)/w32term.h \
1587         $(SRC)/window.h
1589 $(BLD)/xfaces.$(O) : \
1590         $(SRC)/xfaces.c \
1591         $(CONFIG_H) \
1592         $(EMACS_ROOT)/nt/inc/sys/time.h \
1593         $(LISP_H) \
1594         $(SRC)/atimer.h \
1595         $(SRC)/blockinput.h \
1596         $(SRC)/buffer.h \
1597         $(SRC)/ccl.h \
1598         $(SRC)/character.h \
1599         $(SRC)/charset.h \
1600         $(SRC)/coding.h \
1601         $(SRC)/composite.h \
1602         $(SRC)/dispextern.h \
1603         $(SRC)/font.h \
1604         $(SRC)/fontset.h \
1605         $(SRC)/frame.h \
1606         $(SRC)/intervals.h \
1607         $(SRC)/keyboard.h \
1608         $(SRC)/systime.h \
1609         $(SRC)/termchar.h \
1610         $(SRC)/termhooks.h \
1611         $(SRC)/w32gui.h \
1612         $(SRC)/w32term.h \
1613         $(SRC)/window.h
1615 $(BLD)/w32fns.$(O) : \
1616         $(SRC)/w32fns.c \
1617         $(CONFIG_H) \
1618         $(EMACS_ROOT)/nt/inc/sys/time.h \
1619         $(LISP_H) \
1620         $(SRC)/atimer.h \
1621         $(SRC)/blockinput.h \
1622         $(SRC)/buffer.h \
1623         $(SRC)/ccl.h \
1624         $(SRC)/character.h \
1625         $(SRC)/charset.h \
1626         $(SRC)/coding.h \
1627         $(SRC)/composite.h \
1628         $(SRC)/dispextern.h \
1629         $(SRC)/epaths.h \
1630         $(SRC)/font.h \
1631         $(SRC)/fontset.h \
1632         $(SRC)/frame.h \
1633         $(SRC)/intervals.h \
1634         $(SRC)/keyboard.h \
1635         $(SRC)/systime.h \
1636         $(SRC)/termhooks.h \
1637         $(SRC)/w32.h \
1638         $(SRC)/w32font.h \
1639         $(SRC)/w32gui.h \
1640         $(SRC)/w32heap.h \
1641         $(SRC)/w32term.h \
1642         $(SRC)/window.h
1644 $(BLD)/w32menu.$(O) : \
1645         $(SRC)/w32menu.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)/character.h \
1653         $(SRC)/charset.h \
1654         $(SRC)/coding.h \
1655         $(SRC)/composite.h \
1656         $(SRC)/dispextern.h \
1657         $(SRC)/frame.h \
1658         $(SRC)/keyboard.h \
1659         $(SRC)/keymap.h \
1660         $(SRC)/menu.h \
1661         $(SRC)/systime.h \
1662         $(SRC)/termhooks.h \
1663         $(SRC)/w32gui.h \
1664         $(SRC)/w32term.h \
1665         $(SRC)/window.h
1667 $(BLD)/w32term.$(O) : \
1668         $(SRC)/w32term.c \
1669         $(CONFIG_H) \
1670         $(EMACS_ROOT)/nt/inc/unistd.h \
1671         $(EMACS_ROOT)/nt/inc/sys/time.h \
1672         $(LISP_H) \
1673         $(SRC)/atimer.h \
1674         $(SRC)/blockinput.h \
1675         $(SRC)/buffer.h \
1676         $(SRC)/ccl.h \
1677         $(SRC)/character.h \
1678         $(SRC)/charset.h \
1679         $(SRC)/coding.h \
1680         $(SRC)/composite.h \
1681         $(SRC)/dispextern.h \
1682         $(SRC)/disptab.h \
1683         $(SRC)/font.h \
1684         $(SRC)/fontset.h \
1685         $(SRC)/frame.h \
1686         $(SRC)/intervals.h \
1687         $(SRC)/keyboard.h \
1688         $(SRC)/keymap.h \
1689         $(PROCESS_H) \
1690         $(SRC)/systime.h \
1691         $(SRC)/systty.h \
1692         $(SRC)/termchar.h \
1693         $(SRC)/termhooks.h \
1694         $(SRC)/termopts.h \
1695         $(SRC)/w32font.h \
1696         $(SRC)/w32gui.h \
1697         $(SRC)/w32heap.h \
1698         $(SRC)/w32term.h \
1699         $(SRC)/window.h
1701 $(BLD)/w32select.$(O) : \
1702         $(SRC)/w32select.c \
1703         $(CONFIG_H) \
1704         $(EMACS_ROOT)/nt/inc/sys/time.h \
1705         $(LISP_H) \
1706         $(SRC)/atimer.h \
1707         $(SRC)/blockinput.h \
1708         $(SRC)/character.h \
1709         $(SRC)/charset.h \
1710         $(SRC)/coding.h \
1711         $(SRC)/composite.h \
1712         $(SRC)/keyboard.h \
1713         $(SRC)/systime.h \
1714         $(SRC)/w32gui.h \
1715         $(SRC)/w32heap.h \
1716         $(SRC)/w32term.h
1718 $(BLD)/w32reg.$(O) : \
1719         $(SRC)/w32reg.c \
1720         $(CONFIG_H) \
1721         $(EMACS_ROOT)/nt/inc/sys/time.h \
1722         $(LISP_H) \
1723         $(SRC)/atimer.h \
1724         $(SRC)/blockinput.h \
1725         $(SRC)/systime.h \
1726         $(SRC)/w32gui.h \
1727         $(SRC)/w32term.h
1729 $(BLD)/w32xfns.$(O) : \
1730         $(SRC)/w32xfns.c \
1731         $(CONFIG_H) \
1732         $(EMACS_ROOT)/nt/inc/sys/time.h \
1733         $(LISP_H) \
1734         $(SRC)/atimer.h \
1735         $(SRC)/blockinput.h \
1736         $(SRC)/charset.h \
1737         $(SRC)/coding.h \
1738         $(SRC)/composite.h \
1739         $(SRC)/dispextern.h \
1740         $(SRC)/fontset.h \
1741         $(SRC)/frame.h \
1742         $(SRC)/keyboard.h \
1743         $(SRC)/systime.h \
1744         $(SRC)/w32gui.h \
1745         $(SRC)/w32term.h
1747 $(BLD)/w32font.$(O) : \
1748         $(SRC)/w32font.c \
1749         $(CONFIG_H) \
1750         $(LISP_H) \
1751         $(SRC)/ccl.h \
1752         $(SRC)/character.h \
1753         $(SRC)/charset.h \
1754         $(SRC)/coding.h \
1755         $(SRC)/composite.h \
1756         $(SRC)/dispextern.h \
1757         $(SRC)/font.h \
1758         $(SRC)/fontset.h \
1759         $(SRC)/frame.h \
1760         $(SRC)/w32font.h \
1761         $(SRC)/w32gui.h \
1762         $(SRC)/w32term.h
1764 $(BLD)/w32uniscribe.$(O) : \
1765         $(SRC)/w32uniscribe.c \
1766         $(CONFIG_H) \
1767         $(LISP_H) \
1768         $(SRC)/ccl.h \
1769         $(SRC)/character.h \
1770         $(SRC)/charset.h \
1771         $(SRC)/composite.h \
1772         $(SRC)/dispextern.h \
1773         $(SRC)/font.h \
1774         $(SRC)/fontset.h \
1775         $(SRC)/frame.h \
1776         $(SRC)/w32font.h \
1777         $(SRC)/w32gui.h \
1778         $(SRC)/w32term.h
1780 # Each object file depends on stamp_BLD, because in parallel builds we must
1781 # make sure $(BLD) exists before starting compilations.
1783 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD