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