Merge from emacs--rel--22
[emacs.git] / src / makefile.w32-in
blob6f3cab4e07f62fb4a81701f7ecc353975f6410e9
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)/coding.$(O)                      \
121         $(BLD)/category.$(O)                    \
122         $(BLD)/ccl.$(O)                         \
123         $(BLD)/fontset.$(O)                     \
124         $(BLD)/fringe.$(O)                      \
125         $(BLD)/image.$(O)                       \
126         $(BLD)/terminal.$(O)
128 WIN32OBJ = $(BLD)/w32term.$(O)                  \
129            $(BLD)/w32xfns.$(O)                  \
130            $(BLD)/w32fns.$(O)                   \
131            $(BLD)/xfaces.$(O)                   \
132            $(BLD)/w32select.$(O)                \
133            $(BLD)/w32menu.$(O)                  \
134            $(BLD)/w32reg.$(O)                   \
135            $(BLD)/w32bdf.$(O)
137 LIBS =  $(TLIB0)        \
138         $(TLIB1)        \
139         $(TLIBW32)      \
140         $(TLASTLIB)     \
141         $(WINMM)        \
142         $(ADVAPI32)     \
143         $(GDI32)        \
144         $(COMDLG32)     \
145         $(USER32)       \
146         $(MPR)          \
147         $(SHELL32)      \
148         $(WINSPOOL)     \
149         $(OLE32)        \
150         $(COMCTL32)     \
151         $(libc)
154 # Build the executable and dump it.
156 all:            $(ALL)
159 # The dumped executable
161 emacs:          stamp_BLD $(EMACS)
162 $(EMACS):       $(DOC) $(TEMACS)
163         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
164         -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
167 # The undumped executable
168 # Note the extra post-link step to insert a static preload heap section.
169 # If preload runs out of memory, increase the last argument to addsection
170 # (it is the preload heap size in MB).
172 temacs:         stamp_BLD $(TEMACS)
173 $(TEMACS):      $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
174                   ../nt/$(BLD)/addsection.exe
175         $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
176         "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
177         echo $(OBJ0) > $(BLD)/buildobj.lst
178         echo $(OBJ1) >> $(BLD)/buildobj.lst
179         echo $(WIN32OBJ) >> $(BLD)/buildobj.lst
181 bootstrap: bootstrap-emacs
184 # Build a temacs with a sufficiently large PURESIZE to load the
185 # Lisp files from loadup.el in source form.
187 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
188 #          this can break with GNU Make 3.81 and later if sh.exe is used.
189 bootstrap-temacs:
190         $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
193 # Dump an Emacs executable named bootstrap-emacs containing the
194 # files from loadup.el in source form.
196 bootstrap-emacs: bootstrap-temacs
197         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
198         - mkdir "../bin"
199         $(CP) $(EMACS) ../bin
202 # Force recompile of files that depend on PURESIZE
204 bootstrap-clean:
205         - $(DEL) $(BLD)/alloc.$(O)
206         - $(DEL) $(BLD)/data.$(O)
207         - $(DEL) $(BLD)/intervals.$(O)
208         - $(DEL) $(BLD)/keyboard.$(O)
209         - $(DEL) $(BLD)/keymap.$(O)
212 # The resource file.  NT 3.10 requires the use of cvtres; even though
213 # it is not necessary on later versions, it is still ok to use it.
215 $(TRES): ../nt/emacs.rc stamp_BLD
216         $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
219 # Build the library.  Split up the build into two phases...otherwise we
220 # run out of command line space.
222 $(TLIB0):       $(OBJ0)
223         - $(DEL) $@
224         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
225 $(TLIB1):       $(OBJ1)
226         - $(DEL) $@
227         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
228 $(TLIBW32):     $(WIN32OBJ)
229         - $(DEL) $@
230         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
233 # Place lastfile.$(O) in its own library so that it can be loaded after
234 # the source libraries but before any system libraries.  Doing so defines
235 # the end of Emacs' data section portably across compilers and systems.
237 $(TLASTLIB):    $(BLD)/lastfile.$(O)
238         - $(DEL) $@
239         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
242 # Assuming INSTALL_DIR is defined, build and install emacs in it.
244 install:        $(ALL)
245         - mkdir "$(INSTALL_DIR)/bin"
246         $(CP) $(EMACS) $(INSTALL_DIR)/bin
249 # Maintenance
251 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
252 # remove precious files if it happens to match their short 8+3 aliases.
253 clean:
254         - $(DEL) "s/*.h~" "m/*.h~"
255         - $(DEL) $(COMPILER_TEMP_FILES)
256         - $(DEL_TREE) $(OBJDIR)
257         - $(DEL) stamp_BLD
259 distclean:      clean
260         - $(DEL) config.h epaths.h
262 cleanall:       clean
263         - $(DEL_TREE) obj
264         - $(DEL_TREE) obj-spd
265         - $(DEL_TREE) oo
266         - $(DEL_TREE) oo-spd
268 ### DEPENDENCIES ###
270 EMACS_ROOT      = ..
271 SRC             = .
273 $(BLD)/alloc.$(O) : \
274         $(SRC)/alloc.c \
275         $(EMACS_ROOT)/src/s/ms-w32.h \
276         $(EMACS_ROOT)/src/m/intel386.h \
277         $(EMACS_ROOT)/src/config.h \
278         $(SRC)/blockinput.h \
279         $(SRC)/buffer.h \
280         $(SRC)/charset.h \
281         $(SRC)/composite.h \
282         $(SRC)/dispextern.h \
283         $(SRC)/frame.h \
284         $(SRC)/intervals.h \
285         $(SRC)/keyboard.h \
286         $(SRC)/process.h \
287         $(SRC)/puresize.h \
288         $(SRC)/syssignal.h \
289         $(SRC)/w32bdf.h \
290         $(SRC)/w32gui.h \
291         $(SRC)/window.h
293 $(BLD)/atimer.$(O) : \
294         $(SRC)/atimer.c \
295         $(EMACS_ROOT)/src/s/ms-w32.h \
296         $(EMACS_ROOT)/src/m/intel386.h \
297         $(EMACS_ROOT)/src/config.h \
298         $(SRC)/s/ms-w32.h \
299         $(SRC)/m/intel386.h \
300         $(SRC)/config.h \
301         $(SRC)/atimer.h \
302         $(SRC)/blockinput.h \
303         $(SRC)/syssignal.h \
304         $(SRC)/systime.h
306 $(BLD)/buffer.$(O) : \
307         $(SRC)/buffer.c \
308         $(EMACS_ROOT)/nt/inc/sys/param.h \
309         $(EMACS_ROOT)/src/s/ms-w32.h \
310         $(EMACS_ROOT)/src/m/intel386.h \
311         $(EMACS_ROOT)/src/config.h \
312         $(SRC)/blockinput.h \
313         $(SRC)/buffer.h \
314         $(SRC)/charset.h \
315         $(SRC)/commands.h \
316         $(SRC)/composite.h \
317         $(SRC)/dispextern.h \
318         $(SRC)/frame.h \
319         $(SRC)/indent.h \
320         $(SRC)/intervals.h \
321         $(SRC)/keyboard.h \
322         $(SRC)/keymap.h \
323         $(SRC)/region-cache.h \
324         $(SRC)/w32bdf.h \
325         $(SRC)/w32gui.h \
326         $(SRC)/window.h
328 $(BLD)/bytecode.$(O) : \
329         $(SRC)/bytecode.c \
330         $(EMACS_ROOT)/src/s/ms-w32.h \
331         $(EMACS_ROOT)/src/m/intel386.h \
332         $(EMACS_ROOT)/src/config.h \
333         $(SRC)/buffer.h \
334         $(SRC)/charset.h \
335         $(SRC)/syntax.h \
336         $(SRC)/window.h
338 $(BLD)/callint.$(O) : \
339         $(SRC)/callint.c \
340         $(EMACS_ROOT)/src/s/ms-w32.h \
341         $(EMACS_ROOT)/src/m/intel386.h \
342         $(EMACS_ROOT)/src/config.h \
343         $(SRC)/buffer.h \
344         $(SRC)/commands.h \
345         $(SRC)/dispextern.h \
346         $(SRC)/keyboard.h \
347         $(SRC)/keymap.h \
348         $(SRC)/w32bdf.h \
349         $(SRC)/w32gui.h \
350         $(SRC)/window.h
352 $(BLD)/callproc.$(O) : \
353         $(SRC)/callproc.c \
354         $(EMACS_ROOT)/src/s/ms-w32.h \
355         $(EMACS_ROOT)/src/m/intel386.h \
356         $(EMACS_ROOT)/src/config.h \
357         $(EMACS_ROOT)/nt/inc/sys/param.h \
358         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
359         $(EMACS_ROOT)/nt/inc/sys/file.h \
360         $(SRC)/buffer.h \
361         $(SRC)/ccl.h \
362         $(SRC)/charset.h \
363         $(SRC)/coding.h \
364         $(SRC)/commands.h \
365         $(SRC)/composite.h \
366         $(SRC)/epaths.h \
367         $(SRC)/process.h \
368         $(SRC)/syssignal.h \
369         $(SRC)/systty.h \
370         $(SRC)/frame.h \
371         $(SRC)/termhooks.h \
372         $(SRC)/w32.h
374 $(BLD)/casefiddle.$(O) : \
375         $(SRC)/casefiddle.c \
376         $(EMACS_ROOT)/src/s/ms-w32.h \
377         $(EMACS_ROOT)/src/m/intel386.h \
378         $(EMACS_ROOT)/src/config.h \
379         $(SRC)/buffer.h \
380         $(SRC)/charset.h \
381         $(SRC)/commands.h \
382         $(SRC)/composite.h \
383         $(SRC)/keymap.h \
384         $(SRC)/syntax.h
386 $(BLD)/casetab.$(O) : \
387         $(SRC)/casetab.c \
388         $(EMACS_ROOT)/src/s/ms-w32.h \
389         $(EMACS_ROOT)/src/m/intel386.h \
390         $(EMACS_ROOT)/src/config.h \
391         $(SRC)/buffer.h \
392         $(SRC)/charset.h
394 $(BLD)/category.$(O) : \
395         $(SRC)/category.c \
396         $(EMACS_ROOT)/src/s/ms-w32.h \
397         $(EMACS_ROOT)/src/m/intel386.h \
398         $(EMACS_ROOT)/src/config.h \
399         $(SRC)/buffer.h \
400         $(SRC)/category.h \
401         $(SRC)/charset.h \
402         $(SRC)/keymap.h
404 $(BLD)/ccl.$(O) : \
405         $(SRC)/ccl.c \
406         $(EMACS_ROOT)/src/s/ms-w32.h \
407         $(EMACS_ROOT)/src/m/intel386.h \
408         $(EMACS_ROOT)/src/config.h \
409         $(SRC)/ccl.h \
410         $(SRC)/charset.h \
411         $(SRC)/coding.h
413 $(BLD)/charset.$(O) : \
414         $(SRC)/charset.c \
415         $(EMACS_ROOT)/src/s/ms-w32.h \
416         $(EMACS_ROOT)/src/m/intel386.h \
417         $(EMACS_ROOT)/src/config.h \
418         $(SRC)/buffer.h \
419         $(SRC)/ccl.h \
420         $(SRC)/charset.h \
421         $(SRC)/coding.h \
422         $(SRC)/composite.h \
423         $(SRC)/disptab.h
425 $(BLD)/cm.$(O) : \
426         $(SRC)/cm.c \
427         $(EMACS_ROOT)/src/s/ms-w32.h \
428         $(EMACS_ROOT)/src/m/intel386.h \
429         $(EMACS_ROOT)/src/config.h \
430         $(SRC)/cm.h \
431         $(SRC)/termhooks.h
433 $(BLD)/cmds.$(O) : \
434         $(SRC)/cmds.c \
435         $(EMACS_ROOT)/src/s/ms-w32.h \
436         $(EMACS_ROOT)/src/m/intel386.h \
437         $(EMACS_ROOT)/src/config.h \
438         $(SRC)/buffer.h \
439         $(SRC)/charset.h \
440         $(SRC)/commands.h \
441         $(SRC)/dispextern.h \
442         $(SRC)/keyboard.h \
443         $(SRC)/keymap.h \
444         $(SRC)/syntax.h \
445         $(SRC)/w32bdf.h \
446         $(SRC)/w32gui.h \
447         $(SRC)/window.h
449 $(BLD)/coding.$(O) : \
450         $(SRC)/coding.c \
451         $(EMACS_ROOT)/src/s/ms-w32.h \
452         $(EMACS_ROOT)/src/m/intel386.h \
453         $(EMACS_ROOT)/src/config.h \
454         $(SRC)/buffer.h \
455         $(SRC)/ccl.h \
456         $(SRC)/charset.h \
457         $(SRC)/coding.h \
458         $(SRC)/composite.h \
459         $(SRC)/dispextern.h \
460         $(SRC)/intervals.h \
461         $(SRC)/frame.h \
462         $(SRC)/termhooks.h \
463         $(SRC)/w32bdf.h \
464         $(SRC)/w32gui.h \
465         $(SRC)/window.h
467 $(BLD)/composite.$(O) : \
468         $(SRC)/composite.c \
469         $(EMACS_ROOT)/src/s/ms-w32.h \
470         $(EMACS_ROOT)/src/m/intel386.h \
471         $(EMACS_ROOT)/src/config.h \
472         $(SRC)/buffer.h \
473         $(SRC)/charset.h \
474         $(SRC)/composite.h \
475         $(SRC)/dispextern.h \
476         $(SRC)/intervals.h \
477         $(SRC)/w32bdf.h \
478         $(SRC)/w32gui.h
480 $(BLD)/data.$(O) : \
481         $(SRC)/data.c \
482         $(EMACS_ROOT)/src/s/ms-w32.h \
483         $(EMACS_ROOT)/src/m/intel386.h \
484         $(EMACS_ROOT)/src/config.h \
485         $(SRC)/buffer.h \
486         $(SRC)/charset.h \
487         $(SRC)/frame.h \
488         $(SRC)/keyboard.h \
489         $(SRC)/puresize.h \
490         $(SRC)/syssignal.h \
491         $(SRC)/termhooks.h
493 $(BLD)/dired.$(O) : \
494         $(SRC)/dired.c \
495         $(EMACS_ROOT)/src/s/ms-w32.h \
496         $(EMACS_ROOT)/src/m/intel386.h \
497         $(EMACS_ROOT)/src/config.h \
498         $(SRC)/buffer.h \
499         $(SRC)/ccl.h \
500         $(SRC)/charset.h \
501         $(SRC)/coding.h \
502         $(SRC)/commands.h \
503         $(SRC)/ndir.h \
504         $(SRC)/regex.h \
505         $(SRC)/systime.h
507 $(BLD)/dispnew.$(O) : \
508         $(SRC)/dispnew.c \
509         $(EMACS_ROOT)/src/s/ms-w32.h \
510         $(EMACS_ROOT)/src/m/intel386.h \
511         $(EMACS_ROOT)/src/config.h \
512         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
513         $(EMACS_ROOT)/nt/inc/sys/file.h \
514         $(SRC)/atimer.h \
515         $(SRC)/blockinput.h \
516         $(SRC)/buffer.h \
517         $(SRC)/charset.h \
518         $(SRC)/cm.h \
519         $(SRC)/commands.h \
520         $(SRC)/composite.h \
521         $(SRC)/dispextern.h \
522         $(SRC)/disptab.h \
523         $(SRC)/frame.h \
524         $(SRC)/indent.h \
525         $(SRC)/intervals.h \
526         $(SRC)/keyboard.h \
527         $(SRC)/process.h \
528         $(SRC)/syssignal.h \
529         $(SRC)/systime.h \
530         $(SRC)/termchar.h \
531         $(SRC)/termhooks.h \
532         $(SRC)/termopts.h \
533         $(SRC)/w32bdf.h \
534         $(SRC)/w32gui.h \
535         $(SRC)/w32term.h \
536         $(SRC)/window.h
538 $(BLD)/doc.$(O) : \
539         $(SRC)/doc.c \
540         $(EMACS_ROOT)/src/s/ms-w32.h \
541         $(EMACS_ROOT)/src/m/intel386.h \
542         $(EMACS_ROOT)/src/config.h \
543         $(EMACS_ROOT)/nt/inc/sys/file.h \
544         $(SRC)/buffer.h \
545         $(SRC)/charset.h \
546         $(SRC)/keyboard.h \
547         $(SRC)/keymap.h
549 $(BLD)/doprnt.$(O) : \
550         $(SRC)/doprnt.c \
551         $(EMACS_ROOT)/src/s/ms-w32.h \
552         $(EMACS_ROOT)/src/m/intel386.h \
553         $(EMACS_ROOT)/src/config.h \
554         $(SRC)/charset.c
556 $(BLD)/editfns.$(O) : \
557         $(SRC)/editfns.c \
558         $(EMACS_ROOT)/src/s/ms-w32.h \
559         $(EMACS_ROOT)/src/m/intel386.h \
560         $(EMACS_ROOT)/src/config.h \
561         $(EMACS_ROOT)/nt/inc/pwd.h \
562         $(SRC)/buffer.h \
563         $(SRC)/ccl.h \
564         $(SRC)/charset.h \
565         $(SRC)/coding.h \
566         $(SRC)/composite.h \
567         $(SRC)/dispextern.h \
568         $(SRC)/frame.h \
569         $(SRC)/intervals.h \
570         $(SRC)/systime.h \
571         $(SRC)/w32bdf.h \
572         $(SRC)/w32gui.h \
573         $(SRC)/window.h
575 $(BLD)/emacs.$(O) : \
576         $(SRC)/emacs.c \
577         $(EMACS_ROOT)/src/s/ms-w32.h \
578         $(EMACS_ROOT)/src/m/intel386.h \
579         $(EMACS_ROOT)/src/config.h \
580         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
581         $(EMACS_ROOT)/nt/inc/sys/file.h \
582         $(SRC)/atimer.h \
583         $(SRC)/blockinput.h \
584         $(SRC)/buffer.h \
585         $(SRC)/commands.h \
586         $(SRC)/composite.h \
587         $(SRC)/dispextern.h \
588         $(SRC)/intervals.h \
589         $(SRC)/keyboard.h \
590         $(SRC)/keymap.h \
591         $(SRC)/process.h \
592         $(SRC)/syssignal.h \
593         $(SRC)/systime.h \
594         $(SRC)/systty.h \
595         $(SRC)/termhooks.h \
596         $(SRC)/w32bdf.h \
597         $(SRC)/w32gui.h \
598         $(SRC)/w32heap.h \
599         $(SRC)/window.h
601 $(BLD)/eval.$(O) : \
602         $(SRC)/eval.c \
603         $(EMACS_ROOT)/src/s/ms-w32.h \
604         $(EMACS_ROOT)/src/m/intel386.h \
605         $(EMACS_ROOT)/src/config.h \
606         $(SRC)/atimer.h \
607         $(SRC)/blockinput.h \
608         $(SRC)/commands.h \
609         $(SRC)/dispextern.h \
610         $(SRC)/keyboard.h \
611         $(SRC)/systime.h \
612         $(SRC)/w32bdf.h \
613         $(SRC)/w32gui.h
615 $(BLD)/fileio.$(O) : \
616         $(SRC)/fileio.c \
617         $(EMACS_ROOT)/src/s/ms-w32.h \
618         $(EMACS_ROOT)/src/m/intel386.h \
619         $(EMACS_ROOT)/src/config.h \
620         $(EMACS_ROOT)/nt/inc/pwd.h \
621         $(EMACS_ROOT)/nt/inc/sys/param.h \
622         $(EMACS_ROOT)/nt/inc/sys/file.h \
623         $(SRC)/buffer.h \
624         $(SRC)/ccl.h \
625         $(SRC)/charset.h \
626         $(SRC)/coding.h \
627         $(SRC)/commands.h \
628         $(SRC)/composite.h \
629         $(SRC)/dispextern.h \
630         $(SRC)/intervals.h \
631         $(SRC)/systime.h \
632         $(SRC)/w32bdf.h \
633         $(SRC)/w32gui.h \
634         $(SRC)/window.h
636 $(BLD)/filelock.$(O) : \
637         $(SRC)/filelock.c \
638         $(EMACS_ROOT)/src/s/ms-w32.h \
639         $(EMACS_ROOT)/src/m/intel386.h \
640         $(EMACS_ROOT)/src/config.h \
641         $(EMACS_ROOT)/nt/inc/pwd.h \
642         $(EMACS_ROOT)/nt/inc/sys/file.h \
643         $(EMACS_ROOT)/src/epaths.h \
644         $(SRC)/buffer.h \
645         $(SRC)/ccl.h \
646         $(SRC)/charset.h \
647         $(SRC)/coding.h \
648         $(SRC)/systime.h
650 $(BLD)/filemode.$(O) : \
651         $(SRC)/filemode.c \
652         $(EMACS_ROOT)/src/s/ms-w32.h \
653         $(EMACS_ROOT)/src/m/intel386.h \
654         $(EMACS_ROOT)/src/config.h \
655         $(SRC)/s/ms-w32.h \
656         $(SRC)/m/intel386.h \
657         $(SRC)/config.h
659 $(BLD)/firstfile.$(O) : \
660         $(SRC)/firstfile.c \
661         $(EMACS_ROOT)/src/s/ms-w32.h \
662         $(EMACS_ROOT)/src/m/intel386.h \
663         $(EMACS_ROOT)/src/config.h
665 $(BLD)/floatfns.$(O) : \
666         $(SRC)/floatfns.c \
667         $(EMACS_ROOT)/src/s/ms-w32.h \
668         $(EMACS_ROOT)/src/m/intel386.h \
669         $(EMACS_ROOT)/src/config.h \
670         $(SRC)/syssignal.h
672 $(BLD)/fns.$(O) : \
673         $(SRC)/fns.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/langinfo.h \
678         $(EMACS_ROOT)/nt/inc/nl_types.h \
679         $(SRC)/atimer.h \
680         $(SRC)/blockinput.h \
681         $(SRC)/buffer.h \
682         $(SRC)/ccl.h \
683         $(SRC)/charset.h \
684         $(SRC)/coding.h \
685         $(SRC)/commands.h \
686         $(SRC)/composite.h \
687         $(SRC)/dispextern.h \
688         $(SRC)/frame.h \
689         $(SRC)/intervals.h \
690         $(SRC)/keyboard.h \
691         $(SRC)/keymap.h \
692         $(SRC)/md5.h \
693         $(SRC)/systime.h \
694         $(SRC)/termhooks.h \
695         $(SRC)/w32bdf.h \
696         $(SRC)/w32gui.h \
697         $(SRC)/window.h
699 $(BLD)/fontset.$(O) : \
700         $(SRC)/fontset.c \
701         $(EMACS_ROOT)/src/s/ms-w32.h \
702         $(EMACS_ROOT)/src/m/intel386.h \
703         $(EMACS_ROOT)/src/config.h \
704         $(SRC)/buffer.h \
705         $(SRC)/ccl.h \
706         $(SRC)/charset.h \
707         $(SRC)/dispextern.h \
708         $(SRC)/fontset.h \
709         $(SRC)/frame.h \
710         $(SRC)/keyboard.h \
711         $(SRC)/termhooks.h \
712         $(SRC)/w32bdf.h \
713         $(SRC)/w32gui.h \
714         $(SRC)/window.h
716 $(BLD)/frame.$(O) : \
717         $(SRC)/frame.c \
718         $(EMACS_ROOT)/src/s/ms-w32.h \
719         $(EMACS_ROOT)/src/m/intel386.h \
720         $(EMACS_ROOT)/src/config.h \
721         $(SRC)/atimer.h \
722         $(SRC)/blockinput.h \
723         $(SRC)/buffer.h \
724         $(SRC)/charset.h \
725         $(SRC)/commands.h \
726         $(SRC)/dispextern.h \
727         $(SRC)/fontset.h \
728         $(SRC)/frame.h \
729         $(SRC)/keyboard.h \
730         $(SRC)/systime.h \
731         $(SRC)/termchar.h \
732         $(SRC)/termhooks.h \
733         $(SRC)/w32bdf.h \
734         $(SRC)/w32gui.h \
735         $(SRC)/w32term.h \
736         $(SRC)/window.h
738 $(BLD)/fringe.$(O) : \
739         $(SRC)/fringe.c \
740         $(EMACS_ROOT)/src/s/ms-w32.h \
741         $(EMACS_ROOT)/src/m/intel386.h \
742         $(EMACS_ROOT)/src/config.h \
743         $(SRC)/atimer.h \
744         $(SRC)/blockinput.h \
745         $(SRC)/buffer.h \
746         $(SRC)/dispextern.h \
747         $(SRC)/frame.h \
748         $(SRC)/systime.h \
749         $(SRC)/w32bdf.h \
750         $(SRC)/w32gui.h \
751         $(SRC)/window.h
753 $(BLD)/gmalloc.$(O) : \
754         $(SRC)/gmalloc.c \
755         $(EMACS_ROOT)/src/s/ms-w32.h \
756         $(EMACS_ROOT)/src/m/intel386.h \
757         $(EMACS_ROOT)/src/config.h \
758         $(EMACS_ROOT)/nt/inc/sys/param.h \
759         $(SRC)/getpagesize.h
761 $(BLD)/image.$(O): \
762         $(SRC)/image.c \
763         $(EMACS_ROOT)/src/s/ms-w32.h \
764         $(EMACS_ROOT)/src/m/intel386.h \
765         $(EMACS_ROOT)/src/config.h \
766         $(SRC)/atimer.h \
767         $(SRC)/blockinput.h \
768         $(SRC)/dispextern.h \
769         $(SRC)/epaths.h \
770         $(SRC)/frame.h \
771         $(SRC)/systime.h \
772         $(SRC)/termhooks.h \
773         $(SRC)/w32bdf.h \
774         $(SRC)/w32gui.h \
775         $(SRC)/w32heap.h \
776         $(SRC)/w32term.h \
777         $(SRC)/window.h
779 $(BLD)/indent.$(O) : \
780         $(SRC)/indent.c \
781         $(EMACS_ROOT)/src/s/ms-w32.h \
782         $(EMACS_ROOT)/src/m/intel386.h \
783         $(EMACS_ROOT)/src/config.h \
784         $(SRC)/buffer.h \
785         $(SRC)/category.h \
786         $(SRC)/charset.h \
787         $(SRC)/composite.h \
788         $(SRC)/dispextern.h \
789         $(SRC)/disptab.h \
790         $(SRC)/frame.h \
791         $(SRC)/indent.h \
792         $(SRC)/intervals.h \
793         $(SRC)/keyboard.h \
794         $(SRC)/region-cache.h \
795         $(SRC)/termchar.h \
796         $(SRC)/termopts.h \
797         $(SRC)/w32bdf.h \
798         $(SRC)/w32gui.h \
799         $(SRC)/window.h
801 $(BLD)/insdel.$(O) : \
802         $(SRC)/insdel.c \
803         $(EMACS_ROOT)/src/s/ms-w32.h \
804         $(EMACS_ROOT)/src/m/intel386.h \
805         $(EMACS_ROOT)/src/config.h \
806         $(SRC)/atimer.h \
807         $(SRC)/blockinput.h \
808         $(SRC)/buffer.h \
809         $(SRC)/charset.h \
810         $(SRC)/composite.h \
811         $(SRC)/dispextern.h \
812         $(SRC)/intervals.h \
813         $(SRC)/region-cache.h \
814         $(SRC)/systime.h \
815         $(SRC)/w32bdf.h \
816         $(SRC)/w32gui.h \
817         $(SRC)/window.h
819 $(BLD)/intervals.$(O) : \
820         $(SRC)/intervals.c \
821         $(EMACS_ROOT)/src/s/ms-w32.h \
822         $(EMACS_ROOT)/src/m/intel386.h \
823         $(EMACS_ROOT)/src/config.h \
824         $(SRC)/buffer.h \
825         $(SRC)/composite.h \
826         $(SRC)/dispextern.h \
827         $(SRC)/intervals.h \
828         $(SRC)/keyboard.h \
829         $(SRC)/keymap.h \
830         $(SRC)/puresize.h \
831         $(SRC)/w32bdf.h \
832         $(SRC)/w32gui.h
834 $(BLD)/keyboard.$(O) : \
835         $(SRC)/keyboard.c \
836         $(EMACS_ROOT)/src/s/ms-w32.h \
837         $(EMACS_ROOT)/src/m/intel386.h \
838         $(EMACS_ROOT)/src/config.h \
839         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
840         $(EMACS_ROOT)/nt/inc/sys/file.h \
841         $(SRC)/atimer.h \
842         $(SRC)/blockinput.h \
843         $(SRC)/buffer.h \
844         $(SRC)/charset.h \
845         $(SRC)/commands.h \
846         $(SRC)/composite.h \
847         $(SRC)/dispextern.h \
848         $(SRC)/disptab.h \
849         $(SRC)/frame.h \
850         $(SRC)/intervals.h \
851         $(SRC)/keyboard.h \
852         $(SRC)/keymap.h \
853         $(SRC)/macros.h \
854         $(SRC)/puresize.h \
855         $(SRC)/syntax.h \
856         $(SRC)/syssignal.h \
857         $(SRC)/systime.h \
858         $(SRC)/systty.h \
859         $(SRC)/termchar.h \
860         $(SRC)/termhooks.h \
861         $(SRC)/termopts.h \
862         $(SRC)/w32bdf.h \
863         $(SRC)/w32gui.h \
864         $(SRC)/w32term.h \
865         $(SRC)/window.h
867 $(BLD)/keymap.$(O) : \
868         $(SRC)/keymap.c \
869         $(EMACS_ROOT)/src/s/ms-w32.h \
870         $(EMACS_ROOT)/src/m/intel386.h \
871         $(EMACS_ROOT)/src/config.h \
872         $(SRC)/atimer.h \
873         $(SRC)/blockinput.h \
874         $(SRC)/buffer.h \
875         $(SRC)/charset.h \
876         $(SRC)/commands.h \
877         $(SRC)/composite.h \
878         $(SRC)/dispextern.h \
879         $(SRC)/intervals.h \
880         $(SRC)/keyboard.h \
881         $(SRC)/keymap.h \
882         $(SRC)/puresize.h \
883         $(SRC)/systime.h \
884         $(SRC)/termhooks.h \
885         $(SRC)/w32bdf.h \
886         $(SRC)/w32gui.h
888 $(BLD)/lastfile.$(O) : \
889         $(SRC)/lastfile.c \
890         $(EMACS_ROOT)/src/s/ms-w32.h \
891         $(EMACS_ROOT)/src/m/intel386.h \
892         $(EMACS_ROOT)/src/config.h
894 $(BLD)/lread.$(O) : \
895         $(SRC)/lread.c \
896         $(EMACS_ROOT)/src/s/ms-w32.h \
897         $(EMACS_ROOT)/src/m/intel386.h \
898         $(EMACS_ROOT)/src/config.h \
899         $(EMACS_ROOT)/nt/inc/sys/file.h \
900         $(EMACS_ROOT)/src/epaths.h \
901         $(SRC)/blockinput.h \
902         $(SRC)/buffer.h \
903         $(SRC)/ccl.h \
904         $(SRC)/charset.h \
905         $(SRC)/coding.h \
906         $(SRC)/commands.h \
907         $(SRC)/composite.h \
908         $(SRC)/dispextern.h \
909         $(SRC)/intervals.h \
910         $(SRC)/keyboard.h \
911         $(SRC)/termhooks.h \
912         $(SRC)/w32bdf.h \
913         $(SRC)/w32gui.h
915 $(BLD)/macros.$(O) : \
916         $(SRC)/macros.c \
917         $(EMACS_ROOT)/src/s/ms-w32.h \
918         $(EMACS_ROOT)/src/m/intel386.h \
919         $(EMACS_ROOT)/src/config.h \
920         $(SRC)/buffer.h \
921         $(SRC)/commands.h \
922         $(SRC)/dispextern.h \
923         $(SRC)/keyboard.h \
924         $(SRC)/macros.h \
925         $(SRC)/w32bdf.h \
926         $(SRC)/w32gui.h \
927         $(SRC)/window.h
929 $(BLD)/marker.$(O) : \
930         $(SRC)/marker.c \
931         $(EMACS_ROOT)/src/s/ms-w32.h \
932         $(EMACS_ROOT)/src/m/intel386.h \
933         $(EMACS_ROOT)/src/config.h \
934         $(SRC)/buffer.h \
935         $(SRC)/charset.h
937 $(BLD)/md5.$(O) : \
938         $(SRC)/md5.c \
939         $(SRC)/md5.h
941 $(BLD)/minibuf.$(O) : \
942         $(SRC)/minibuf.c \
943         $(EMACS_ROOT)/src/s/ms-w32.h \
944         $(EMACS_ROOT)/src/m/intel386.h \
945         $(EMACS_ROOT)/src/config.h \
946         $(SRC)/buffer.h \
947         $(SRC)/charset.h \
948         $(SRC)/commands.h \
949         $(SRC)/composite.h \
950         $(SRC)/dispextern.h \
951         $(SRC)/frame.h \
952         $(SRC)/intervals.h \
953         $(SRC)/keyboard.h \
954         $(SRC)/keymap.h \
955         $(SRC)/syntax.h \
956         $(SRC)/termhooks.h \
957         $(SRC)/w32bdf.h \
958         $(SRC)/w32gui.h \
959         $(SRC)/window.h
961 $(BLD)/w32.$(O) : \
962         $(SRC)/w32.c \
963         $(EMACS_ROOT)/nt/inc/pwd.h \
964         $(SRC)/s/ms-w32.h \
965         $(SRC)/m/intel386.h \
966         $(SRC)/config.h \
967         $(SRC)/ndir.h \
968         $(SRC)/systime.h \
969         $(SRC)/w32.h \
970         $(SRC)/w32heap.h
972 $(BLD)/w32heap.$(O) : \
973         $(SRC)/w32heap.c \
974         $(SRC)/s/ms-w32.h \
975         $(SRC)/m/intel386.h \
976         $(SRC)/config.h \
977         $(SRC)/w32heap.h
979 $(BLD)/w32inevt.$(O) : \
980         $(SRC)/w32inevt.c \
981         $(SRC)/s/ms-w32.h \
982         $(SRC)/m/intel386.h \
983         $(SRC)/config.h \
984         $(SRC)/atimer.h \
985         $(SRC)/blockinput.h \
986         $(SRC)/frame.h \
987         $(SRC)/keyboard.h \
988         $(SRC)/systime.h \
989         $(SRC)/termhooks.h \
990         $(SRC)/w32bdf.h \
991         $(SRC)/w32gui.h \
992         $(SRC)/w32heap.h \
993         $(SRC)/w32term.h
995 $(BLD)/w32proc.$(O) : \
996         $(SRC)/w32proc.c \
997         $(SRC)/s/ms-w32.h \
998         $(SRC)/m/intel386.h \
999         $(EMACS_ROOT)/nt/inc/langinfo.h \
1000         $(EMACS_ROOT)/nt/inc/nl_types.h \
1001         $(SRC)/config.h \
1002         $(SRC)/process.h \
1003         $(SRC)/syssignal.h \
1004         $(SRC)/systime.h \
1005         $(SRC)/syswait.h \
1006         $(SRC)/w32.h \
1007         $(SRC)/w32bdf.h \
1008         $(SRC)/w32gui.h \
1009         $(SRC)/w32heap.h \
1010         $(SRC)/w32term.h
1012 $(BLD)/w32console.$(O) : \
1013         $(SRC)/w32console.c \
1014         $(SRC)/s/ms-w32.h \
1015         $(SRC)/m/intel386.h \
1016         $(SRC)/ccl.h \
1017         $(SRC)/charset.h \
1018         $(SRC)/coding.h \
1019         $(SRC)/config.h \
1020         $(SRC)/dispextern.h \
1021         $(SRC)/disptab.h \
1022         $(SRC)/frame.h \
1023         $(SRC)/termhooks.h \
1024         $(SRC)/w32bdf.h \
1025         $(SRC)/w32gui.h \
1026         $(SRC)/w32inevt.h
1028 $(BLD)/print.$(O) : \
1029         $(SRC)/print.c \
1030         $(EMACS_ROOT)/src/s/ms-w32.h \
1031         $(EMACS_ROOT)/src/m/intel386.h \
1032         $(EMACS_ROOT)/src/config.h \
1033         $(SRC)/buffer.h \
1034         $(SRC)/charset.h \
1035         $(SRC)/composite.h \
1036         $(SRC)/dispextern.h \
1037         $(SRC)/frame.h \
1038         $(SRC)/intervals.h \
1039         $(SRC)/keyboard.h \
1040         $(SRC)/process.h \
1041         $(SRC)/termchar.h \
1042         $(SRC)/w32bdf.h \
1043         $(SRC)/w32gui.h \
1044         $(SRC)/window.h
1046 $(BLD)/process.$(O) : \
1047         $(SRC)/process.c \
1048         $(EMACS_ROOT)/src/s/ms-w32.h \
1049         $(EMACS_ROOT)/src/m/intel386.h \
1050         $(EMACS_ROOT)/src/config.h \
1051         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1052         $(EMACS_ROOT)/nt/inc/sys/file.h \
1053         $(SRC)/atimer.h \
1054         $(SRC)/blockinput.h \
1055         $(SRC)/buffer.h \
1056         $(SRC)/ccl.h \
1057         $(SRC)/charset.h \
1058         $(SRC)/coding.h \
1059         $(SRC)/commands.h \
1060         $(SRC)/composite.h \
1061         $(SRC)/dispextern.h \
1062         $(SRC)/frame.h \
1063         $(SRC)/keyboard.h \
1064         $(SRC)/process.h \
1065         $(SRC)/sysselect.h \
1066         $(SRC)/syssignal.h \
1067         $(SRC)/systime.h \
1068         $(SRC)/systty.h \
1069         $(SRC)/syswait.h \
1070         $(SRC)/termhooks.h \
1071         $(SRC)/termopts.h \
1072         $(SRC)/w32bdf.h \
1073         $(SRC)/w32gui.h \
1074         $(SRC)/window.h
1076 $(BLD)/ralloc.$(O) : \
1077         $(SRC)/ralloc.c \
1078         $(EMACS_ROOT)/src/s/ms-w32.h \
1079         $(EMACS_ROOT)/src/m/intel386.h \
1080         $(EMACS_ROOT)/src/config.h \
1081         $(EMACS_ROOT)/nt/inc/sys/param.h \
1082         $(SRC)/s/ms-w32.h \
1083         $(SRC)/m/intel386.h \
1084         $(SRC)/config.h \
1085         $(SRC)/getpagesize.h
1087 $(BLD)/regex.$(O) : \
1088         $(SRC)/regex.c \
1089         $(EMACS_ROOT)/src/s/ms-w32.h \
1090         $(EMACS_ROOT)/src/m/intel386.h \
1091         $(EMACS_ROOT)/src/config.h \
1092         $(SRC)/s/ms-w32.h \
1093         $(SRC)/m/intel386.h \
1094         $(SRC)/buffer.h \
1095         $(SRC)/category.h \
1096         $(SRC)/charset.h \
1097         $(SRC)/config.h \
1098         $(SRC)/regex.h \
1099         $(SRC)/syntax.h
1101 $(BLD)/region-cache.$(O) : \
1102         $(SRC)/region-cache.c \
1103         $(EMACS_ROOT)/src/s/ms-w32.h \
1104         $(EMACS_ROOT)/src/m/intel386.h \
1105         $(EMACS_ROOT)/src/config.h \
1106         $(SRC)/buffer.h \
1107         $(SRC)/region-cache.h
1109 $(BLD)/scroll.$(O) : \
1110         $(SRC)/scroll.c \
1111         $(EMACS_ROOT)/src/s/ms-w32.h \
1112         $(EMACS_ROOT)/src/m/intel386.h \
1113         $(EMACS_ROOT)/src/config.h \
1114         $(SRC)/dispextern.h \
1115         $(SRC)/frame.h \
1116         $(SRC)/keyboard.h \
1117         $(SRC)/termchar.h \
1118         $(SRC)/termhooks.h \
1119         $(SRC)/w32bdf.h \
1120         $(SRC)/w32gui.h \
1121         $(SRC)/window.h
1123 $(BLD)/search.$(O) : \
1124         $(SRC)/search.c \
1125         $(EMACS_ROOT)/src/s/ms-w32.h \
1126         $(EMACS_ROOT)/src/m/intel386.h \
1127         $(EMACS_ROOT)/src/config.h \
1128         $(SRC)/atimer.h \
1129         $(SRC)/blockinput.h \
1130         $(SRC)/buffer.h \
1131         $(SRC)/category.h \
1132         $(SRC)/charset.h \
1133         $(SRC)/commands.h \
1134         $(SRC)/composite.h \
1135         $(SRC)/dispextern.h \
1136         $(SRC)/intervals.h \
1137         $(SRC)/regex.h \
1138         $(SRC)/region-cache.h \
1139         $(SRC)/syntax.h \
1140         $(SRC)/systime.h \
1141         $(SRC)/w32bdf.h \
1142         $(SRC)/w32gui.h
1144 $(BLD)/sound.$(O) : \
1145         $(SRC)/sound.c \
1146         $(SRC)/lisp.h \
1147         $(SRC)/dispextern.h \
1148         $(SRC)/atimer.h \
1149         $(SRC)/syssignal.h
1151 $(BLD)/strftime.$(O) : \
1152         $(SRC)/strftime.c \
1153         $(EMACS_ROOT)/src/s/ms-w32.h \
1154         $(EMACS_ROOT)/src/m/intel386.h \
1155         $(EMACS_ROOT)/src/config.h
1157 $(BLD)/syntax.$(O) : \
1158         $(SRC)/syntax.c \
1159         $(EMACS_ROOT)/src/s/ms-w32.h \
1160         $(EMACS_ROOT)/src/m/intel386.h \
1161         $(EMACS_ROOT)/src/config.h \
1162         $(SRC)/buffer.h \
1163         $(SRC)/category.h \
1164         $(SRC)/charset.h \
1165         $(SRC)/commands.h \
1166         $(SRC)/composite.h \
1167         $(SRC)/dispextern.h \
1168         $(SRC)/intervals.h \
1169         $(SRC)/keymap.h \
1170         $(SRC)/syntax.h \
1171         $(SRC)/w32bdf.h \
1172         $(SRC)/w32gui.h
1174 $(BLD)/sysdep.$(O) : \
1175         $(SRC)/sysdep.c \
1176         $(EMACS_ROOT)/src/s/ms-w32.h \
1177         $(EMACS_ROOT)/src/m/intel386.h \
1178         $(EMACS_ROOT)/src/config.h \
1179         $(EMACS_ROOT)/nt/inc/sys/param.h \
1180         $(EMACS_ROOT)/nt/inc/sys/file.h \
1181         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1182         $(EMACS_ROOT)/nt/inc/sys/file.h \
1183         $(SRC)/atimer.h \
1184         $(SRC)/blockinput.h \
1185         $(SRC)/cm.h \
1186         $(SRC)/dispextern.h \
1187         $(SRC)/frame.h \
1188         $(SRC)/keyboard.h \
1189         $(SRC)/ndir.h \
1190         $(SRC)/process.h \
1191         $(SRC)/sysselect.h \
1192         $(SRC)/syssignal.h \
1193         $(SRC)/systime.h \
1194         $(SRC)/systty.h \
1195         $(SRC)/syswait.h \
1196         $(SRC)/termchar.h \
1197         $(SRC)/termhooks.h \
1198         $(SRC)/termopts.h \
1199         $(SRC)/w32bdf.h \
1200         $(SRC)/w32gui.h \
1201         $(SRC)/window.h
1203 $(BLD)/term.$(O) : \
1204         $(SRC)/term.c \
1205         $(EMACS_ROOT)/src/s/ms-w32.h \
1206         $(EMACS_ROOT)/src/m/intel386.h \
1207         $(EMACS_ROOT)/src/config.h \
1208         $(SRC)/ccl.h \
1209         $(SRC)/charset.h \
1210         $(SRC)/cm.h \
1211         $(SRC)/coding.h \
1212         $(SRC)/dispextern.h \
1213         $(SRC)/disptab.h \
1214         $(SRC)/frame.h \
1215         $(SRC)/keyboard.h \
1216         $(SRC)/keymap.h \
1217         $(SRC)/termchar.h \
1218         $(SRC)/termhooks.h \
1219         $(SRC)/termopts.h \
1220         $(SRC)/w32bdf.h \
1221         $(SRC)/w32gui.h \
1222         $(SRC)/window.h
1224 $(BLD)/termcap.$(O) : \
1225         $(SRC)/termcap.c \
1226         $(EMACS_ROOT)/src/s/ms-w32.h \
1227         $(EMACS_ROOT)/src/m/intel386.h \
1228         $(EMACS_ROOT)/src/config.h \
1229         $(EMACS_ROOT)/nt/inc/sys/file.h
1231 $(BLD)/terminal.$(O) : \
1232         $(SRC)/terminal.c \
1233         $(EMACS_ROOT)/src/s/ms-w32.h \
1234         $(EMACS_ROOT)/src/m/intel386.h \
1235         $(EMACS_ROOT)/src/config.h \
1236         $(SRC)/charset.h \
1237         $(SRC)/coding.h \
1238         $(SRC)/frame.h \
1239         $(SRC)/keyboard.h \
1240         $(SRC)/termchar.h \
1241         $(SRC)/termhooks.h
1243 $(BLD)/textprop.$(O) : \
1244         $(SRC)/textprop.c \
1245         $(EMACS_ROOT)/src/s/ms-w32.h \
1246         $(EMACS_ROOT)/src/m/intel386.h \
1247         $(EMACS_ROOT)/src/config.h \
1248         $(SRC)/buffer.h \
1249         $(SRC)/composite.h \
1250         $(SRC)/dispextern.h \
1251         $(SRC)/intervals.h \
1252         $(SRC)/w32bdf.h \
1253         $(SRC)/w32gui.h \
1254         $(SRC)/window.h
1256 $(BLD)/tparam.$(O) : \
1257         $(SRC)/tparam.c \
1258         $(EMACS_ROOT)/src/s/ms-w32.h \
1259         $(EMACS_ROOT)/src/m/intel386.h \
1260         $(EMACS_ROOT)/src/config.h
1262 $(BLD)/undo.$(O) : \
1263         $(SRC)/undo.c \
1264         $(EMACS_ROOT)/src/s/ms-w32.h \
1265         $(EMACS_ROOT)/src/m/intel386.h \
1266         $(EMACS_ROOT)/src/config.h \
1267         $(SRC)/buffer.h \
1268         $(SRC)/commands.h
1270 $(BLD)/unexw32.$(O) : \
1271         $(SRC)/unexw32.c \
1272         $(EMACS_ROOT)/src/s/ms-w32.h \
1273         $(EMACS_ROOT)/src/m/intel386.h \
1274         $(EMACS_ROOT)/src/config.h \
1275         $(SRC)/w32heap.h
1277 $(BLD)/vm-limit.$(O) : \
1278         $(SRC)/vm-limit.c \
1279         $(EMACS_ROOT)/src/s/ms-w32.h \
1280         $(EMACS_ROOT)/src/m/intel386.h \
1281         $(EMACS_ROOT)/src/config.h \
1282         $(SRC)/mem-limits.h
1284 $(BLD)/window.$(O) : \
1285         $(SRC)/window.c \
1286         $(EMACS_ROOT)/src/s/ms-w32.h \
1287         $(EMACS_ROOT)/src/m/intel386.h \
1288         $(EMACS_ROOT)/src/config.h \
1289         $(SRC)/atimer.h \
1290         $(SRC)/blockinput.h \
1291         $(SRC)/buffer.h \
1292         $(SRC)/commands.h \
1293         $(SRC)/composite.h \
1294         $(SRC)/dispextern.h \
1295         $(SRC)/disptab.h \
1296         $(SRC)/frame.h \
1297         $(SRC)/indent.h \
1298         $(SRC)/intervals.h \
1299         $(SRC)/keyboard.h \
1300         $(SRC)/keymap.h \
1301         $(SRC)/systime.h \
1302         $(SRC)/termchar.h \
1303         $(SRC)/w32bdf.h \
1304         $(SRC)/w32gui.h \
1305         $(SRC)/w32term.h \
1306         $(SRC)/window.h
1308 $(BLD)/xdisp.$(O) : \
1309         $(SRC)/xdisp.c \
1310         $(EMACS_ROOT)/src/s/ms-w32.h \
1311         $(EMACS_ROOT)/src/m/intel386.h \
1312         $(EMACS_ROOT)/src/config.h \
1313         $(SRC)/atimer.h \
1314         $(SRC)/blockinput.h \
1315         $(SRC)/buffer.h \
1316         $(SRC)/ccl.h \
1317         $(SRC)/charset.h \
1318         $(SRC)/coding.h \
1319         $(SRC)/commands.h \
1320         $(SRC)/composite.h \
1321         $(SRC)/dispextern.h \
1322         $(SRC)/disptab.h \
1323         $(SRC)/fontset.h \
1324         $(SRC)/frame.h \
1325         $(SRC)/indent.h \
1326         $(SRC)/intervals.h \
1327         $(SRC)/keyboard.h \
1328         $(SRC)/keymap.h \
1329         $(SRC)/macros.h \
1330         $(SRC)/process.h \
1331         $(SRC)/region-cache.h \
1332         $(SRC)/systime.h \
1333         $(SRC)/termchar.h \
1334         $(SRC)/termhooks.h \
1335         $(SRC)/w32bdf.h \
1336         $(SRC)/w32gui.h \
1337         $(SRC)/w32term.h \
1338         $(SRC)/window.h
1340 $(BLD)/xfaces.$(O): \
1341         $(SRC)/xfaces.c \
1342         $(EMACS_ROOT)/src/s/ms-w32.h \
1343         $(EMACS_ROOT)/src/m/intel386.h \
1344         $(EMACS_ROOT)/src/config.h \
1345         $(SRC)/atimer.h \
1346         $(SRC)/blockinput.h \
1347         $(SRC)/buffer.h \
1348         $(SRC)/charset.h \
1349         $(SRC)/composite.h \
1350         $(SRC)/dispextern.h \
1351         $(SRC)/fontset.h \
1352         $(SRC)/frame.h \
1353         $(SRC)/intervals.h \
1354         $(SRC)/keyboard.h \
1355         $(SRC)/systime.h \
1356         $(SRC)/termchar.h \
1357         $(SRC)/termhooks.h \
1358         $(SRC)/w32bdf.h \
1359         $(SRC)/w32gui.h \
1360         $(SRC)/w32term.h \
1361         $(SRC)/window.h
1363 $(BLD)/w32fns.$(O): \
1364         $(SRC)/w32fns.c \
1365         $(EMACS_ROOT)/src/s/ms-w32.h \
1366         $(EMACS_ROOT)/src/m/intel386.h \
1367         $(EMACS_ROOT)/src/config.h \
1368         $(SRC)/atimer.h \
1369         $(SRC)/blockinput.h \
1370         $(SRC)/buffer.h \
1371         $(SRC)/ccl.h \
1372         $(SRC)/charset.h \
1373         $(SRC)/coding.h \
1374         $(SRC)/composite.h \
1375         $(SRC)/dispextern.h \
1376         $(SRC)/epaths.h \
1377         $(SRC)/fontset.h \
1378         $(SRC)/frame.h \
1379         $(SRC)/intervals.h \
1380         $(SRC)/keyboard.h \
1381         $(SRC)/systime.h \
1382         $(SRC)/termhooks.h \
1383         $(SRC)/w32bdf.h \
1384         $(SRC)/w32gui.h \
1385         $(SRC)/w32heap.h \
1386         $(SRC)/w32term.h \
1387         $(SRC)/window.h
1389 $(BLD)/w32menu.$(O): \
1390         $(SRC)/w32menu.c \
1391         $(EMACS_ROOT)/src/s/ms-w32.h \
1392         $(EMACS_ROOT)/src/m/intel386.h \
1393         $(EMACS_ROOT)/src/config.h \
1394         $(SRC)/atimer.h \
1395         $(SRC)/blockinput.h \
1396         $(SRC)/buffer.h \
1397         $(SRC)/charset.h \
1398         $(SRC)/coding.h \
1399         $(SRC)/dispextern.h \
1400         $(SRC)/frame.h \
1401         $(SRC)/keyboard.h \
1402         $(SRC)/keymap.h \
1403         $(SRC)/systime.h \
1404         $(SRC)/termhooks.h \
1405         $(SRC)/w32bdf.h \
1406         $(SRC)/w32gui.h \
1407         $(SRC)/w32term.h \
1408         $(SRC)/window.h
1410 $(BLD)/w32term.$(O): \
1411         $(SRC)/w32term.c \
1412         $(EMACS_ROOT)/src/s/ms-w32.h \
1413         $(EMACS_ROOT)/src/m/intel386.h \
1414         $(EMACS_ROOT)/src/config.h \
1415         $(SRC)/atimer.h \
1416         $(SRC)/blockinput.h \
1417         $(SRC)/buffer.h \
1418         $(SRC)/ccl.h \
1419         $(SRC)/charset.h \
1420         $(SRC)/coding.h \
1421         $(SRC)/composite.h \
1422         $(SRC)/dispextern.h \
1423         $(SRC)/disptab.h \
1424         $(SRC)/fontset.h \
1425         $(SRC)/frame.h \
1426         $(SRC)/gnu.h \
1427         $(SRC)/intervals.h \
1428         $(SRC)/keyboard.h \
1429         $(SRC)/keymap.h \
1430         $(SRC)/systime.h \
1431         $(SRC)/systty.h \
1432         $(SRC)/termchar.h \
1433         $(SRC)/termhooks.h \
1434         $(SRC)/termopts.h \
1435         $(SRC)/w32bdf.h \
1436         $(SRC)/w32gui.h \
1437         $(SRC)/w32heap.h \
1438         $(SRC)/w32term.h \
1439         $(SRC)/window.h
1441 $(BLD)/w32select.$(O): \
1442         $(SRC)/w32select.c \
1443         $(EMACS_ROOT)/src/s/ms-w32.h \
1444         $(EMACS_ROOT)/src/m/intel386.h \
1445         $(EMACS_ROOT)/src/config.h \
1446         $(SRC)/atimer.h \
1447         $(SRC)/blockinput.h \
1448         $(SRC)/buffer.h \
1449         $(SRC)/ccl.h \
1450         $(SRC)/charset.h \
1451         $(SRC)/coding.h \
1452         $(SRC)/composite.h \
1453         $(SRC)/dispextern.h \
1454         $(SRC)/frame.h \
1455         $(SRC)/keyboard.h \
1456         $(SRC)/systime.h \
1457         $(SRC)/w32bdf.h \
1458         $(SRC)/w32gui.h \
1459         $(SRC)/w32heap.h \
1460         $(SRC)/w32term.h
1462 $(BLD)/w32reg.$(O): \
1463         $(SRC)/w32reg.c \
1464         $(EMACS_ROOT)/src/s/ms-w32.h \
1465         $(EMACS_ROOT)/src/m/intel386.h \
1466         $(EMACS_ROOT)/src/config.h \
1467         $(SRC)/atimer.h \
1468         $(SRC)/blockinput.h \
1469         $(SRC)/systime.h \
1470         $(SRC)/w32bdf.h \
1471         $(SRC)/w32gui.h \
1472         $(SRC)/w32term.h
1474 $(BLD)/w32xfns.$(O): \
1475         $(SRC)/w32xfns.c \
1476         $(EMACS_ROOT)/src/s/ms-w32.h \
1477         $(EMACS_ROOT)/src/m/intel386.h \
1478         $(EMACS_ROOT)/src/config.h \
1479         $(SRC)/atimer.h \
1480         $(SRC)/blockinput.h \
1481         $(SRC)/charset.h \
1482         $(SRC)/fontset.h \
1483         $(SRC)/frame.h \
1484         $(SRC)/keyboard.h \
1485         $(SRC)/systime.h \
1486         $(SRC)/w32bdf.h \
1487         $(SRC)/w32gui.h \
1488         $(SRC)/w32term.h
1490 $(BLD)/w32bdf.$(O): \
1491         $(SRC)/w32bdf.c \
1492         $(EMACS_ROOT)/src/s/ms-w32.h \
1493         $(EMACS_ROOT)/src/m/intel386.h \
1494         $(EMACS_ROOT)/src/config.h \
1495         $(SRC)/atimer.h \
1496         $(SRC)/blockinput.h \
1497         $(SRC)/charset.h \
1498         $(SRC)/dispextern.h \
1499         $(SRC)/fontset.h \
1500         $(SRC)/frame.h \
1501         $(SRC)/keyboard.h \
1502         $(SRC)/systime.h \
1503         $(SRC)/w32bdf.h \
1504         $(SRC)/w32gui.h \
1505         $(SRC)/w32term.h
1507 # Each object file depends on stamp_BLD, because in parallel builds we must
1508 # make sure $(BLD) exists before starting compilations.
1510 $(OBJ0) $(OBJ1) $(WIN32OBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD