(custom-group-value-create): Insert some
[emacs.git] / src / makefile.w32-in
blob5618643a77125865c8e87278f135e92d4ad2773e
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 #   2008, 2009  Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
21 ALL = emacs
23 .PHONY: $(ALL)
25 # Set EMACSLOADPATH correctly (in case already defined in environment).
26 EMACSLOADPATH=$(CURDIR)/../lisp
29 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
30 # the emacs source tree.
32 LOCAL_FLAGS     = -Demacs=1 -DHAVE_CONFIG_H -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
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 TLIBW32         = $(BLD)/temacw32.$(A)
40 TOBJ            = $(BLD)/firstfile.$(O)
41 TRES            = $(BLD)/emacs.res
42 TLASTLIB        = $(BLD)/lastfile.$(A)
44 DOC             = $(OBJDIR)/etc/DOC-X
46 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
49 # Split up the objects into two sets so that we don't run out of
50 # command line space when we link them into a library.
52 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
53 # as the "main" object file when linking.
55 OBJ0 =  $(BLD)/emacs.$(O)
57 OBJ1 =  $(BLD)/alloc.$(O)               \
58         $(BLD)/atimer.$(O)              \
59         $(BLD)/buffer.$(O)              \
60         $(BLD)/bytecode.$(O)            \
61         $(BLD)/callint.$(O)             \
62         $(BLD)/callproc.$(O)            \
63         $(BLD)/casefiddle.$(O)          \
64         $(BLD)/cm.$(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)/filemode.$(O)            \
76         $(BLD)/fns.$(O)                 \
77         $(BLD)/indent.$(O)              \
78         $(BLD)/insdel.$(O)              \
79         $(BLD)/keyboard.$(O)            \
80         $(BLD)/keymap.$(O)              \
81         $(BLD)/lread.$(O)               \
82         $(BLD)/macros.$(O)              \
83         $(BLD)/marker.$(O)              \
84         $(BLD)/md5.$(O)                 \
85         $(BLD)/minibuf.$(O)             \
86         $(BLD)/w32.$(O)                 \
87         $(BLD)/w32heap.$(O)             \
88         $(BLD)/w32inevt.$(O)            \
89         $(BLD)/w32proc.$(O)             \
90         $(BLD)/w32console.$(O)          \
91         $(BLD)/print.$(O)               \
92         $(BLD)/process.$(O)             \
93         $(BLD)/regex.$(O)               \
94         $(BLD)/scroll.$(O)              \
95         $(BLD)/search.$(O)              \
96         $(BLD)/sound.$(O)               \
97         $(BLD)/syntax.$(O)              \
98         $(BLD)/sysdep.$(O)              \
99         $(BLD)/term.$(O)                \
100         $(BLD)/termcap.$(O)             \
101         $(BLD)/tparam.$(O)              \
102         $(BLD)/undo.$(O)                \
103         $(BLD)/unexw32.$(O)             \
104         $(BLD)/window.$(O)              \
105         $(BLD)/xdisp.$(O)               \
106         $(BLD)/casetab.$(O)             \
107         $(BLD)/floatfns.$(O)            \
108         $(BLD)/frame.$(O)               \
109         $(BLD)/gmalloc.$(O)             \
110         $(BLD)/intervals.$(O)           \
111         $(BLD)/composite.$(O)           \
112         $(BLD)/ralloc.$(O)              \
113         $(BLD)/textprop.$(O)            \
114         $(BLD)/vm-limit.$(O)            \
115         $(BLD)/region-cache.$(O)        \
116         $(BLD)/strftime.$(O)            \
117         $(BLD)/charset.$(O)             \
118         $(BLD)/character.$(O)           \
119         $(BLD)/chartab.$(O)             \
120         $(BLD)/coding.$(O)              \
121         $(BLD)/category.$(O)            \
122         $(BLD)/ccl.$(O)                 \
123         $(BLD)/font.$(O)                \
124         $(BLD)/fontset.$(O)             \
125         $(BLD)/fringe.$(O)              \
126         $(BLD)/image.$(O)               \
127         $(BLD)/terminal.$(O)            \
128         $(BLD)/menu.$(O)
130 WIN32OBJ = $(BLD)/w32term.$(O)          \
131            $(BLD)/w32xfns.$(O)          \
132            $(BLD)/w32fns.$(O)           \
133            $(BLD)/xfaces.$(O)           \
134            $(BLD)/w32select.$(O)        \
135            $(BLD)/w32menu.$(O)          \
136            $(BLD)/w32reg.$(O)
138 FONTOBJ = $(BLD)/w32font.$(O) $(BLD)/w32uniscribe.$(O)
140 LIBS =  $(TLIB0)        \
141         $(TLIB1)        \
142         $(TLIBW32)      \
143         $(TLASTLIB)     \
144         $(WINMM)        \
145         $(ADVAPI32)     \
146         $(GDI32)        \
147         $(COMDLG32)     \
148         $(USER32)       \
149         $(MPR)  \
150         $(SHELL32)      \
151         $(WINSPOOL)     \
152         $(OLE32)        \
153         $(COMCTL32)     \
154         $(UNISCRIBE)    \
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" -q -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) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
178                   ../nt/$(BLD)/addsection.exe
179         $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
180         "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
181         echo $(OBJ0) > $(BLD)/buildobj.lst
182         echo $(OBJ1) >> $(BLD)/buildobj.lst
183         echo $(WIN32OBJ) >> $(BLD)/buildobj.lst
184         echo $(FONTOBJ) >> $(BLD)/buildobj.lst
186 bootstrap: bootstrap-emacs
189 # Build a temacs with a sufficiently large PURESIZE to load the
190 # Lisp files from loadup.el in source form.
192 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
193 #          this can break with GNU Make 3.81 and later if sh.exe is used.
194 bootstrap-temacs:
195         $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
198 # Dump an Emacs executable named bootstrap-emacs containing the
199 # files from loadup.el in source form.
201 bootstrap-emacs: bootstrap-temacs
202         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
203         - mkdir "../bin"
204         $(CP) $(EMACS) ../bin
207 # Force recompile of files that depend on PURESIZE
209 bootstrap-clean:
210         - $(DEL) $(BLD)/alloc.$(O)
211         - $(DEL) $(BLD)/data.$(O)
212         - $(DEL) $(BLD)/intervals.$(O)
213         - $(DEL) $(BLD)/keyboard.$(O)
214         - $(DEL) $(BLD)/keymap.$(O)
217 # The resource file.  NT 3.10 requires the use of cvtres; even though
218 # it is not necessary on later versions, it is still ok to use it.
220 $(TRES): ../nt/emacs.rc stamp_BLD
221         $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
224 # Build the library.  Split up the build into two phases...otherwise we
225 # run out of command line space.
227 $(TLIB0):       $(OBJ0)
228         - $(DEL) $@
229         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
230 $(TLIB1):       $(OBJ1)
231         - $(DEL) $@
232         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
233 $(TLIBW32):     $(WIN32OBJ) $(FONTOBJ)
234         - $(DEL) $@
235         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
238 # Place lastfile.$(O) in its own library so that it can be loaded after
239 # the source libraries but before any system libraries.  Doing so defines
240 # the end of Emacs' data section portably across compilers and systems.
242 $(TLASTLIB):    $(BLD)/lastfile.$(O)
243         - $(DEL) $@
244         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
247 # Assuming INSTALL_DIR is defined, build and install emacs in it.
249 install:        $(ALL)
250         - mkdir "$(INSTALL_DIR)/bin"
251         $(CP) $(EMACS) $(INSTALL_DIR)/bin
254 # Maintenance
256 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
257 # remove precious files if it happens to match their short 8+3 aliases.
258 clean:
259         - $(DEL) "s/*.h~" "m/*.h~"
260         - $(DEL) $(COMPILER_TEMP_FILES)
261         - $(DEL_TREE) $(OBJDIR)
262         - $(DEL) stamp_BLD
264 distclean:      cleanall
265         - $(DEL) config.h epaths.h Makefile
267 maintainer-clean: distclean
268         - $(DEL) TAGS
270 cleanall:       clean
271         - $(DEL_TREE) obj
272         - $(DEL_TREE) obj-spd
273         - $(DEL_TREE) oo
274         - $(DEL_TREE) oo-spd
276 ### DEPENDENCIES ###
278 EMACS_ROOT = ..
279 SRC        = .
280 CONFIG_H   = $(EMACS_ROOT)/src/s/ms-w32.h \
281              $(EMACS_ROOT)/src/m/intel386.h \
282              $(EMACS_ROOT)/src/config.h \
283              $(EMACS_ROOT)/nt/inc/sys/stat.h
285 $(BLD)/alloc.$(O) : \
286         $(SRC)/alloc.c \
287         $(CONFIG_H) \
288         $(EMACS_ROOT)/nt/inc/unistd.h \
289         $(EMACS_ROOT)/nt/inc/sys/time.h \
290         $(SRC)/atimer.h \
291         $(SRC)/blockinput.h \
292         $(SRC)/buffer.h \
293         $(SRC)/character.h \
294         $(SRC)/coding.h \
295         $(SRC)/composite.h \
296         $(SRC)/dispextern.h \
297         $(SRC)/frame.h \
298         $(SRC)/intervals.h \
299         $(SRC)/keyboard.h \
300         $(SRC)/process.h \
301         $(SRC)/puresize.h \
302         $(SRC)/syssignal.h \
303         $(SRC)/systime.h \
304         $(SRC)/termhooks.h \
305         $(SRC)/w32.h \
306         $(SRC)/w32gui.h \
307         $(SRC)/window.h
309 $(BLD)/atimer.$(O) : \
310         $(SRC)/atimer.c \
311         $(CONFIG_H) \
312         $(EMACS_ROOT)/nt/inc/unistd.h \
313         $(EMACS_ROOT)/nt/inc/sys/time.h \
314         $(SRC)/atimer.h \
315         $(SRC)/blockinput.h \
316         $(SRC)/syssignal.h \
317         $(SRC)/systime.h
319 $(BLD)/buffer.$(O) : \
320         $(SRC)/buffer.c \
321         $(CONFIG_H) \
322         $(EMACS_ROOT)/nt/inc/unistd.h \
323         $(EMACS_ROOT)/nt/inc/sys/param.h \
324         $(EMACS_ROOT)/nt/inc/sys/time.h \
325         $(SRC)/atimer.h \
326         $(SRC)/blockinput.h \
327         $(SRC)/buffer.h \
328         $(SRC)/character.h \
329         $(SRC)/coding.h \
330         $(SRC)/commands.h \
331         $(SRC)/composite.h \
332         $(SRC)/dispextern.h \
333         $(SRC)/frame.h \
334         $(SRC)/indent.h \
335         $(SRC)/intervals.h \
336         $(SRC)/keyboard.h \
337         $(SRC)/keymap.h \
338         $(SRC)/region-cache.h \
339         $(SRC)/systime.h \
340         $(SRC)/w32gui.h \
341         $(SRC)/window.h
343 $(BLD)/bytecode.$(O) : \
344         $(SRC)/bytecode.c \
345         $(CONFIG_H) \
346         $(SRC)/buffer.h \
347         $(SRC)/character.h \
348         $(SRC)/dispextern.h \
349         $(SRC)/syntax.h \
350         $(SRC)/w32gui.h \
351         $(SRC)/window.h
353 $(BLD)/callint.$(O) : \
354         $(SRC)/callint.c \
355         $(CONFIG_H) \
356         $(EMACS_ROOT)/nt/inc/sys/time.h \
357         $(SRC)/buffer.h \
358         $(SRC)/coding.h \
359         $(SRC)/commands.h \
360         $(SRC)/dispextern.h \
361         $(SRC)/keyboard.h \
362         $(SRC)/keymap.h \
363         $(SRC)/systime.h \
364         $(SRC)/w32gui.h \
365         $(SRC)/window.h
367 $(BLD)/callproc.$(O) : \
368         $(SRC)/callproc.c \
369         $(CONFIG_H) \
370         $(EMACS_ROOT)/nt/inc/unistd.h \
371         $(EMACS_ROOT)/nt/inc/sys/file.h \
372         $(EMACS_ROOT)/nt/inc/sys/time.h \
373         $(SRC)/atimer.h \
374         $(SRC)/blockinput.h \
375         $(SRC)/buffer.h \
376         $(SRC)/ccl.h \
377         $(SRC)/character.h \
378         $(SRC)/coding.h \
379         $(SRC)/commands.h \
380         $(SRC)/composite.h \
381         $(SRC)/dispextern.h \
382         $(SRC)/epaths.h \
383         $(SRC)/frame.h \
384         $(SRC)/process.h \
385         $(SRC)/syssignal.h \
386         $(SRC)/systime.h \
387         $(SRC)/systty.h \
388         $(SRC)/termhooks.h \
389         $(SRC)/w32.h \
390         $(SRC)/w32gui.h
392 $(BLD)/casefiddle.$(O) : \
393         $(SRC)/casefiddle.c \
394         $(CONFIG_H) \
395         $(SRC)/buffer.h \
396         $(SRC)/character.h \
397         $(SRC)/commands.h \
398         $(SRC)/composite.h \
399         $(SRC)/keymap.h \
400         $(SRC)/syntax.h
402 $(BLD)/casetab.$(O) : \
403         $(SRC)/casetab.c \
404         $(CONFIG_H) \
405         $(SRC)/buffer.h \
406         $(SRC)/character.h
408 $(BLD)/category.$(O) : \
409         $(SRC)/category.c \
410         $(CONFIG_H) \
411         $(SRC)/buffer.h \
412         $(SRC)/category.h \
413         $(SRC)/character.h \
414         $(SRC)/charset.h \
415         $(SRC)/keymap.h
417 $(BLD)/ccl.$(O) : \
418         $(SRC)/ccl.c \
419         $(CONFIG_H) \
420         $(SRC)/ccl.h \
421         $(SRC)/character.h \
422         $(SRC)/charset.h \
423         $(SRC)/coding.h
425 $(BLD)/character.$(O) : \
426         $(SRC)/character.c \
427         $(CONFIG_H) \
428         $(SRC)/buffer.h \
429         $(SRC)/character.h \
430         $(SRC)/charset.h \
431         $(SRC)/composite.h \
432         $(SRC)/disptab.h
434 $(BLD)/charset.$(O) : \
435         $(SRC)/charset.c \
436         $(CONFIG_H) \
437         $(EMACS_ROOT)/nt/inc/unistd.h \
438         $(SRC)/buffer.h \
439         $(SRC)/character.h \
440         $(SRC)/charset.h \
441         $(SRC)/coding.h \
442         $(SRC)/disptab.h
444 $(BLD)/chartab.$(O) : \
445         $(SRC)/chartab.c \
446         $(CONFIG_H) \
447         $(SRC)/ccl.h \
448         $(SRC)/character.h \
449         $(SRC)/charset.h
451 $(BLD)/cm.$(O) : \
452         $(SRC)/cm.c \
453         $(CONFIG_H) \
454         $(SRC)/cm.h \
455         $(SRC)/dispextern.h \
456         $(SRC)/frame.h \
457         $(SRC)/termchar.h \
458         $(SRC)/termhooks.h \
459         $(SRC)/w32gui.h
461 $(BLD)/cmds.$(O) : \
462         $(SRC)/cmds.c \
463         $(CONFIG_H) \
464         $(EMACS_ROOT)/nt/inc/sys/time.h \
465         $(SRC)/buffer.h \
466         $(SRC)/character.h \
467         $(SRC)/coding.h \
468         $(SRC)/commands.h \
469         $(SRC)/dispextern.h \
470         $(SRC)/keyboard.h \
471         $(SRC)/keymap.h \
472         $(SRC)/syntax.h \
473         $(SRC)/systime.h \
474         $(SRC)/w32gui.h \
475         $(SRC)/window.h
477 $(BLD)/coding.$(O) : \
478         $(SRC)/coding.c \
479         $(CONFIG_H) \
480         $(SRC)/buffer.h \
481         $(SRC)/ccl.h \
482         $(SRC)/character.h \
483         $(SRC)/charset.h \
484         $(SRC)/coding.h \
485         $(SRC)/composite.h \
486         $(SRC)/dispextern.h \
487         $(SRC)/frame.h \
488         $(SRC)/termhooks.h \
489         $(SRC)/w32gui.h \
490         $(SRC)/window.h
492 $(BLD)/composite.$(O) : \
493         $(SRC)/composite.c \
494         $(CONFIG_H) \
495         $(SRC)/buffer.h \
496         $(SRC)/ccl.h \
497         $(SRC)/character.h \
498         $(SRC)/composite.h \
499         $(SRC)/dispextern.h \
500         $(SRC)/font.h \
501         $(SRC)/frame.h \
502         $(SRC)/intervals.h \
503         $(SRC)/w32gui.h \
504         $(SRC)/window.h
506 $(BLD)/data.$(O) : \
507         $(SRC)/data.c \
508         $(CONFIG_H) \
509         $(EMACS_ROOT)/nt/inc/sys/time.h \
510         $(SRC)/buffer.h \
511         $(SRC)/character.h \
512         $(SRC)/coding.h \
513         $(SRC)/dispextern.h \
514         $(SRC)/frame.h \
515         $(SRC)/keyboard.h \
516         $(SRC)/puresize.h \
517         $(SRC)/syssignal.h \
518         $(SRC)/systime.h \
519         $(SRC)/termhooks.h \
520         $(SRC)/w32gui.h
522 $(BLD)/dired.$(O) : \
523         $(SRC)/dired.c \
524         $(CONFIG_H) \
525         $(EMACS_ROOT)/nt/inc/grp.h \
526         $(EMACS_ROOT)/nt/inc/pwd.h \
527         $(EMACS_ROOT)/nt/inc/unistd.h \
528         $(EMACS_ROOT)/nt/inc/sys/dir.h \
529         $(EMACS_ROOT)/nt/inc/sys/time.h \
530         $(SRC)/atimer.h \
531         $(SRC)/blockinput.h \
532         $(SRC)/buffer.h \
533         $(SRC)/character.h \
534         $(SRC)/charset.h \
535         $(SRC)/coding.h \
536         $(SRC)/commands.h \
537         $(SRC)/ndir.h \
538         $(SRC)/regex.h \
539         $(SRC)/systime.h
541 $(BLD)/dispnew.$(O) : \
542         $(SRC)/dispnew.c \
543         $(CONFIG_H) \
544         $(EMACS_ROOT)/nt/inc/unistd.h \
545         $(EMACS_ROOT)/nt/inc/sys/time.h \
546         $(SRC)/atimer.h \
547         $(SRC)/blockinput.h \
548         $(SRC)/buffer.h \
549         $(SRC)/character.h \
550         $(SRC)/cm.h \
551         $(SRC)/coding.h \
552         $(SRC)/commands.h \
553         $(SRC)/composite.h \
554         $(SRC)/dispextern.h \
555         $(SRC)/disptab.h \
556         $(SRC)/frame.h \
557         $(SRC)/indent.h \
558         $(SRC)/intervals.h \
559         $(SRC)/keyboard.h \
560         $(SRC)/process.h \
561         $(SRC)/syssignal.h \
562         $(SRC)/systime.h \
563         $(SRC)/termchar.h \
564         $(SRC)/termhooks.h \
565         $(SRC)/termopts.h \
566         $(SRC)/w32gui.h \
567         $(SRC)/w32term.h \
568         $(SRC)/window.h
570 $(BLD)/doc.$(O) : \
571         $(SRC)/doc.c \
572         $(CONFIG_H) \
573         $(EMACS_ROOT)/nt/inc/unistd.h \
574         $(EMACS_ROOT)/nt/inc/sys/file.h \
575         $(EMACS_ROOT)/nt/inc/sys/time.h \
576         $(SRC)/buffer.h \
577         $(SRC)/character.h \
578         $(SRC)/coding.h \
579         $(SRC)/keyboard.h \
580         $(SRC)/keymap.h \
581         $(SRC)/systime.h
583 $(BLD)/doprnt.$(O) : \
584         $(SRC)/doprnt.c \
585         $(CONFIG_H) \
586         $(EMACS_ROOT)/nt/inc/unistd.h \
587         $(SRC)/character.h
589 $(BLD)/editfns.$(O) : \
590         $(SRC)/editfns.c \
591         $(CONFIG_H) \
592         $(EMACS_ROOT)/nt/inc/pwd.h \
593         $(EMACS_ROOT)/nt/inc/unistd.h \
594         $(EMACS_ROOT)/nt/inc/sys/time.h \
595         $(SRC)/atimer.h \
596         $(SRC)/blockinput.h \
597         $(SRC)/buffer.h \
598         $(SRC)/character.h \
599         $(SRC)/coding.h \
600         $(SRC)/composite.h \
601         $(SRC)/dispextern.h \
602         $(SRC)/frame.h \
603         $(SRC)/intervals.h \
604         $(SRC)/systime.h \
605         $(SRC)/w32gui.h \
606         $(SRC)/window.h
608 $(BLD)/emacs.$(O) : \
609         $(SRC)/emacs.c \
610         $(CONFIG_H) \
611         $(EMACS_ROOT)/nt/inc/unistd.h \
612         $(EMACS_ROOT)/nt/inc/sys/file.h \
613         $(EMACS_ROOT)/nt/inc/sys/time.h \
614         $(SRC)/atimer.h \
615         $(SRC)/blockinput.h \
616         $(SRC)/buffer.h \
617         $(SRC)/coding.h \
618         $(SRC)/commands.h \
619         $(SRC)/composite.h \
620         $(SRC)/dispextern.h \
621         $(SRC)/frame.h \
622         $(SRC)/intervals.h \
623         $(SRC)/keyboard.h \
624         $(SRC)/keymap.h \
625         $(SRC)/process.h \
626         $(SRC)/syssignal.h \
627         $(SRC)/systime.h \
628         $(SRC)/systty.h \
629         $(SRC)/termhooks.h \
630         $(SRC)/w32.h \
631         $(SRC)/w32gui.h \
632         $(SRC)/w32heap.h \
633         $(SRC)/window.h
635 $(BLD)/eval.$(O) : \
636         $(SRC)/eval.c \
637         $(CONFIG_H) \
638         $(EMACS_ROOT)/nt/inc/sys/time.h \
639         $(SRC)/atimer.h \
640         $(SRC)/blockinput.h \
641         $(SRC)/coding.h \
642         $(SRC)/commands.h \
643         $(SRC)/dispextern.h \
644         $(SRC)/keyboard.h \
645         $(SRC)/systime.h \
646         $(SRC)/w32gui.h
648 $(BLD)/fileio.$(O) : \
649         $(SRC)/fileio.c \
650         $(CONFIG_H) \
651         $(EMACS_ROOT)/nt/inc/pwd.h \
652         $(EMACS_ROOT)/nt/inc/unistd.h \
653         $(EMACS_ROOT)/nt/inc/sys/time.h \
654         $(SRC)/atimer.h \
655         $(SRC)/blockinput.h \
656         $(SRC)/buffer.h \
657         $(SRC)/character.h \
658         $(SRC)/coding.h \
659         $(SRC)/commands.h \
660         $(SRC)/composite.h \
661         $(SRC)/dispextern.h \
662         $(SRC)/frame.h \
663         $(SRC)/intervals.h \
664         $(SRC)/systime.h \
665         $(SRC)/w32gui.h \
666         $(SRC)/window.h
668 $(BLD)/filelock.$(O) : \
669         $(SRC)/filelock.c \
670         $(CONFIG_H) \
671         $(EMACS_ROOT)/nt/inc/pwd.h \
672         $(EMACS_ROOT)/nt/inc/unistd.h \
673         $(EMACS_ROOT)/nt/inc/sys/file.h \
674         $(EMACS_ROOT)/nt/inc/sys/time.h \
675         $(SRC)/buffer.h \
676         $(SRC)/character.h \
677         $(SRC)/coding.h \
678         $(SRC)/systime.h
680 $(BLD)/filemode.$(O) : \
681         $(SRC)/filemode.c \
682         $(CONFIG_H)
684 $(BLD)/firstfile.$(O) : \
685         $(SRC)/firstfile.c \
686         $(CONFIG_H)
688 $(BLD)/floatfns.$(O) : \
689         $(SRC)/floatfns.c \
690         $(CONFIG_H) \
691         $(SRC)/syssignal.h
693 $(BLD)/fns.$(O) : \
694         $(SRC)/fns.c \
695         $(CONFIG_H) \
696         $(EMACS_ROOT)/nt/inc/langinfo.h \
697         $(EMACS_ROOT)/nt/inc/nl_types.h \
698         $(EMACS_ROOT)/nt/inc/unistd.h \
699         $(EMACS_ROOT)/nt/inc/sys/time.h \
700         $(SRC)/atimer.h \
701         $(SRC)/blockinput.h \
702         $(SRC)/buffer.h \
703         $(SRC)/character.h \
704         $(SRC)/coding.h \
705         $(SRC)/commands.h \
706         $(SRC)/composite.h \
707         $(SRC)/dispextern.h \
708         $(SRC)/frame.h \
709         $(SRC)/intervals.h \
710         $(SRC)/keyboard.h \
711         $(SRC)/keymap.h \
712         $(SRC)/md5.h \
713         $(SRC)/systime.h \
714         $(SRC)/w32gui.h \
715         $(SRC)/window.h
717 $(BLD)/font.$(O) : \
718         $(SRC)/font.c \
719         $(CONFIG_H) \
720         $(SRC)/buffer.h \
721         $(SRC)/ccl.h \
722         $(SRC)/character.h \
723         $(SRC)/charset.h \
724         $(SRC)/composite.h \
725         $(SRC)/dispextern.h \
726         $(SRC)/font.h \
727         $(SRC)/fontset.h \
728         $(SRC)/frame.h \
729         $(SRC)/w32gui.h \
730         $(SRC)/w32term.h \
731         $(SRC)/window.h
733 $(BLD)/fontset.$(O) : \
734         $(SRC)/fontset.c \
735         $(CONFIG_H) \
736         $(EMACS_ROOT)/nt/inc/sys/time.h \
737         $(SRC)/atimer.h \
738         $(SRC)/blockinput.h \
739         $(SRC)/buffer.h \
740         $(SRC)/ccl.h \
741         $(SRC)/character.h \
742         $(SRC)/charset.h \
743         $(SRC)/coding.h \
744         $(SRC)/composite.h \
745         $(SRC)/dispextern.h \
746         $(SRC)/font.h \
747         $(SRC)/fontset.h \
748         $(SRC)/frame.h \
749         $(SRC)/intervals.h \
750         $(SRC)/keyboard.h \
751         $(SRC)/systime.h \
752         $(SRC)/termhooks.h \
753         $(SRC)/w32gui.h \
754         $(SRC)/w32term.h \
755         $(SRC)/window.h
757 $(BLD)/frame.$(O) : \
758         $(SRC)/frame.c \
759         $(CONFIG_H) \
760         $(EMACS_ROOT)/nt/inc/sys/time.h \
761         $(SRC)/atimer.h \
762         $(SRC)/blockinput.h \
763         $(SRC)/buffer.h \
764         $(SRC)/ccl.h \
765         $(SRC)/character.h \
766         $(SRC)/coding.h \
767         $(SRC)/commands.h \
768         $(SRC)/dispextern.h \
769         $(SRC)/font.h \
770         $(SRC)/fontset.h \
771         $(SRC)/frame.h \
772         $(SRC)/keyboard.h \
773         $(SRC)/systime.h \
774         $(SRC)/termchar.h \
775         $(SRC)/termhooks.h \
776         $(SRC)/w32gui.h \
777         $(SRC)/w32term.h \
778         $(SRC)/window.h
780 $(BLD)/fringe.$(O) : \
781         $(SRC)/fringe.c \
782         $(CONFIG_H) \
783         $(EMACS_ROOT)/nt/inc/sys/time.h \
784         $(SRC)/atimer.h \
785         $(SRC)/blockinput.h \
786         $(SRC)/buffer.h \
787         $(SRC)/dispextern.h \
788         $(SRC)/frame.h \
789         $(SRC)/systime.h \
790         $(SRC)/termhooks.h \
791         $(SRC)/w32gui.h \
792         $(SRC)/window.h
794 $(BLD)/gmalloc.$(O) : \
795         $(SRC)/gmalloc.c \
796         $(CONFIG_H) \
797         $(EMACS_ROOT)/nt/inc/unistd.h \
798         $(SRC)/getpagesize.h
800 $(BLD)/image.$(O) : \
801         $(SRC)/image.c \
802         $(CONFIG_H) \
803         $(EMACS_ROOT)/nt/inc/unistd.h \
804         $(EMACS_ROOT)/nt/inc/sys/time.h \
805         $(SRC)/atimer.h \
806         $(SRC)/blockinput.h \
807         $(SRC)/ccl.h \
808         $(SRC)/character.h \
809         $(SRC)/coding.h \
810         $(SRC)/dispextern.h \
811         $(SRC)/epaths.h \
812         $(SRC)/font.h \
813         $(SRC)/frame.h \
814         $(SRC)/systime.h \
815         $(SRC)/termhooks.h \
816         $(SRC)/w32gui.h \
817         $(SRC)/w32term.h \
818         $(SRC)/window.h
820 $(BLD)/indent.$(O) : \
821         $(SRC)/indent.c \
822         $(CONFIG_H) \
823         $(EMACS_ROOT)/nt/inc/sys/time.h \
824         $(SRC)/buffer.h \
825         $(SRC)/category.h \
826         $(SRC)/character.h \
827         $(SRC)/coding.h \
828         $(SRC)/composite.h \
829         $(SRC)/dispextern.h \
830         $(SRC)/disptab.h \
831         $(SRC)/frame.h \
832         $(SRC)/indent.h \
833         $(SRC)/intervals.h \
834         $(SRC)/keyboard.h \
835         $(SRC)/region-cache.h \
836         $(SRC)/systime.h \
837         $(SRC)/termchar.h \
838         $(SRC)/termopts.h \
839         $(SRC)/w32gui.h \
840         $(SRC)/window.h
842 $(BLD)/insdel.$(O) : \
843         $(SRC)/insdel.c \
844         $(CONFIG_H) \
845         $(EMACS_ROOT)/nt/inc/sys/time.h \
846         $(SRC)/atimer.h \
847         $(SRC)/blockinput.h \
848         $(SRC)/buffer.h \
849         $(SRC)/character.h \
850         $(SRC)/composite.h \
851         $(SRC)/dispextern.h \
852         $(SRC)/intervals.h \
853         $(SRC)/region-cache.h \
854         $(SRC)/systime.h \
855         $(SRC)/w32gui.h \
856         $(SRC)/window.h
858 $(BLD)/intervals.$(O) : \
859         $(SRC)/intervals.c \
860         $(CONFIG_H) \
861         $(EMACS_ROOT)/nt/inc/sys/time.h \
862         $(SRC)/buffer.h \
863         $(SRC)/coding.h \
864         $(SRC)/composite.h \
865         $(SRC)/dispextern.h \
866         $(SRC)/intervals.h \
867         $(SRC)/keyboard.h \
868         $(SRC)/keymap.h \
869         $(SRC)/puresize.h \
870         $(SRC)/systime.h \
871         $(SRC)/w32gui.h
873 $(BLD)/keyboard.$(O) : \
874         $(SRC)/keyboard.c \
875         $(CONFIG_H) \
876         $(EMACS_ROOT)/nt/inc/unistd.h \
877         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
878         $(EMACS_ROOT)/nt/inc/sys/time.h \
879         $(SRC)/atimer.h \
880         $(SRC)/blockinput.h \
881         $(SRC)/buffer.h \
882         $(SRC)/character.h \
883         $(SRC)/coding.h \
884         $(SRC)/commands.h \
885         $(SRC)/composite.h \
886         $(SRC)/dispextern.h \
887         $(SRC)/disptab.h \
888         $(SRC)/frame.h \
889         $(SRC)/intervals.h \
890         $(SRC)/keyboard.h \
891         $(SRC)/keymap.h \
892         $(SRC)/macros.h \
893         $(SRC)/puresize.h \
894         $(SRC)/syntax.h \
895         $(SRC)/syssignal.h \
896         $(SRC)/systime.h \
897         $(SRC)/termchar.h \
898         $(SRC)/termhooks.h \
899         $(SRC)/termopts.h \
900         $(SRC)/w32gui.h \
901         $(SRC)/w32term.h \
902         $(SRC)/window.h
904 $(BLD)/keymap.$(O) : \
905         $(SRC)/keymap.c \
906         $(CONFIG_H) \
907         $(EMACS_ROOT)/nt/inc/sys/time.h \
908         $(SRC)/atimer.h \
909         $(SRC)/blockinput.h \
910         $(SRC)/buffer.h \
911         $(SRC)/character.h \
912         $(SRC)/charset.h \
913         $(SRC)/coding.h \
914         $(SRC)/commands.h \
915         $(SRC)/composite.h \
916         $(SRC)/dispextern.h \
917         $(SRC)/frame.h \
918         $(SRC)/intervals.h \
919         $(SRC)/keyboard.h \
920         $(SRC)/keymap.h \
921         $(SRC)/puresize.h \
922         $(SRC)/systime.h \
923         $(SRC)/termhooks.h \
924         $(SRC)/w32gui.h \
925         $(SRC)/window.h
927 $(BLD)/lastfile.$(O) : \
928         $(SRC)/lastfile.c \
929         $(CONFIG_H)
931 $(BLD)/lread.$(O) : \
932         $(SRC)/lread.c \
933         $(CONFIG_H) \
934         $(EMACS_ROOT)/nt/inc/unistd.h \
935         $(EMACS_ROOT)/nt/inc/sys/file.h \
936         $(EMACS_ROOT)/nt/inc/sys/time.h \
937         $(SRC)/atimer.h \
938         $(SRC)/blockinput.h \
939         $(SRC)/buffer.h \
940         $(SRC)/character.h \
941         $(SRC)/charset.h \
942         $(SRC)/coding.h \
943         $(SRC)/commands.h \
944         $(SRC)/composite.h \
945         $(SRC)/dispextern.h \
946         $(SRC)/epaths.h \
947         $(SRC)/frame.h \
948         $(SRC)/intervals.h \
949         $(SRC)/keyboard.h \
950         $(SRC)/systime.h \
951         $(SRC)/termhooks.h \
952         $(SRC)/w32gui.h
954 $(BLD)/macros.$(O) : \
955         $(SRC)/macros.c \
956         $(CONFIG_H) \
957         $(EMACS_ROOT)/nt/inc/sys/time.h \
958         $(SRC)/buffer.h \
959         $(SRC)/coding.h \
960         $(SRC)/commands.h \
961         $(SRC)/dispextern.h \
962         $(SRC)/keyboard.h \
963         $(SRC)/macros.h \
964         $(SRC)/systime.h \
965         $(SRC)/w32gui.h \
966         $(SRC)/window.h
968 $(BLD)/marker.$(O) : \
969         $(SRC)/marker.c \
970         $(CONFIG_H) \
971         $(SRC)/buffer.h \
972         $(SRC)/character.h
974 $(BLD)/md5.$(O) : \
975         $(SRC)/md5.c \
976         $(CONFIG_H) \
977         $(SRC)/md5.h
979 $(BLD)/menu.$(O) : \
980         $(SRC)/menu.c \
981         $(CONFIG_H) \
982         $(EMACS_ROOT)/nt/inc/sys/time.h \
983         $(SRC)/atimer.h \
984         $(SRC)/blockinput.h \
985         $(SRC)/coding.h \
986         $(SRC)/dispextern.h \
987         $(SRC)/frame.h \
988         $(SRC)/keyboard.h \
989         $(SRC)/keymap.h \
990         $(SRC)/menu.h \
991         $(SRC)/systime.h \
992         $(SRC)/termhooks.h \
993         $(SRC)/w32gui.h \
994         $(SRC)/w32term.h
996 $(BLD)/minibuf.$(O) : \
997         $(SRC)/minibuf.c \
998         $(CONFIG_H) \
999         $(EMACS_ROOT)/nt/inc/sys/time.h \
1000         $(SRC)/buffer.h \
1001         $(SRC)/character.h \
1002         $(SRC)/coding.h \
1003         $(SRC)/commands.h \
1004         $(SRC)/composite.h \
1005         $(SRC)/dispextern.h \
1006         $(SRC)/frame.h \
1007         $(SRC)/intervals.h \
1008         $(SRC)/keyboard.h \
1009         $(SRC)/keymap.h \
1010         $(SRC)/syntax.h \
1011         $(SRC)/systime.h \
1012         $(SRC)/termhooks.h \
1013         $(SRC)/w32gui.h \
1014         $(SRC)/window.h
1016 $(BLD)/w32.$(O) : \
1017         $(SRC)/w32.c \
1018         $(CONFIG_H) \
1019         $(EMACS_ROOT)/nt/inc/grp.h \
1020         $(EMACS_ROOT)/nt/inc/pwd.h \
1021         $(EMACS_ROOT)/nt/inc/unistd.h \
1022         $(EMACS_ROOT)/nt/inc/sys/file.h \
1023         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1024         $(EMACS_ROOT)/nt/inc/sys/time.h \
1025         $(SRC)/coding.h \
1026         $(SRC)/dispextern.h \
1027         $(SRC)/ndir.h \
1028         $(SRC)/process.h \
1029         $(SRC)/systime.h \
1030         $(SRC)/w32.h \
1031         $(SRC)/w32gui.h \
1032         $(SRC)/w32heap.h
1034 $(BLD)/w32heap.$(O) : \
1035         $(SRC)/w32heap.c \
1036         $(CONFIG_H) \
1037         $(SRC)/w32heap.h
1039 $(BLD)/w32inevt.$(O) : \
1040         $(SRC)/w32inevt.c \
1041         $(CONFIG_H) \
1042         $(EMACS_ROOT)/nt/inc/sys/time.h \
1043         $(SRC)/atimer.h \
1044         $(SRC)/blockinput.h \
1045         $(SRC)/coding.h \
1046         $(SRC)/dispextern.h \
1047         $(SRC)/frame.h \
1048         $(SRC)/keyboard.h \
1049         $(SRC)/systime.h \
1050         $(SRC)/termhooks.h \
1051         $(SRC)/w32gui.h \
1052         $(SRC)/w32heap.h \
1053         $(SRC)/w32term.h
1055 $(BLD)/w32proc.$(O) : \
1056         $(SRC)/w32proc.c \
1057         $(CONFIG_H) \
1058         $(EMACS_ROOT)/nt/inc/langinfo.h \
1059         $(EMACS_ROOT)/nt/inc/nl_types.h \
1060         $(EMACS_ROOT)/nt/inc/unistd.h \
1061         $(EMACS_ROOT)/nt/inc/sys/file.h \
1062         $(EMACS_ROOT)/nt/inc/sys/time.h \
1063         $(SRC)/character.h \
1064         $(SRC)/coding.h \
1065         $(SRC)/dispextern.h \
1066         $(SRC)/process.h \
1067         $(SRC)/syssignal.h \
1068         $(SRC)/systime.h \
1069         $(SRC)/syswait.h \
1070         $(SRC)/w32.h \
1071         $(SRC)/w32gui.h \
1072         $(SRC)/w32heap.h \
1073         $(SRC)/w32term.h
1075 $(BLD)/w32console.$(O) : \
1076         $(SRC)/w32console.c \
1077         $(CONFIG_H) \
1078         $(SRC)/character.h \
1079         $(SRC)/coding.h \
1080         $(SRC)/dispextern.h \
1081         $(SRC)/disptab.h \
1082         $(SRC)/frame.h \
1083         $(SRC)/termchar.h \
1084         $(SRC)/termhooks.h \
1085         $(SRC)/w32gui.h \
1086         $(SRC)/w32inevt.h
1088 $(BLD)/print.$(O) : \
1089         $(SRC)/print.c \
1090         $(CONFIG_H) \
1091         $(EMACS_ROOT)/nt/inc/unistd.h \
1092         $(EMACS_ROOT)/nt/inc/sys/time.h \
1093         $(SRC)/atimer.h \
1094         $(SRC)/blockinput.h \
1095         $(SRC)/buffer.h \
1096         $(SRC)/ccl.h \
1097         $(SRC)/character.h \
1098         $(SRC)/charset.h \
1099         $(SRC)/coding.h \
1100         $(SRC)/composite.h \
1101         $(SRC)/dispextern.h \
1102         $(SRC)/font.h \
1103         $(SRC)/frame.h \
1104         $(SRC)/intervals.h \
1105         $(SRC)/keyboard.h \
1106         $(SRC)/process.h \
1107         $(SRC)/systime.h \
1108         $(SRC)/termchar.h \
1109         $(SRC)/termhooks.h \
1110         $(SRC)/w32gui.h \
1111         $(SRC)/window.h
1113 $(BLD)/process.$(O) : \
1114         $(SRC)/process.c \
1115         $(CONFIG_H) \
1116         $(EMACS_ROOT)/nt/inc/grp.h \
1117         $(EMACS_ROOT)/nt/inc/netdb.h \
1118         $(EMACS_ROOT)/nt/inc/pwd.h \
1119         $(EMACS_ROOT)/nt/inc/unistd.h \
1120         $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1121         $(EMACS_ROOT)/nt/inc/netinet/in.h \
1122         $(EMACS_ROOT)/nt/inc/sys/file.h \
1123         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1124         $(EMACS_ROOT)/nt/inc/sys/time.h \
1125         $(SRC)/atimer.h \
1126         $(SRC)/blockinput.h \
1127         $(SRC)/buffer.h \
1128         $(SRC)/character.h \
1129         $(SRC)/coding.h \
1130         $(SRC)/commands.h \
1131         $(SRC)/composite.h \
1132         $(SRC)/dispextern.h \
1133         $(SRC)/frame.h \
1134         $(SRC)/keyboard.h \
1135         $(SRC)/process.h \
1136         $(SRC)/sysselect.h \
1137         $(SRC)/syssignal.h \
1138         $(SRC)/systime.h \
1139         $(SRC)/systty.h \
1140         $(SRC)/syswait.h \
1141         $(SRC)/termhooks.h \
1142         $(SRC)/termopts.h \
1143         $(SRC)/w32.h \
1144         $(SRC)/w32gui.h \
1145         $(SRC)/window.h
1147 $(BLD)/ralloc.$(O) : \
1148         $(SRC)/ralloc.c \
1149         $(CONFIG_H) \
1150         $(EMACS_ROOT)/nt/inc/unistd.h \
1151         $(EMACS_ROOT)/nt/inc/sys/time.h \
1152         $(SRC)/atimer.h \
1153         $(SRC)/blockinput.h \
1154         $(SRC)/getpagesize.h \
1155         $(SRC)/systime.h
1157 $(BLD)/regex.$(O) : \
1158         $(SRC)/regex.c \
1159         $(CONFIG_H) \
1160         $(SRC)/buffer.h \
1161         $(SRC)/category.h \
1162         $(SRC)/character.h \
1163         $(SRC)/regex.h \
1164         $(SRC)/syntax.h
1166 $(BLD)/region-cache.$(O) : \
1167         $(SRC)/region-cache.c \
1168         $(CONFIG_H) \
1169         $(SRC)/buffer.h \
1170         $(SRC)/region-cache.h
1172 $(BLD)/scroll.$(O) : \
1173         $(SRC)/scroll.c \
1174         $(CONFIG_H) \
1175         $(EMACS_ROOT)/nt/inc/sys/time.h \
1176         $(SRC)/coding.h \
1177         $(SRC)/dispextern.h \
1178         $(SRC)/frame.h \
1179         $(SRC)/keyboard.h \
1180         $(SRC)/systime.h \
1181         $(SRC)/termchar.h \
1182         $(SRC)/termhooks.h \
1183         $(SRC)/w32gui.h \
1184         $(SRC)/window.h
1186 $(BLD)/search.$(O) : \
1187         $(SRC)/search.c \
1188         $(CONFIG_H) \
1189         $(EMACS_ROOT)/nt/inc/sys/time.h \
1190         $(SRC)/atimer.h \
1191         $(SRC)/blockinput.h \
1192         $(SRC)/buffer.h \
1193         $(SRC)/category.h \
1194         $(SRC)/character.h \
1195         $(SRC)/charset.h \
1196         $(SRC)/commands.h \
1197         $(SRC)/composite.h \
1198         $(SRC)/dispextern.h \
1199         $(SRC)/intervals.h \
1200         $(SRC)/regex.h \
1201         $(SRC)/region-cache.h \
1202         $(SRC)/syntax.h \
1203         $(SRC)/systime.h \
1204         $(SRC)/w32gui.h
1206 $(BLD)/sound.$(O) : \
1207         $(SRC)/sound.c \
1208         $(CONFIG_H) \
1209         $(EMACS_ROOT)/nt/inc/unistd.h \
1210         $(EMACS_ROOT)/nt/inc/sys/time.h \
1211         $(SRC)/atimer.h \
1212         $(SRC)/dispextern.h \
1213         $(SRC)/syssignal.h \
1214         $(SRC)/systime.h \
1215         $(SRC)/w32gui.h
1217 $(BLD)/strftime.$(O) : \
1218         $(SRC)/strftime.c \
1219         $(CONFIG_H) \
1220         $(EMACS_ROOT)/nt/inc/sys/time.h
1222 $(BLD)/syntax.$(O) : \
1223         $(SRC)/syntax.c \
1224         $(CONFIG_H) \
1225         $(SRC)/buffer.h \
1226         $(SRC)/category.h \
1227         $(SRC)/character.h \
1228         $(SRC)/commands.h \
1229         $(SRC)/composite.h \
1230         $(SRC)/dispextern.h \
1231         $(SRC)/intervals.h \
1232         $(SRC)/keymap.h \
1233         $(SRC)/regex.h \
1234         $(SRC)/syntax.h \
1235         $(SRC)/w32gui.h
1237 $(BLD)/sysdep.$(O) : \
1238         $(SRC)/sysdep.c \
1239         $(CONFIG_H) \
1240         $(EMACS_ROOT)/nt/inc/netdb.h \
1241         $(EMACS_ROOT)/nt/inc/unistd.h \
1242         $(EMACS_ROOT)/nt/inc/sys/file.h \
1243         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1244         $(EMACS_ROOT)/nt/inc/sys/socket.h \
1245         $(EMACS_ROOT)/nt/inc/sys/time.h \
1246         $(SRC)/atimer.h \
1247         $(SRC)/blockinput.h \
1248         $(SRC)/cm.h \
1249         $(SRC)/coding.h \
1250         $(SRC)/dispextern.h \
1251         $(SRC)/frame.h \
1252         $(SRC)/keyboard.h \
1253         $(SRC)/process.h \
1254         $(SRC)/syssignal.h \
1255         $(SRC)/systime.h \
1256         $(SRC)/systty.h \
1257         $(SRC)/syswait.h \
1258         $(SRC)/termchar.h \
1259         $(SRC)/termhooks.h \
1260         $(SRC)/termopts.h \
1261         $(SRC)/w32.h \
1262         $(SRC)/w32gui.h \
1263         $(SRC)/window.h
1265 $(BLD)/term.$(O) : \
1266         $(SRC)/term.c \
1267         $(CONFIG_H) \
1268         $(EMACS_ROOT)/nt/inc/unistd.h \
1269         $(EMACS_ROOT)/nt/inc/sys/file.h \
1270         $(EMACS_ROOT)/nt/inc/sys/time.h \
1271         $(SRC)/atimer.h \
1272         $(SRC)/blockinput.h \
1273         $(SRC)/buffer.h \
1274         $(SRC)/character.h \
1275         $(SRC)/charset.h \
1276         $(SRC)/cm.h \
1277         $(SRC)/coding.h \
1278         $(SRC)/composite.h \
1279         $(SRC)/dispextern.h \
1280         $(SRC)/disptab.h \
1281         $(SRC)/frame.h \
1282         $(SRC)/intervals.h \
1283         $(SRC)/keyboard.h \
1284         $(SRC)/keymap.h \
1285         $(SRC)/syssignal.h \
1286         $(SRC)/systime.h \
1287         $(SRC)/systty.h \
1288         $(SRC)/termchar.h \
1289         $(SRC)/termhooks.h \
1290         $(SRC)/termopts.h \
1291         $(SRC)/w32gui.h \
1292         $(SRC)/window.h
1294 $(BLD)/termcap.$(O) : \
1295         $(SRC)/termcap.c \
1296         $(CONFIG_H) \
1297         $(EMACS_ROOT)/nt/inc/unistd.h \
1298         $(EMACS_ROOT)/nt/inc/sys/file.h
1300 $(BLD)/terminal.$(O) : \
1301         $(SRC)/terminal.c \
1302         $(CONFIG_H) \
1303         $(EMACS_ROOT)/nt/inc/sys/time.h \
1304         $(SRC)/charset.h \
1305         $(SRC)/coding.h \
1306         $(SRC)/dispextern.h \
1307         $(SRC)/frame.h \
1308         $(SRC)/keyboard.h \
1309         $(SRC)/systime.h \
1310         $(SRC)/termchar.h \
1311         $(SRC)/termhooks.h \
1312         $(SRC)/w32gui.h
1314 $(BLD)/textprop.$(O) : \
1315         $(SRC)/textprop.c \
1316         $(CONFIG_H) \
1317         $(SRC)/buffer.h \
1318         $(SRC)/composite.h \
1319         $(SRC)/dispextern.h \
1320         $(SRC)/intervals.h \
1321         $(SRC)/w32gui.h \
1322         $(SRC)/window.h
1324 $(BLD)/tparam.$(O) : \
1325         $(SRC)/tparam.c \
1326         $(CONFIG_H)
1328 $(BLD)/undo.$(O) : \
1329         $(SRC)/undo.c \
1330         $(CONFIG_H) \
1331         $(SRC)/buffer.h \
1332         $(SRC)/commands.h \
1333         $(SRC)/dispextern.h \
1334         $(SRC)/w32gui.h \
1335         $(SRC)/window.h
1337 $(BLD)/unexw32.$(O) : \
1338         $(SRC)/unexw32.c \
1339         $(CONFIG_H) \
1340         $(SRC)/w32heap.h
1342 $(BLD)/vm-limit.$(O) : \
1343         $(SRC)/vm-limit.c \
1344         $(CONFIG_H) \
1345         $(SRC)/mem-limits.h
1347 $(BLD)/window.$(O) : \
1348         $(SRC)/window.c \
1349         $(CONFIG_H) \
1350         $(EMACS_ROOT)/nt/inc/sys/time.h \
1351         $(SRC)/atimer.h \
1352         $(SRC)/blockinput.h \
1353         $(SRC)/buffer.h \
1354         $(SRC)/coding.h \
1355         $(SRC)/commands.h \
1356         $(SRC)/composite.h \
1357         $(SRC)/dispextern.h \
1358         $(SRC)/disptab.h \
1359         $(SRC)/frame.h \
1360         $(SRC)/indent.h \
1361         $(SRC)/intervals.h \
1362         $(SRC)/keyboard.h \
1363         $(SRC)/keymap.h \
1364         $(SRC)/systime.h \
1365         $(SRC)/termchar.h \
1366         $(SRC)/termhooks.h \
1367         $(SRC)/w32gui.h \
1368         $(SRC)/w32term.h \
1369         $(SRC)/window.h
1371 $(BLD)/xdisp.$(O) : \
1372         $(SRC)/xdisp.c \
1373         $(CONFIG_H) \
1374         $(EMACS_ROOT)/nt/inc/unistd.h \
1375         $(EMACS_ROOT)/nt/inc/sys/time.h \
1376         $(SRC)/atimer.h \
1377         $(SRC)/blockinput.h \
1378         $(SRC)/buffer.h \
1379         $(SRC)/ccl.h \
1380         $(SRC)/character.h \
1381         $(SRC)/charset.h \
1382         $(SRC)/coding.h \
1383         $(SRC)/commands.h \
1384         $(SRC)/composite.h \
1385         $(SRC)/dispextern.h \
1386         $(SRC)/disptab.h \
1387         $(SRC)/font.h \
1388         $(SRC)/fontset.h \
1389         $(SRC)/frame.h \
1390         $(SRC)/indent.h \
1391         $(SRC)/intervals.h \
1392         $(SRC)/keyboard.h \
1393         $(SRC)/keymap.h \
1394         $(SRC)/macros.h \
1395         $(SRC)/process.h \
1396         $(SRC)/region-cache.h \
1397         $(SRC)/systime.h \
1398         $(SRC)/termchar.h \
1399         $(SRC)/termhooks.h \
1400         $(SRC)/w32gui.h \
1401         $(SRC)/w32term.h \
1402         $(SRC)/window.h
1404 $(BLD)/xfaces.$(O) : \
1405         $(SRC)/xfaces.c \
1406         $(CONFIG_H) \
1407         $(EMACS_ROOT)/nt/inc/sys/time.h \
1408         $(SRC)/atimer.h \
1409         $(SRC)/blockinput.h \
1410         $(SRC)/buffer.h \
1411         $(SRC)/ccl.h \
1412         $(SRC)/character.h \
1413         $(SRC)/charset.h \
1414         $(SRC)/coding.h \
1415         $(SRC)/composite.h \
1416         $(SRC)/dispextern.h \
1417         $(SRC)/font.h \
1418         $(SRC)/fontset.h \
1419         $(SRC)/frame.h \
1420         $(SRC)/intervals.h \
1421         $(SRC)/keyboard.h \
1422         $(SRC)/systime.h \
1423         $(SRC)/termchar.h \
1424         $(SRC)/termhooks.h \
1425         $(SRC)/w32gui.h \
1426         $(SRC)/w32term.h \
1427         $(SRC)/window.h
1429 $(BLD)/w32fns.$(O) : \
1430         $(SRC)/w32fns.c \
1431         $(CONFIG_H) \
1432         $(EMACS_ROOT)/nt/inc/sys/time.h \
1433         $(SRC)/atimer.h \
1434         $(SRC)/blockinput.h \
1435         $(SRC)/buffer.h \
1436         $(SRC)/ccl.h \
1437         $(SRC)/character.h \
1438         $(SRC)/charset.h \
1439         $(SRC)/coding.h \
1440         $(SRC)/composite.h \
1441         $(SRC)/dispextern.h \
1442         $(SRC)/epaths.h \
1443         $(SRC)/font.h \
1444         $(SRC)/fontset.h \
1445         $(SRC)/frame.h \
1446         $(SRC)/intervals.h \
1447         $(SRC)/keyboard.h \
1448         $(SRC)/systime.h \
1449         $(SRC)/termhooks.h \
1450         $(SRC)/w32font.h \
1451         $(SRC)/w32gui.h \
1452         $(SRC)/w32heap.h \
1453         $(SRC)/w32term.h \
1454         $(SRC)/window.h
1456 $(BLD)/w32menu.$(O) : \
1457         $(SRC)/w32menu.c \
1458         $(CONFIG_H) \
1459         $(EMACS_ROOT)/nt/inc/sys/time.h \
1460         $(SRC)/atimer.h \
1461         $(SRC)/blockinput.h \
1462         $(SRC)/buffer.h \
1463         $(SRC)/character.h \
1464         $(SRC)/charset.h \
1465         $(SRC)/coding.h \
1466         $(SRC)/dispextern.h \
1467         $(SRC)/frame.h \
1468         $(SRC)/keyboard.h \
1469         $(SRC)/keymap.h \
1470         $(SRC)/systime.h \
1471         $(SRC)/termhooks.h \
1472         $(SRC)/w32gui.h \
1473         $(SRC)/w32term.h \
1474         $(SRC)/window.h
1476 $(BLD)/w32term.$(O) : \
1477         $(SRC)/w32term.c \
1478         $(CONFIG_H) \
1479         $(EMACS_ROOT)/nt/inc/unistd.h \
1480         $(EMACS_ROOT)/nt/inc/sys/time.h \
1481         $(SRC)/atimer.h \
1482         $(SRC)/blockinput.h \
1483         $(SRC)/buffer.h \
1484         $(SRC)/ccl.h \
1485         $(SRC)/character.h \
1486         $(SRC)/charset.h \
1487         $(SRC)/coding.h \
1488         $(SRC)/composite.h \
1489         $(SRC)/dispextern.h \
1490         $(SRC)/disptab.h \
1491         $(SRC)/font.h \
1492         $(SRC)/fontset.h \
1493         $(SRC)/frame.h \
1494         $(SRC)/intervals.h \
1495         $(SRC)/keyboard.h \
1496         $(SRC)/keymap.h \
1497         $(SRC)/process.h \
1498         $(SRC)/systime.h \
1499         $(SRC)/systty.h \
1500         $(SRC)/termchar.h \
1501         $(SRC)/termhooks.h \
1502         $(SRC)/termopts.h \
1503         $(SRC)/w32font.h \
1504         $(SRC)/w32gui.h \
1505         $(SRC)/w32heap.h \
1506         $(SRC)/w32term.h \
1507         $(SRC)/window.h
1509 $(BLD)/w32select.$(O) : \
1510         $(SRC)/w32select.c \
1511         $(CONFIG_H) \
1512         $(EMACS_ROOT)/nt/inc/sys/time.h \
1513         $(SRC)/atimer.h \
1514         $(SRC)/blockinput.h \
1515         $(SRC)/character.h \
1516         $(SRC)/charset.h \
1517         $(SRC)/coding.h \
1518         $(SRC)/composite.h \
1519         $(SRC)/keyboard.h \
1520         $(SRC)/systime.h \
1521         $(SRC)/w32gui.h \
1522         $(SRC)/w32heap.h \
1523         $(SRC)/w32term.h
1525 $(BLD)/w32reg.$(O) : \
1526         $(SRC)/w32reg.c \
1527         $(CONFIG_H) \
1528         $(EMACS_ROOT)/nt/inc/sys/time.h \
1529         $(SRC)/atimer.h \
1530         $(SRC)/blockinput.h \
1531         $(SRC)/systime.h \
1532         $(SRC)/w32gui.h \
1533         $(SRC)/w32term.h
1535 $(BLD)/w32xfns.$(O) : \
1536         $(SRC)/w32xfns.c \
1537         $(CONFIG_H) \
1538         $(EMACS_ROOT)/nt/inc/sys/time.h \
1539         $(SRC)/atimer.h \
1540         $(SRC)/blockinput.h \
1541         $(SRC)/charset.h \
1542         $(SRC)/coding.h \
1543         $(SRC)/dispextern.h \
1544         $(SRC)/fontset.h \
1545         $(SRC)/frame.h \
1546         $(SRC)/keyboard.h \
1547         $(SRC)/systime.h \
1548         $(SRC)/w32gui.h \
1549         $(SRC)/w32term.h
1551 $(BLD)/w32font.$(O) : \
1552         $(SRC)/w32font.c \
1553         $(CONFIG_H) \
1554         $(SRC)/ccl.h \
1555         $(SRC)/character.h \
1556         $(SRC)/charset.h \
1557         $(SRC)/dispextern.h \
1558         $(SRC)/font.h \
1559         $(SRC)/fontset.h \
1560         $(SRC)/frame.h \
1561         $(SRC)/w32font.h \
1562         $(SRC)/w32gui.h \
1563         $(SRC)/w32term.h
1565 $(BLD)/w32uniscribe.$(O) : \
1566         $(SRC)/w32uniscribe.c \
1567         $(CONFIG_H) \
1568         $(SRC)/ccl.h \
1569         $(SRC)/character.h \
1570         $(SRC)/charset.h \
1571         $(SRC)/composite.h \
1572         $(SRC)/dispextern.h \
1573         $(SRC)/font.h \
1574         $(SRC)/fontset.h \
1575         $(SRC)/frame.h \
1576         $(SRC)/w32font.h \
1577         $(SRC)/w32gui.h \
1578         $(SRC)/w32term.h
1580 # Each object file depends on stamp_BLD, because in parallel builds we must
1581 # make sure $(BLD) exists before starting compilations.
1583 $(OBJ0) $(OBJ1) $(WIN32OBJ) $(FONTOBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD