(VERSION, EDITION, UPDATED, UPDATE-MONTH): Update for release 8.0.
[emacs.git] / src / makefile.w32-in
bloba94938a0b80335032222227e5df97ff769b1f96d
1 #  -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 #  Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 #                2005, 2006 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 2, 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)/abbrev.$(O)                      \
60         $(BLD)/alloc.$(O)                       \
61         $(BLD)/atimer.$(O)                      \
62         $(BLD)/buffer.$(O)                      \
63         $(BLD)/bytecode.$(O)                    \
64         $(BLD)/callint.$(O)                     \
65         $(BLD)/callproc.$(O)                    \
66         $(BLD)/casefiddle.$(O)                  \
67         $(BLD)/cm.$(O)                          \
68         $(BLD)/cmds.$(O)                        \
69         $(BLD)/data.$(O)                        \
70         $(BLD)/dired.$(O)                       \
71         $(BLD)/dispnew.$(O)                     \
72         $(BLD)/doc.$(O)                         \
73         $(BLD)/doprnt.$(O)                      \
74         $(BLD)/editfns.$(O)                     \
75         $(BLD)/eval.$(O)                        \
76         $(BLD)/fileio.$(O)                      \
77         $(BLD)/filelock.$(O)                    \
78         $(BLD)/filemode.$(O)                    \
79         $(BLD)/fns.$(O)                         \
80         $(BLD)/indent.$(O)                      \
81         $(BLD)/insdel.$(O)                      \
82         $(BLD)/keyboard.$(O)                    \
83         $(BLD)/keymap.$(O)                      \
84         $(BLD)/lread.$(O)                       \
85         $(BLD)/macros.$(O)                      \
86         $(BLD)/marker.$(O)                      \
87         $(BLD)/md5.$(O)                         \
88         $(BLD)/minibuf.$(O)                     \
89         $(BLD)/w32.$(O)                         \
90         $(BLD)/w32heap.$(O)                     \
91         $(BLD)/w32inevt.$(O)                    \
92         $(BLD)/w32proc.$(O)                     \
93         $(BLD)/w32console.$(O)                  \
94         $(BLD)/print.$(O)                       \
95         $(BLD)/process.$(O)                     \
96         $(BLD)/regex.$(O)                       \
97         $(BLD)/scroll.$(O)                      \
98         $(BLD)/search.$(O)                      \
99         $(BLD)/sound.$(O)                       \
100         $(BLD)/syntax.$(O)                      \
101         $(BLD)/sysdep.$(O)                      \
102         $(BLD)/term.$(O)                        \
103         $(BLD)/termcap.$(O)                     \
104         $(BLD)/tparam.$(O)                      \
105         $(BLD)/undo.$(O)                        \
106         $(BLD)/unexw32.$(O)                     \
107         $(BLD)/window.$(O)                      \
108         $(BLD)/xdisp.$(O)                       \
109         $(BLD)/casetab.$(O)                     \
110         $(BLD)/floatfns.$(O)                    \
111         $(BLD)/frame.$(O)                       \
112         $(BLD)/gmalloc.$(O)                     \
113         $(BLD)/intervals.$(O)                   \
114         $(BLD)/composite.$(O)                   \
115         $(BLD)/ralloc.$(O)                      \
116         $(BLD)/textprop.$(O)                    \
117         $(BLD)/vm-limit.$(O)                    \
118         $(BLD)/region-cache.$(O)                \
119         $(BLD)/strftime.$(O)                    \
120         $(BLD)/charset.$(O)                     \
121         $(BLD)/coding.$(O)                      \
122         $(BLD)/category.$(O)                    \
123         $(BLD)/ccl.$(O)                         \
124         $(BLD)/fontset.$(O)                     \
125         $(BLD)/fringe.$(O)                      \
126         $(BLD)/image.$(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         $(libc)
152 # Build the executable and dump it.
154 all:            $(ALL)
157 # The dumped executable
159 emacs:          $(BLD) $(EMACS)
160 $(EMACS):       $(DOC) $(TEMACS)
161         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
162         -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
165 # The undumped executable
166 # Note the extra post-link step to insert a static preload heap section.
167 # If preload runs out of memory, increase the last argument to addsection
168 # (it is the preload heap size in MB).
170 temacs:         $(BLD) $(TEMACS)
171 $(TEMACS):      $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
172                   ../nt/$(BLD)/addsection.exe
173         $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
174         "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
175         echo $(OBJ0) > $(BLD)/buildobj.lst
176         echo $(OBJ1) >> $(BLD)/buildobj.lst
177         echo $(WIN32OBJ) >> $(BLD)/buildobj.lst
179 bootstrap: bootstrap-emacs
182 # Build a temacs with a sufficiently large PURESIZE to load the
183 # Lisp files from loadup.el in source form.
185 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
186 #          this can break with GNU Make 3.81 and later if sh.exe is used.
187 bootstrap-temacs:
188         $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
191 # Dump an Emacs executable named bootstrap-emacs containing the
192 # files from loadup.el in source form.
194 bootstrap-emacs: bootstrap-temacs
195         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
196         - mkdir "../bin"
197         $(CP) $(EMACS) ../bin
200 # Force recompile of files that depend on PURESIZE
202 bootstrap-clean:
203         - $(DEL) $(BLD)/alloc.$(O)
204         - $(DEL) $(BLD)/data.$(O)
205         - $(DEL) $(BLD)/intervals.$(O)
206         - $(DEL) $(BLD)/keyboard.$(O)
207         - $(DEL) $(BLD)/keymap.$(O)
210 # The resource file.  NT 3.10 requires the use of cvtres; even though
211 # it is not necessary on later versions, it is still ok to use it.
213 $(TRES): ../nt/emacs.rc
214         $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
217 # Build the library.  Split up the build into two phases...otherwise we
218 # run out of command line space.
220 $(TLIB0):       $(OBJ0)
221         - $(DEL) $@
222         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
223 $(TLIB1):       $(OBJ1)
224         - $(DEL) $@
225         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
226 $(TLIBW32):     $(WIN32OBJ)
227         - $(DEL) $@
228         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
231 # Place lastfile.$(O) in its own library so that it can be loaded after
232 # the source libraries but before any system libraries.  Doing so defines
233 # the end of Emacs' data section portably across compilers and systems.
235 $(TLASTLIB):    $(BLD)/lastfile.$(O)
236         - $(DEL) $@
237         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
240 # Assuming INSTALL_DIR is defined, build and install emacs in it.
242 install:        $(ALL)
243         - mkdir "$(INSTALL_DIR)/bin"
244         $(CP) $(EMACS) $(INSTALL_DIR)/bin
247 # Maintenance
249 clean:
250         - $(DEL) *~ "s/*~" "m/*~"
251         - $(DEL) $(COMPILER_TEMP_FILES)
252         - $(DEL_TREE) $(OBJDIR)
254 distclean:      clean
255         - $(DEL) config.h epaths.h
257 cleanall:       clean
258         - $(DEL_TREE) obj
259         - $(DEL_TREE) obj-spd
260         - $(DEL_TREE) oo
261         - $(DEL_TREE) oo-spd
263 ### DEPENDENCIES ###
265 EMACS_ROOT      = ..
266 SRC             = .
268 $(BLD)/abbrev.$(O) : \
269         $(SRC)/abbrev.c \
270         $(EMACS_ROOT)/src/s/ms-w32.h \
271         $(EMACS_ROOT)/src/m/intel386.h \
272         $(EMACS_ROOT)/src/config.h \
273         $(SRC)/buffer.h \
274         $(SRC)/charset.h \
275         $(SRC)/commands.h \
276         $(SRC)/dispextern.h \
277         $(SRC)/syntax.h \
278         $(SRC)/w32bdf.h \
279         $(SRC)/w32gui.h \
280         $(SRC)/window.h
282 $(BLD)/alloc.$(O) : \
283         $(SRC)/alloc.c \
284         $(EMACS_ROOT)/src/s/ms-w32.h \
285         $(EMACS_ROOT)/src/m/intel386.h \
286         $(EMACS_ROOT)/src/config.h \
287         $(SRC)/blockinput.h \
288         $(SRC)/buffer.h \
289         $(SRC)/charset.h \
290         $(SRC)/composite.h \
291         $(SRC)/dispextern.h \
292         $(SRC)/frame.h \
293         $(SRC)/intervals.h \
294         $(SRC)/keyboard.h \
295         $(SRC)/process.h \
296         $(SRC)/puresize.h \
297         $(SRC)/syssignal.h \
298         $(SRC)/w32bdf.h \
299         $(SRC)/w32gui.h \
300         $(SRC)/window.h
302 $(BLD)/atimer.$(O) : \
303         $(SRC)/atimer.c \
304         $(EMACS_ROOT)/src/s/ms-w32.h \
305         $(EMACS_ROOT)/src/m/intel386.h \
306         $(EMACS_ROOT)/src/config.h \
307         $(SRC)/s/ms-w32.h \
308         $(SRC)/m/intel386.h \
309         $(SRC)/config.h \
310         $(SRC)/atimer.h \
311         $(SRC)/blockinput.h \
312         $(SRC)/syssignal.h \
313         $(SRC)/systime.h
315 $(BLD)/buffer.$(O) : \
316         $(SRC)/buffer.c \
317         $(EMACS_ROOT)/nt/inc/sys/param.h \
318         $(EMACS_ROOT)/src/s/ms-w32.h \
319         $(EMACS_ROOT)/src/m/intel386.h \
320         $(EMACS_ROOT)/src/config.h \
321         $(SRC)/blockinput.h \
322         $(SRC)/buffer.h \
323         $(SRC)/charset.h \
324         $(SRC)/commands.h \
325         $(SRC)/composite.h \
326         $(SRC)/dispextern.h \
327         $(SRC)/frame.h \
328         $(SRC)/indent.h \
329         $(SRC)/intervals.h \
330         $(SRC)/keyboard.h \
331         $(SRC)/keymap.h \
332         $(SRC)/region-cache.h \
333         $(SRC)/w32bdf.h \
334         $(SRC)/w32gui.h \
335         $(SRC)/window.h
337 $(BLD)/bytecode.$(O) : \
338         $(SRC)/bytecode.c \
339         $(EMACS_ROOT)/src/s/ms-w32.h \
340         $(EMACS_ROOT)/src/m/intel386.h \
341         $(EMACS_ROOT)/src/config.h \
342         $(SRC)/buffer.h \
343         $(SRC)/charset.h \
344         $(SRC)/syntax.h \
345         $(SRC)/window.h
347 $(BLD)/callint.$(O) : \
348         $(SRC)/callint.c \
349         $(EMACS_ROOT)/src/s/ms-w32.h \
350         $(EMACS_ROOT)/src/m/intel386.h \
351         $(EMACS_ROOT)/src/config.h \
352         $(SRC)/buffer.h \
353         $(SRC)/commands.h \
354         $(SRC)/dispextern.h \
355         $(SRC)/keyboard.h \
356         $(SRC)/keymap.h \
357         $(SRC)/w32bdf.h \
358         $(SRC)/w32gui.h \
359         $(SRC)/window.h
361 $(BLD)/callproc.$(O) : \
362         $(SRC)/callproc.c \
363         $(EMACS_ROOT)/src/s/ms-w32.h \
364         $(EMACS_ROOT)/src/m/intel386.h \
365         $(EMACS_ROOT)/src/config.h \
366         $(EMACS_ROOT)/nt/inc/sys/param.h \
367         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
368         $(EMACS_ROOT)/nt/inc/sys/file.h \
369         $(SRC)/buffer.h \
370         $(SRC)/ccl.h \
371         $(SRC)/charset.h \
372         $(SRC)/coding.h \
373         $(SRC)/commands.h \
374         $(SRC)/composite.h \
375         $(SRC)/epaths.h \
376         $(SRC)/process.h \
377         $(SRC)/syssignal.h \
378         $(SRC)/systty.h \
379         $(SRC)/w32.h
381 $(BLD)/casefiddle.$(O) : \
382         $(SRC)/casefiddle.c \
383         $(EMACS_ROOT)/src/s/ms-w32.h \
384         $(EMACS_ROOT)/src/m/intel386.h \
385         $(EMACS_ROOT)/src/config.h \
386         $(SRC)/buffer.h \
387         $(SRC)/charset.h \
388         $(SRC)/commands.h \
389         $(SRC)/composite.h \
390         $(SRC)/keymap.h \
391         $(SRC)/syntax.h
393 $(BLD)/casetab.$(O) : \
394         $(SRC)/casetab.c \
395         $(EMACS_ROOT)/src/s/ms-w32.h \
396         $(EMACS_ROOT)/src/m/intel386.h \
397         $(EMACS_ROOT)/src/config.h \
398         $(SRC)/buffer.h \
399         $(SRC)/charset.h
401 $(BLD)/category.$(O) : \
402         $(SRC)/category.c \
403         $(EMACS_ROOT)/src/s/ms-w32.h \
404         $(EMACS_ROOT)/src/m/intel386.h \
405         $(EMACS_ROOT)/src/config.h \
406         $(SRC)/buffer.h \
407         $(SRC)/category.h \
408         $(SRC)/charset.h \
409         $(SRC)/keymap.h
411 $(BLD)/ccl.$(O) : \
412         $(SRC)/ccl.c \
413         $(EMACS_ROOT)/src/s/ms-w32.h \
414         $(EMACS_ROOT)/src/m/intel386.h \
415         $(EMACS_ROOT)/src/config.h \
416         $(SRC)/ccl.h \
417         $(SRC)/charset.h \
418         $(SRC)/coding.h
420 $(BLD)/charset.$(O) : \
421         $(SRC)/charset.c \
422         $(EMACS_ROOT)/src/s/ms-w32.h \
423         $(EMACS_ROOT)/src/m/intel386.h \
424         $(EMACS_ROOT)/src/config.h \
425         $(SRC)/buffer.h \
426         $(SRC)/ccl.h \
427         $(SRC)/charset.h \
428         $(SRC)/coding.h \
429         $(SRC)/composite.h \
430         $(SRC)/disptab.h
432 $(BLD)/cm.$(O) : \
433         $(SRC)/cm.c \
434         $(EMACS_ROOT)/src/s/ms-w32.h \
435         $(EMACS_ROOT)/src/m/intel386.h \
436         $(EMACS_ROOT)/src/config.h \
437         $(SRC)/cm.h \
438         $(SRC)/termhooks.h
440 $(BLD)/cmds.$(O) : \
441         $(SRC)/cmds.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)/charset.h \
447         $(SRC)/commands.h \
448         $(SRC)/dispextern.h \
449         $(SRC)/keyboard.h \
450         $(SRC)/keymap.h \
451         $(SRC)/syntax.h \
452         $(SRC)/w32bdf.h \
453         $(SRC)/w32gui.h \
454         $(SRC)/window.h
456 $(BLD)/coding.$(O) : \
457         $(SRC)/coding.c \
458         $(EMACS_ROOT)/src/s/ms-w32.h \
459         $(EMACS_ROOT)/src/m/intel386.h \
460         $(EMACS_ROOT)/src/config.h \
461         $(SRC)/buffer.h \
462         $(SRC)/ccl.h \
463         $(SRC)/charset.h \
464         $(SRC)/coding.h \
465         $(SRC)/composite.h \
466         $(SRC)/dispextern.h \
467         $(SRC)/intervals.h \
468         $(SRC)/w32bdf.h \
469         $(SRC)/w32gui.h \
470         $(SRC)/window.h
472 $(BLD)/composite.$(O) : \
473         $(SRC)/composite.c \
474         $(EMACS_ROOT)/src/s/ms-w32.h \
475         $(EMACS_ROOT)/src/m/intel386.h \
476         $(EMACS_ROOT)/src/config.h \
477         $(SRC)/buffer.h \
478         $(SRC)/charset.h \
479         $(SRC)/composite.h \
480         $(SRC)/dispextern.h \
481         $(SRC)/intervals.h \
482         $(SRC)/w32bdf.h \
483         $(SRC)/w32gui.h
485 $(BLD)/data.$(O) : \
486         $(SRC)/data.c \
487         $(EMACS_ROOT)/src/s/ms-w32.h \
488         $(EMACS_ROOT)/src/m/intel386.h \
489         $(EMACS_ROOT)/src/config.h \
490         $(SRC)/buffer.h \
491         $(SRC)/charset.h \
492         $(SRC)/frame.h \
493         $(SRC)/keyboard.h \
494         $(SRC)/puresize.h \
495         $(SRC)/syssignal.h
497 $(BLD)/dired.$(O) : \
498         $(SRC)/dired.c \
499         $(EMACS_ROOT)/src/s/ms-w32.h \
500         $(EMACS_ROOT)/src/m/intel386.h \
501         $(EMACS_ROOT)/src/config.h \
502         $(SRC)/buffer.h \
503         $(SRC)/ccl.h \
504         $(SRC)/charset.h \
505         $(SRC)/coding.h \
506         $(SRC)/commands.h \
507         $(SRC)/ndir.h \
508         $(SRC)/regex.h \
509         $(SRC)/systime.h
511 $(BLD)/dispnew.$(O) : \
512         $(SRC)/dispnew.c \
513         $(EMACS_ROOT)/src/s/ms-w32.h \
514         $(EMACS_ROOT)/src/m/intel386.h \
515         $(EMACS_ROOT)/src/config.h \
516         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
517         $(EMACS_ROOT)/nt/inc/sys/file.h \
518         $(SRC)/atimer.h \
519         $(SRC)/blockinput.h \
520         $(SRC)/buffer.h \
521         $(SRC)/charset.h \
522         $(SRC)/cm.h \
523         $(SRC)/commands.h \
524         $(SRC)/composite.h \
525         $(SRC)/dispextern.h \
526         $(SRC)/disptab.h \
527         $(SRC)/frame.h \
528         $(SRC)/indent.h \
529         $(SRC)/intervals.h \
530         $(SRC)/keyboard.h \
531         $(SRC)/process.h \
532         $(SRC)/syssignal.h \
533         $(SRC)/systime.h \
534         $(SRC)/termchar.h \
535         $(SRC)/termhooks.h \
536         $(SRC)/termopts.h \
537         $(SRC)/w32bdf.h \
538         $(SRC)/w32gui.h \
539         $(SRC)/w32term.h \
540         $(SRC)/window.h
542 $(BLD)/doc.$(O) : \
543         $(SRC)/doc.c \
544         $(EMACS_ROOT)/src/s/ms-w32.h \
545         $(EMACS_ROOT)/src/m/intel386.h \
546         $(EMACS_ROOT)/src/config.h \
547         $(EMACS_ROOT)/nt/inc/sys/file.h \
548         $(SRC)/buffer.h \
549         $(SRC)/charset.h \
550         $(SRC)/keyboard.h \
551         $(SRC)/keymap.h
553 $(BLD)/doprnt.$(O) : \
554         $(SRC)/doprnt.c \
555         $(EMACS_ROOT)/src/s/ms-w32.h \
556         $(EMACS_ROOT)/src/m/intel386.h \
557         $(EMACS_ROOT)/src/config.h \
558         $(SRC)/charset.c
560 $(BLD)/editfns.$(O) : \
561         $(SRC)/editfns.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/pwd.h \
566         $(SRC)/buffer.h \
567         $(SRC)/ccl.h \
568         $(SRC)/charset.h \
569         $(SRC)/coding.h \
570         $(SRC)/composite.h \
571         $(SRC)/dispextern.h \
572         $(SRC)/frame.h \
573         $(SRC)/intervals.h \
574         $(SRC)/systime.h \
575         $(SRC)/w32bdf.h \
576         $(SRC)/w32gui.h \
577         $(SRC)/window.h
579 $(BLD)/emacs.$(O) : \
580         $(SRC)/emacs.c \
581         $(EMACS_ROOT)/src/s/ms-w32.h \
582         $(EMACS_ROOT)/src/m/intel386.h \
583         $(EMACS_ROOT)/src/config.h \
584         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
585         $(EMACS_ROOT)/nt/inc/sys/file.h \
586         $(SRC)/atimer.h \
587         $(SRC)/blockinput.h \
588         $(SRC)/buffer.h \
589         $(SRC)/commands.h \
590         $(SRC)/composite.h \
591         $(SRC)/dispextern.h \
592         $(SRC)/intervals.h \
593         $(SRC)/keyboard.h \
594         $(SRC)/keymap.h \
595         $(SRC)/process.h \
596         $(SRC)/syssignal.h \
597         $(SRC)/systime.h \
598         $(SRC)/systty.h \
599         $(SRC)/termhooks.h \
600         $(SRC)/w32bdf.h \
601         $(SRC)/w32gui.h \
602         $(SRC)/w32heap.h \
603         $(SRC)/window.h
605 $(BLD)/eval.$(O) : \
606         $(SRC)/eval.c \
607         $(EMACS_ROOT)/src/s/ms-w32.h \
608         $(EMACS_ROOT)/src/m/intel386.h \
609         $(EMACS_ROOT)/src/config.h \
610         $(SRC)/atimer.h \
611         $(SRC)/blockinput.h \
612         $(SRC)/commands.h \
613         $(SRC)/dispextern.h \
614         $(SRC)/keyboard.h \
615         $(SRC)/systime.h \
616         $(SRC)/w32bdf.h \
617         $(SRC)/w32gui.h
619 $(BLD)/fileio.$(O) : \
620         $(SRC)/fileio.c \
621         $(EMACS_ROOT)/src/s/ms-w32.h \
622         $(EMACS_ROOT)/src/m/intel386.h \
623         $(EMACS_ROOT)/src/config.h \
624         $(EMACS_ROOT)/nt/inc/pwd.h \
625         $(EMACS_ROOT)/nt/inc/sys/param.h \
626         $(EMACS_ROOT)/nt/inc/sys/file.h \
627         $(SRC)/buffer.h \
628         $(SRC)/ccl.h \
629         $(SRC)/charset.h \
630         $(SRC)/coding.h \
631         $(SRC)/commands.h \
632         $(SRC)/composite.h \
633         $(SRC)/dispextern.h \
634         $(SRC)/intervals.h \
635         $(SRC)/systime.h \
636         $(SRC)/w32bdf.h \
637         $(SRC)/w32gui.h \
638         $(SRC)/window.h
640 $(BLD)/filelock.$(O) : \
641         $(SRC)/filelock.c \
642         $(EMACS_ROOT)/src/s/ms-w32.h \
643         $(EMACS_ROOT)/src/m/intel386.h \
644         $(EMACS_ROOT)/src/config.h \
645         $(EMACS_ROOT)/nt/inc/pwd.h \
646         $(EMACS_ROOT)/nt/inc/sys/file.h \
647         $(EMACS_ROOT)/src/epaths.h \
648         $(SRC)/buffer.h \
649         $(SRC)/ccl.h \
650         $(SRC)/charset.h \
651         $(SRC)/coding.h \
652         $(SRC)/systime.h
654 $(BLD)/filemode.$(O) : \
655         $(SRC)/filemode.c \
656         $(EMACS_ROOT)/src/s/ms-w32.h \
657         $(EMACS_ROOT)/src/m/intel386.h \
658         $(EMACS_ROOT)/src/config.h \
659         $(SRC)/s/ms-w32.h \
660         $(SRC)/m/intel386.h \
661         $(SRC)/config.h
663 $(BLD)/firstfile.$(O) : \
664         $(SRC)/firstfile.c \
665         $(EMACS_ROOT)/src/s/ms-w32.h \
666         $(EMACS_ROOT)/src/m/intel386.h \
667         $(EMACS_ROOT)/src/config.h
669 $(BLD)/floatfns.$(O) : \
670         $(SRC)/floatfns.c \
671         $(EMACS_ROOT)/src/s/ms-w32.h \
672         $(EMACS_ROOT)/src/m/intel386.h \
673         $(EMACS_ROOT)/src/config.h \
674         $(SRC)/syssignal.h
676 $(BLD)/fns.$(O) : \
677         $(SRC)/fns.c \
678         $(EMACS_ROOT)/src/s/ms-w32.h \
679         $(EMACS_ROOT)/src/m/intel386.h \
680         $(EMACS_ROOT)/src/config.h \
681         $(SRC)/atimer.h \
682         $(SRC)/blockinput.h \
683         $(SRC)/buffer.h \
684         $(SRC)/ccl.h \
685         $(SRC)/charset.h \
686         $(SRC)/coding.h \
687         $(SRC)/commands.h \
688         $(SRC)/composite.h \
689         $(SRC)/dispextern.h \
690         $(SRC)/frame.h \
691         $(SRC)/intervals.h \
692         $(SRC)/keyboard.h \
693         $(SRC)/keymap.h \
694         $(SRC)/md5.h \
695         $(SRC)/systime.h \
696         $(SRC)/w32bdf.h \
697         $(SRC)/w32gui.h \
698         $(SRC)/window.h
700 $(BLD)/fontset.$(O) : \
701         $(SRC)/fontset.c \
702         $(EMACS_ROOT)/src/s/ms-w32.h \
703         $(EMACS_ROOT)/src/m/intel386.h \
704         $(EMACS_ROOT)/src/config.h \
705         $(SRC)/buffer.h \
706         $(SRC)/ccl.h \
707         $(SRC)/charset.h \
708         $(SRC)/dispextern.h \
709         $(SRC)/fontset.h \
710         $(SRC)/frame.h \
711         $(SRC)/keyboard.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)/termhooks.h \
732         $(SRC)/w32bdf.h \
733         $(SRC)/w32gui.h \
734         $(SRC)/w32term.h \
735         $(SRC)/window.h
737 $(BLD)/fringe.$(O) : \
738         $(SRC)/fringe.c \
739         $(EMACS_ROOT)/src/s/ms-w32.h \
740         $(EMACS_ROOT)/src/m/intel386.h \
741         $(EMACS_ROOT)/src/config.h \
742         $(SRC)/atimer.h \
743         $(SRC)/blockinput.h \
744         $(SRC)/buffer.h \
745         $(SRC)/dispextern.h \
746         $(SRC)/frame.h \
747         $(SRC)/systime.h \
748         $(SRC)/w32bdf.h \
749         $(SRC)/w32gui.h \
750         $(SRC)/window.h
752 $(BLD)/gmalloc.$(O) : \
753         $(SRC)/gmalloc.c \
754         $(EMACS_ROOT)/src/s/ms-w32.h \
755         $(EMACS_ROOT)/src/m/intel386.h \
756         $(EMACS_ROOT)/src/config.h \
757         $(EMACS_ROOT)/nt/inc/sys/param.h \
758         $(SRC)/getpagesize.h
760 $(BLD)/image.$(O): \
761         $(SRC)/image.c \
762         $(EMACS_ROOT)/src/s/ms-w32.h \
763         $(EMACS_ROOT)/src/m/intel386.h \
764         $(EMACS_ROOT)/src/config.h \
765         $(SRC)/atimer.h \
766         $(SRC)/blockinput.h \
767         $(SRC)/dispextern.h \
768         $(SRC)/epaths.h \
769         $(SRC)/frame.h \
770         $(SRC)/systime.h \
771         $(SRC)/termhooks.h \
772         $(SRC)/w32bdf.h \
773         $(SRC)/w32gui.h \
774         $(SRC)/w32heap.h \
775         $(SRC)/w32term.h \
776         $(SRC)/window.h
778 $(BLD)/indent.$(O) : \
779         $(SRC)/indent.c \
780         $(EMACS_ROOT)/src/s/ms-w32.h \
781         $(EMACS_ROOT)/src/m/intel386.h \
782         $(EMACS_ROOT)/src/config.h \
783         $(SRC)/buffer.h \
784         $(SRC)/category.h \
785         $(SRC)/charset.h \
786         $(SRC)/composite.h \
787         $(SRC)/dispextern.h \
788         $(SRC)/disptab.h \
789         $(SRC)/frame.h \
790         $(SRC)/indent.h \
791         $(SRC)/intervals.h \
792         $(SRC)/keyboard.h \
793         $(SRC)/region-cache.h \
794         $(SRC)/termchar.h \
795         $(SRC)/termopts.h \
796         $(SRC)/w32bdf.h \
797         $(SRC)/w32gui.h \
798         $(SRC)/window.h
800 $(BLD)/insdel.$(O) : \
801         $(SRC)/insdel.c \
802         $(EMACS_ROOT)/src/s/ms-w32.h \
803         $(EMACS_ROOT)/src/m/intel386.h \
804         $(EMACS_ROOT)/src/config.h \
805         $(SRC)/atimer.h \
806         $(SRC)/blockinput.h \
807         $(SRC)/buffer.h \
808         $(SRC)/charset.h \
809         $(SRC)/composite.h \
810         $(SRC)/dispextern.h \
811         $(SRC)/intervals.h \
812         $(SRC)/region-cache.h \
813         $(SRC)/systime.h \
814         $(SRC)/w32bdf.h \
815         $(SRC)/w32gui.h \
816         $(SRC)/window.h
818 $(BLD)/intervals.$(O) : \
819         $(SRC)/intervals.c \
820         $(EMACS_ROOT)/src/s/ms-w32.h \
821         $(EMACS_ROOT)/src/m/intel386.h \
822         $(EMACS_ROOT)/src/config.h \
823         $(SRC)/buffer.h \
824         $(SRC)/composite.h \
825         $(SRC)/dispextern.h \
826         $(SRC)/intervals.h \
827         $(SRC)/keyboard.h \
828         $(SRC)/keymap.h \
829         $(SRC)/puresize.h \
830         $(SRC)/w32bdf.h \
831         $(SRC)/w32gui.h
833 $(BLD)/keyboard.$(O) : \
834         $(SRC)/keyboard.c \
835         $(EMACS_ROOT)/src/s/ms-w32.h \
836         $(EMACS_ROOT)/src/m/intel386.h \
837         $(EMACS_ROOT)/src/config.h \
838         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
839         $(EMACS_ROOT)/nt/inc/sys/file.h \
840         $(SRC)/atimer.h \
841         $(SRC)/blockinput.h \
842         $(SRC)/buffer.h \
843         $(SRC)/charset.h \
844         $(SRC)/commands.h \
845         $(SRC)/composite.h \
846         $(SRC)/dispextern.h \
847         $(SRC)/disptab.h \
848         $(SRC)/frame.h \
849         $(SRC)/intervals.h \
850         $(SRC)/keyboard.h \
851         $(SRC)/keymap.h \
852         $(SRC)/macros.h \
853         $(SRC)/puresize.h \
854         $(SRC)/syntax.h \
855         $(SRC)/syssignal.h \
856         $(SRC)/systime.h \
857         $(SRC)/systty.h \
858         $(SRC)/termchar.h \
859         $(SRC)/termhooks.h \
860         $(SRC)/termopts.h \
861         $(SRC)/w32bdf.h \
862         $(SRC)/w32gui.h \
863         $(SRC)/w32term.h \
864         $(SRC)/window.h
866 $(BLD)/keymap.$(O) : \
867         $(SRC)/keymap.c \
868         $(EMACS_ROOT)/src/s/ms-w32.h \
869         $(EMACS_ROOT)/src/m/intel386.h \
870         $(EMACS_ROOT)/src/config.h \
871         $(SRC)/atimer.h \
872         $(SRC)/blockinput.h \
873         $(SRC)/buffer.h \
874         $(SRC)/charset.h \
875         $(SRC)/commands.h \
876         $(SRC)/composite.h \
877         $(SRC)/dispextern.h \
878         $(SRC)/intervals.h \
879         $(SRC)/keyboard.h \
880         $(SRC)/keymap.h \
881         $(SRC)/puresize.h \
882         $(SRC)/systime.h \
883         $(SRC)/termhooks.h \
884         $(SRC)/w32bdf.h \
885         $(SRC)/w32gui.h
887 $(BLD)/lastfile.$(O) : \
888         $(SRC)/lastfile.c \
889         $(EMACS_ROOT)/src/s/ms-w32.h \
890         $(EMACS_ROOT)/src/m/intel386.h \
891         $(EMACS_ROOT)/src/config.h
893 $(BLD)/lread.$(O) : \
894         $(SRC)/lread.c \
895         $(EMACS_ROOT)/src/s/ms-w32.h \
896         $(EMACS_ROOT)/src/m/intel386.h \
897         $(EMACS_ROOT)/src/config.h \
898         $(EMACS_ROOT)/nt/inc/sys/file.h \
899         $(EMACS_ROOT)/src/epaths.h \
900         $(SRC)/buffer.h \
901         $(SRC)/ccl.h \
902         $(SRC)/charset.h \
903         $(SRC)/coding.h \
904         $(SRC)/commands.h \
905         $(SRC)/composite.h \
906         $(SRC)/dispextern.h \
907         $(SRC)/intervals.h \
908         $(SRC)/keyboard.h \
909         $(SRC)/termhooks.h \
910         $(SRC)/w32bdf.h \
911         $(SRC)/w32gui.h
913 $(BLD)/macros.$(O) : \
914         $(SRC)/macros.c \
915         $(EMACS_ROOT)/src/s/ms-w32.h \
916         $(EMACS_ROOT)/src/m/intel386.h \
917         $(EMACS_ROOT)/src/config.h \
918         $(SRC)/buffer.h \
919         $(SRC)/commands.h \
920         $(SRC)/dispextern.h \
921         $(SRC)/keyboard.h \
922         $(SRC)/macros.h \
923         $(SRC)/w32bdf.h \
924         $(SRC)/w32gui.h \
925         $(SRC)/window.h
927 $(BLD)/marker.$(O) : \
928         $(SRC)/marker.c \
929         $(EMACS_ROOT)/src/s/ms-w32.h \
930         $(EMACS_ROOT)/src/m/intel386.h \
931         $(EMACS_ROOT)/src/config.h \
932         $(SRC)/buffer.h \
933         $(SRC)/charset.h
935 $(BLD)/md5.$(O) : \
936         $(SRC)/md5.c \
937         $(SRC)/md5.h
939 $(BLD)/minibuf.$(O) : \
940         $(SRC)/minibuf.c \
941         $(EMACS_ROOT)/src/s/ms-w32.h \
942         $(EMACS_ROOT)/src/m/intel386.h \
943         $(EMACS_ROOT)/src/config.h \
944         $(SRC)/buffer.h \
945         $(SRC)/charset.h \
946         $(SRC)/commands.h \
947         $(SRC)/composite.h \
948         $(SRC)/dispextern.h \
949         $(SRC)/frame.h \
950         $(SRC)/intervals.h \
951         $(SRC)/keyboard.h \
952         $(SRC)/keymap.h \
953         $(SRC)/syntax.h \
954         $(SRC)/w32bdf.h \
955         $(SRC)/w32gui.h \
956         $(SRC)/window.h
958 $(BLD)/w32.$(O) : \
959         $(SRC)/w32.c \
960         $(EMACS_ROOT)/nt/inc/pwd.h \
961         $(SRC)/s/ms-w32.h \
962         $(SRC)/m/intel386.h \
963         $(SRC)/config.h \
964         $(SRC)/ndir.h \
965         $(SRC)/systime.h \
966         $(SRC)/w32.h \
967         $(SRC)/w32heap.h
969 $(BLD)/w32heap.$(O) : \
970         $(SRC)/w32heap.c \
971         $(SRC)/s/ms-w32.h \
972         $(SRC)/m/intel386.h \
973         $(SRC)/config.h \
974         $(SRC)/w32heap.h
976 $(BLD)/w32inevt.$(O) : \
977         $(SRC)/w32inevt.c \
978         $(SRC)/s/ms-w32.h \
979         $(SRC)/m/intel386.h \
980         $(SRC)/config.h \
981         $(SRC)/atimer.h \
982         $(SRC)/blockinput.h \
983         $(SRC)/frame.h \
984         $(SRC)/keyboard.h \
985         $(SRC)/systime.h \
986         $(SRC)/termhooks.h \
987         $(SRC)/w32bdf.h \
988         $(SRC)/w32gui.h \
989         $(SRC)/w32heap.h \
990         $(SRC)/w32term.h
992 $(BLD)/w32proc.$(O) : \
993         $(SRC)/w32proc.c \
994         $(SRC)/s/ms-w32.h \
995         $(SRC)/m/intel386.h \
996         $(SRC)/config.h \
997         $(SRC)/process.h \
998         $(SRC)/syssignal.h \
999         $(SRC)/systime.h \
1000         $(SRC)/syswait.h \
1001         $(SRC)/w32.h \
1002         $(SRC)/w32bdf.h \
1003         $(SRC)/w32gui.h \
1004         $(SRC)/w32heap.h \
1005         $(SRC)/w32term.h
1007 $(BLD)/w32console.$(O) : \
1008         $(SRC)/w32console.c \
1009         $(SRC)/s/ms-w32.h \
1010         $(SRC)/m/intel386.h \
1011         $(SRC)/ccl.h \
1012         $(SRC)/charset.h \
1013         $(SRC)/coding.h \
1014         $(SRC)/config.h \
1015         $(SRC)/dispextern.h \
1016         $(SRC)/disptab.h \
1017         $(SRC)/frame.h \
1018         $(SRC)/termhooks.h \
1019         $(SRC)/w32bdf.h \
1020         $(SRC)/w32gui.h \
1021         $(SRC)/w32inevt.h
1023 $(BLD)/print.$(O) : \
1024         $(SRC)/print.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)/charset.h \
1030         $(SRC)/composite.h \
1031         $(SRC)/dispextern.h \
1032         $(SRC)/frame.h \
1033         $(SRC)/intervals.h \
1034         $(SRC)/keyboard.h \
1035         $(SRC)/process.h \
1036         $(SRC)/termchar.h \
1037         $(SRC)/w32bdf.h \
1038         $(SRC)/w32gui.h \
1039         $(SRC)/window.h
1041 $(BLD)/process.$(O) : \
1042         $(SRC)/process.c \
1043         $(EMACS_ROOT)/src/s/ms-w32.h \
1044         $(EMACS_ROOT)/src/m/intel386.h \
1045         $(EMACS_ROOT)/src/config.h \
1046         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1047         $(EMACS_ROOT)/nt/inc/sys/file.h \
1048         $(SRC)/atimer.h \
1049         $(SRC)/blockinput.h \
1050         $(SRC)/buffer.h \
1051         $(SRC)/ccl.h \
1052         $(SRC)/charset.h \
1053         $(SRC)/coding.h \
1054         $(SRC)/commands.h \
1055         $(SRC)/composite.h \
1056         $(SRC)/dispextern.h \
1057         $(SRC)/frame.h \
1058         $(SRC)/keyboard.h \
1059         $(SRC)/process.h \
1060         $(SRC)/sysselect.h \
1061         $(SRC)/syssignal.h \
1062         $(SRC)/systime.h \
1063         $(SRC)/systty.h \
1064         $(SRC)/syswait.h \
1065         $(SRC)/termhooks.h \
1066         $(SRC)/termopts.h \
1067         $(SRC)/w32bdf.h \
1068         $(SRC)/w32gui.h \
1069         $(SRC)/window.h
1071 $(BLD)/ralloc.$(O) : \
1072         $(SRC)/ralloc.c \
1073         $(EMACS_ROOT)/src/s/ms-w32.h \
1074         $(EMACS_ROOT)/src/m/intel386.h \
1075         $(EMACS_ROOT)/src/config.h \
1076         $(EMACS_ROOT)/nt/inc/sys/param.h \
1077         $(SRC)/s/ms-w32.h \
1078         $(SRC)/m/intel386.h \
1079         $(SRC)/config.h \
1080         $(SRC)/getpagesize.h
1082 $(BLD)/regex.$(O) : \
1083         $(SRC)/regex.c \
1084         $(EMACS_ROOT)/src/s/ms-w32.h \
1085         $(EMACS_ROOT)/src/m/intel386.h \
1086         $(EMACS_ROOT)/src/config.h \
1087         $(SRC)/s/ms-w32.h \
1088         $(SRC)/m/intel386.h \
1089         $(SRC)/buffer.h \
1090         $(SRC)/category.h \
1091         $(SRC)/charset.h \
1092         $(SRC)/config.h \
1093         $(SRC)/regex.h \
1094         $(SRC)/syntax.h
1096 $(BLD)/region-cache.$(O) : \
1097         $(SRC)/region-cache.c \
1098         $(EMACS_ROOT)/src/s/ms-w32.h \
1099         $(EMACS_ROOT)/src/m/intel386.h \
1100         $(EMACS_ROOT)/src/config.h \
1101         $(SRC)/buffer.h \
1102         $(SRC)/region-cache.h
1104 $(BLD)/scroll.$(O) : \
1105         $(SRC)/scroll.c \
1106         $(EMACS_ROOT)/src/s/ms-w32.h \
1107         $(EMACS_ROOT)/src/m/intel386.h \
1108         $(EMACS_ROOT)/src/config.h \
1109         $(SRC)/dispextern.h \
1110         $(SRC)/frame.h \
1111         $(SRC)/keyboard.h \
1112         $(SRC)/termchar.h \
1113         $(SRC)/w32bdf.h \
1114         $(SRC)/w32gui.h \
1115         $(SRC)/window.h
1117 $(BLD)/search.$(O) : \
1118         $(SRC)/search.c \
1119         $(EMACS_ROOT)/src/s/ms-w32.h \
1120         $(EMACS_ROOT)/src/m/intel386.h \
1121         $(EMACS_ROOT)/src/config.h \
1122         $(SRC)/atimer.h \
1123         $(SRC)/blockinput.h \
1124         $(SRC)/buffer.h \
1125         $(SRC)/category.h \
1126         $(SRC)/charset.h \
1127         $(SRC)/commands.h \
1128         $(SRC)/composite.h \
1129         $(SRC)/dispextern.h \
1130         $(SRC)/intervals.h \
1131         $(SRC)/regex.h \
1132         $(SRC)/region-cache.h \
1133         $(SRC)/syntax.h \
1134         $(SRC)/systime.h \
1135         $(SRC)/w32bdf.h \
1136         $(SRC)/w32gui.h
1138 $(BLD)/sound.$(O) : \
1139         $(SRC)/sound.c \
1140         $(SRC)/lisp.h \
1141         $(SRC)/dispextern.h \
1142         $(SRC)/atimer.h \
1143         $(SRC)/syssignal.h
1145 $(BLD)/strftime.$(O) : \
1146         $(SRC)/strftime.c \
1147         $(EMACS_ROOT)/src/s/ms-w32.h \
1148         $(EMACS_ROOT)/src/m/intel386.h \
1149         $(EMACS_ROOT)/src/config.h
1151 $(BLD)/syntax.$(O) : \
1152         $(SRC)/syntax.c \
1153         $(EMACS_ROOT)/src/s/ms-w32.h \
1154         $(EMACS_ROOT)/src/m/intel386.h \
1155         $(EMACS_ROOT)/src/config.h \
1156         $(SRC)/buffer.h \
1157         $(SRC)/category.h \
1158         $(SRC)/charset.h \
1159         $(SRC)/commands.h \
1160         $(SRC)/composite.h \
1161         $(SRC)/dispextern.h \
1162         $(SRC)/intervals.h \
1163         $(SRC)/keymap.h \
1164         $(SRC)/syntax.h \
1165         $(SRC)/w32bdf.h \
1166         $(SRC)/w32gui.h
1168 $(BLD)/sysdep.$(O) : \
1169         $(SRC)/sysdep.c \
1170         $(EMACS_ROOT)/src/s/ms-w32.h \
1171         $(EMACS_ROOT)/src/m/intel386.h \
1172         $(EMACS_ROOT)/src/config.h \
1173         $(EMACS_ROOT)/nt/inc/sys/param.h \
1174         $(EMACS_ROOT)/nt/inc/sys/file.h \
1175         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1176         $(EMACS_ROOT)/nt/inc/sys/file.h \
1177         $(SRC)/atimer.h \
1178         $(SRC)/blockinput.h \
1179         $(SRC)/dispextern.h \
1180         $(SRC)/frame.h \
1181         $(SRC)/keyboard.h \
1182         $(SRC)/ndir.h \
1183         $(SRC)/process.h \
1184         $(SRC)/sysselect.h \
1185         $(SRC)/syssignal.h \
1186         $(SRC)/systime.h \
1187         $(SRC)/systty.h \
1188         $(SRC)/syswait.h \
1189         $(SRC)/termchar.h \
1190         $(SRC)/termhooks.h \
1191         $(SRC)/termopts.h \
1192         $(SRC)/w32bdf.h \
1193         $(SRC)/w32gui.h \
1194         $(SRC)/window.h
1196 $(BLD)/term.$(O) : \
1197         $(SRC)/term.c \
1198         $(EMACS_ROOT)/src/s/ms-w32.h \
1199         $(EMACS_ROOT)/src/m/intel386.h \
1200         $(EMACS_ROOT)/src/config.h \
1201         $(SRC)/ccl.h \
1202         $(SRC)/charset.h \
1203         $(SRC)/cm.h \
1204         $(SRC)/coding.h \
1205         $(SRC)/dispextern.h \
1206         $(SRC)/disptab.h \
1207         $(SRC)/frame.h \
1208         $(SRC)/keyboard.h \
1209         $(SRC)/keymap.h \
1210         $(SRC)/termchar.h \
1211         $(SRC)/termhooks.h \
1212         $(SRC)/termopts.h \
1213         $(SRC)/w32bdf.h \
1214         $(SRC)/w32gui.h \
1215         $(SRC)/window.h
1217 $(BLD)/termcap.$(O) : \
1218         $(SRC)/termcap.c \
1219         $(EMACS_ROOT)/src/s/ms-w32.h \
1220         $(EMACS_ROOT)/src/m/intel386.h \
1221         $(EMACS_ROOT)/src/config.h \
1222         $(EMACS_ROOT)/nt/inc/sys/file.h
1224 $(BLD)/textprop.$(O) : \
1225         $(SRC)/textprop.c \
1226         $(EMACS_ROOT)/src/s/ms-w32.h \
1227         $(EMACS_ROOT)/src/m/intel386.h \
1228         $(EMACS_ROOT)/src/config.h \
1229         $(SRC)/buffer.h \
1230         $(SRC)/composite.h \
1231         $(SRC)/dispextern.h \
1232         $(SRC)/intervals.h \
1233         $(SRC)/w32bdf.h \
1234         $(SRC)/w32gui.h \
1235         $(SRC)/window.h
1237 $(BLD)/tparam.$(O) : \
1238         $(SRC)/tparam.c \
1239         $(EMACS_ROOT)/src/s/ms-w32.h \
1240         $(EMACS_ROOT)/src/m/intel386.h \
1241         $(EMACS_ROOT)/src/config.h
1243 $(BLD)/undo.$(O) : \
1244         $(SRC)/undo.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)/commands.h
1251 $(BLD)/unexw32.$(O) : \
1252         $(SRC)/unexw32.c \
1253         $(EMACS_ROOT)/src/s/ms-w32.h \
1254         $(EMACS_ROOT)/src/m/intel386.h \
1255         $(EMACS_ROOT)/src/config.h \
1256         $(SRC)/w32heap.h
1258 $(BLD)/vm-limit.$(O) : \
1259         $(SRC)/vm-limit.c \
1260         $(EMACS_ROOT)/src/s/ms-w32.h \
1261         $(EMACS_ROOT)/src/m/intel386.h \
1262         $(EMACS_ROOT)/src/config.h \
1263         $(SRC)/mem-limits.h
1265 $(BLD)/window.$(O) : \
1266         $(SRC)/window.c \
1267         $(EMACS_ROOT)/src/s/ms-w32.h \
1268         $(EMACS_ROOT)/src/m/intel386.h \
1269         $(EMACS_ROOT)/src/config.h \
1270         $(SRC)/atimer.h \
1271         $(SRC)/blockinput.h \
1272         $(SRC)/buffer.h \
1273         $(SRC)/commands.h \
1274         $(SRC)/composite.h \
1275         $(SRC)/dispextern.h \
1276         $(SRC)/disptab.h \
1277         $(SRC)/frame.h \
1278         $(SRC)/indent.h \
1279         $(SRC)/intervals.h \
1280         $(SRC)/keyboard.h \
1281         $(SRC)/keymap.h \
1282         $(SRC)/systime.h \
1283         $(SRC)/termchar.h \
1284         $(SRC)/w32bdf.h \
1285         $(SRC)/w32gui.h \
1286         $(SRC)/w32term.h \
1287         $(SRC)/window.h
1289 $(BLD)/xdisp.$(O) : \
1290         $(SRC)/xdisp.c \
1291         $(EMACS_ROOT)/src/s/ms-w32.h \
1292         $(EMACS_ROOT)/src/m/intel386.h \
1293         $(EMACS_ROOT)/src/config.h \
1294         $(SRC)/atimer.h \
1295         $(SRC)/blockinput.h \
1296         $(SRC)/buffer.h \
1297         $(SRC)/ccl.h \
1298         $(SRC)/charset.h \
1299         $(SRC)/coding.h \
1300         $(SRC)/commands.h \
1301         $(SRC)/composite.h \
1302         $(SRC)/dispextern.h \
1303         $(SRC)/disptab.h \
1304         $(SRC)/fontset.h \
1305         $(SRC)/frame.h \
1306         $(SRC)/indent.h \
1307         $(SRC)/intervals.h \
1308         $(SRC)/keyboard.h \
1309         $(SRC)/keymap.h \
1310         $(SRC)/macros.h \
1311         $(SRC)/process.h \
1312         $(SRC)/region-cache.h \
1313         $(SRC)/systime.h \
1314         $(SRC)/termchar.h \
1315         $(SRC)/termhooks.h \
1316         $(SRC)/w32bdf.h \
1317         $(SRC)/w32gui.h \
1318         $(SRC)/w32term.h \
1319         $(SRC)/window.h
1321 $(BLD)/xfaces.$(O): \
1322         $(SRC)/xfaces.c \
1323         $(EMACS_ROOT)/src/s/ms-w32.h \
1324         $(EMACS_ROOT)/src/m/intel386.h \
1325         $(EMACS_ROOT)/src/config.h \
1326         $(SRC)/atimer.h \
1327         $(SRC)/blockinput.h \
1328         $(SRC)/buffer.h \
1329         $(SRC)/charset.h \
1330         $(SRC)/composite.h \
1331         $(SRC)/dispextern.h \
1332         $(SRC)/fontset.h \
1333         $(SRC)/frame.h \
1334         $(SRC)/intervals.h \
1335         $(SRC)/keyboard.h \
1336         $(SRC)/systime.h \
1337         $(SRC)/w32bdf.h \
1338         $(SRC)/w32gui.h \
1339         $(SRC)/w32term.h \
1340         $(SRC)/window.h
1342 $(BLD)/w32fns.$(O): \
1343         $(SRC)/w32fns.c \
1344         $(EMACS_ROOT)/src/s/ms-w32.h \
1345         $(EMACS_ROOT)/src/m/intel386.h \
1346         $(EMACS_ROOT)/src/config.h \
1347         $(SRC)/atimer.h \
1348         $(SRC)/blockinput.h \
1349         $(SRC)/buffer.h \
1350         $(SRC)/ccl.h \
1351         $(SRC)/charset.h \
1352         $(SRC)/coding.h \
1353         $(SRC)/composite.h \
1354         $(SRC)/dispextern.h \
1355         $(SRC)/epaths.h \
1356         $(SRC)/fontset.h \
1357         $(SRC)/frame.h \
1358         $(SRC)/intervals.h \
1359         $(SRC)/keyboard.h \
1360         $(SRC)/systime.h \
1361         $(SRC)/termhooks.h \
1362         $(SRC)/w32bdf.h \
1363         $(SRC)/w32gui.h \
1364         $(SRC)/w32heap.h \
1365         $(SRC)/w32term.h \
1366         $(SRC)/window.h
1368 $(BLD)/w32menu.$(O): \
1369         $(SRC)/w32menu.c \
1370         $(EMACS_ROOT)/src/s/ms-w32.h \
1371         $(EMACS_ROOT)/src/m/intel386.h \
1372         $(EMACS_ROOT)/src/config.h \
1373         $(SRC)/atimer.h \
1374         $(SRC)/blockinput.h \
1375         $(SRC)/buffer.h \
1376         $(SRC)/charset.h \
1377         $(SRC)/coding.h \
1378         $(SRC)/dispextern.h \
1379         $(SRC)/frame.h \
1380         $(SRC)/keyboard.h \
1381         $(SRC)/keymap.h \
1382         $(SRC)/systime.h \
1383         $(SRC)/termhooks.h \
1384         $(SRC)/w32bdf.h \
1385         $(SRC)/w32gui.h \
1386         $(SRC)/w32term.h \
1387         $(SRC)/window.h
1389 $(BLD)/w32term.$(O): \
1390         $(SRC)/w32term.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)/ccl.h \
1398         $(SRC)/charset.h \
1399         $(SRC)/coding.h \
1400         $(SRC)/composite.h \
1401         $(SRC)/dispextern.h \
1402         $(SRC)/disptab.h \
1403         $(SRC)/fontset.h \
1404         $(SRC)/frame.h \
1405         $(SRC)/gnu.h \
1406         $(SRC)/intervals.h \
1407         $(SRC)/keyboard.h \
1408         $(SRC)/keymap.h \
1409         $(SRC)/systime.h \
1410         $(SRC)/systty.h \
1411         $(SRC)/termchar.h \
1412         $(SRC)/termhooks.h \
1413         $(SRC)/termopts.h \
1414         $(SRC)/w32bdf.h \
1415         $(SRC)/w32gui.h \
1416         $(SRC)/w32heap.h \
1417         $(SRC)/w32term.h \
1418         $(SRC)/window.h
1420 $(BLD)/w32select.$(O): \
1421         $(SRC)/w32select.c \
1422         $(EMACS_ROOT)/src/s/ms-w32.h \
1423         $(EMACS_ROOT)/src/m/intel386.h \
1424         $(EMACS_ROOT)/src/config.h \
1425         $(SRC)/atimer.h \
1426         $(SRC)/blockinput.h \
1427         $(SRC)/buffer.h \
1428         $(SRC)/ccl.h \
1429         $(SRC)/charset.h \
1430         $(SRC)/coding.h \
1431         $(SRC)/composite.h \
1432         $(SRC)/dispextern.h \
1433         $(SRC)/frame.h \
1434         $(SRC)/keyboard.h \
1435         $(SRC)/systime.h \
1436         $(SRC)/w32bdf.h \
1437         $(SRC)/w32gui.h \
1438         $(SRC)/w32heap.h \
1439         $(SRC)/w32term.h
1441 $(BLD)/w32reg.$(O): \
1442         $(SRC)/w32reg.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)/systime.h \
1449         $(SRC)/w32bdf.h \
1450         $(SRC)/w32gui.h \
1451         $(SRC)/w32term.h
1453 $(BLD)/w32xfns.$(O): \
1454         $(SRC)/w32xfns.c \
1455         $(EMACS_ROOT)/src/s/ms-w32.h \
1456         $(EMACS_ROOT)/src/m/intel386.h \
1457         $(EMACS_ROOT)/src/config.h \
1458         $(SRC)/atimer.h \
1459         $(SRC)/blockinput.h \
1460         $(SRC)/charset.h \
1461         $(SRC)/fontset.h \
1462         $(SRC)/frame.h \
1463         $(SRC)/keyboard.h \
1464         $(SRC)/systime.h \
1465         $(SRC)/w32bdf.h \
1466         $(SRC)/w32gui.h \
1467         $(SRC)/w32term.h
1469 $(BLD)/w32bdf.$(O): \
1470         $(SRC)/w32bdf.c \
1471         $(EMACS_ROOT)/src/s/ms-w32.h \
1472         $(EMACS_ROOT)/src/m/intel386.h \
1473         $(EMACS_ROOT)/src/config.h \
1474         $(SRC)/atimer.h \
1475         $(SRC)/blockinput.h \
1476         $(SRC)/charset.h \
1477         $(SRC)/dispextern.h \
1478         $(SRC)/fontset.h \
1479         $(SRC)/frame.h \
1480         $(SRC)/keyboard.h \
1481         $(SRC)/systime.h \
1482         $(SRC)/w32bdf.h \
1483         $(SRC)/w32gui.h \
1484         $(SRC)/w32term.h