(byte-compile-warning-types): Add interactive-only.
[emacs.git] / src / makefile.w32-in
bloba7efcc4cae5f28d56b77711ce5f8097f1b357c62
1 #  -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 #  Copyright (c) 2000-2001, 2004 Free Software Foundation, Inc.
4 #  This file is part of GNU Emacs.
6 #  GNU Emacs is free software; you can redistribute it and/or modify
7 #  it under the terms of the GNU General Public License as published by
8 #  the Free Software Foundation; either version 2, or (at your option)
9 #  any later version.
11 #  GNU Emacs is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU General Public License for more details.
16 #  You should have received a copy of the GNU General Public License
17 #  along with GNU Emacs; see the file COPYING.  If not, write to the
18 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 #  Boston, MA 02111-1307, USA.
22 ALL = emacs
24 .PHONY: $(ALL)
26 # Set EMACSLOADPATH correctly (in case already defined in environment).
27 EMACSLOADPATH=$(CURDIR)/../lisp
30 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
31 # the emacs source tree.
33 LOCAL_FLAGS     = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
35 EMACS           = $(BLD)/emacs.exe
36 TEMACS          = $(BLD)/temacs.exe
37 TEMACS_TMP      = $(BLD)/temacs.bin
38 TLIB0           = $(BLD)/temacs0.$(A)
39 TLIB1           = $(BLD)/temacs1.$(A)
40 TLIBW32         = $(BLD)/temacw32.$(A)
41 TOBJ            = $(BLD)/firstfile.$(O)
42 TRES            = $(BLD)/emacs.res
43 TLASTLIB        = $(BLD)/lastfile.$(A)
45 FULL_LINK_FLAGS      = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
48 # Split up the objects into two sets so that we don't run out of
49 # command line space when we link them into a library.
51 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
52 # as the "main" object file when linking.
54 OBJ0 =  $(BLD)/emacs.$(O)
56 OBJ1 =  $(BLD)/abbrev.$(O)                      \
57         $(BLD)/alloc.$(O)                       \
58         $(BLD)/atimer.$(O)                      \
59         $(BLD)/buffer.$(O)                      \
60         $(BLD)/bytecode.$(O)                    \
61         $(BLD)/callint.$(O)                     \
62         $(BLD)/callproc.$(O)                    \
63         $(BLD)/casefiddle.$(O)                  \
64         $(BLD)/cm.$(O)                          \
65         $(BLD)/cmds.$(O)                        \
66         $(BLD)/data.$(O)                        \
67         $(BLD)/dired.$(O)                       \
68         $(BLD)/dispnew.$(O)                     \
69         $(BLD)/doc.$(O)                         \
70         $(BLD)/doprnt.$(O)                      \
71         $(BLD)/editfns.$(O)                     \
72         $(BLD)/eval.$(O)                        \
73         $(BLD)/fileio.$(O)                      \
74         $(BLD)/filelock.$(O)                    \
75         $(BLD)/filemode.$(O)                    \
76         $(BLD)/fns.$(O)                         \
77         $(BLD)/indent.$(O)                      \
78         $(BLD)/insdel.$(O)                      \
79         $(BLD)/keyboard.$(O)                    \
80         $(BLD)/keymap.$(O)                      \
81         $(BLD)/lread.$(O)                       \
82         $(BLD)/macros.$(O)                      \
83         $(BLD)/marker.$(O)                      \
84         $(BLD)/md5.$(O)                         \
85         $(BLD)/minibuf.$(O)                     \
86         $(BLD)/w32.$(O)                         \
87         $(BLD)/w32heap.$(O)                     \
88         $(BLD)/w32inevt.$(O)                    \
89         $(BLD)/w32proc.$(O)                     \
90         $(BLD)/w32console.$(O)                  \
91         $(BLD)/print.$(O)                       \
92         $(BLD)/process.$(O)                     \
93         $(BLD)/regex.$(O)                       \
94         $(BLD)/scroll.$(O)                      \
95         $(BLD)/search.$(O)                      \
96         $(BLD)/sound.$(O)                       \
97         $(BLD)/syntax.$(O)                      \
98         $(BLD)/sysdep.$(O)                      \
99         $(BLD)/term.$(O)                        \
100         $(BLD)/termcap.$(O)                     \
101         $(BLD)/tparam.$(O)                      \
102         $(BLD)/undo.$(O)                        \
103         $(BLD)/unexw32.$(O)                     \
104         $(BLD)/window.$(O)                      \
105         $(BLD)/xdisp.$(O)                       \
106         $(BLD)/casetab.$(O)                     \
107         $(BLD)/floatfns.$(O)                    \
108         $(BLD)/frame.$(O)                       \
109         $(BLD)/gmalloc.$(O)                     \
110         $(BLD)/intervals.$(O)                   \
111         $(BLD)/composite.$(O)                   \
112         $(BLD)/ralloc.$(O)                      \
113         $(BLD)/textprop.$(O)                    \
114         $(BLD)/vm-limit.$(O)                    \
115         $(BLD)/region-cache.$(O)                \
116         $(BLD)/strftime.$(O)                    \
117         $(BLD)/charset.$(O)                     \
118         $(BLD)/coding.$(O)                      \
119         $(BLD)/category.$(O)                    \
120         $(BLD)/ccl.$(O)                         \
121         $(BLD)/fontset.$(O)                     \
122         $(BLD)/fringe.$(O)                      \
123         $(BLD)/image.$(O)
125 WIN32OBJ = $(BLD)/w32term.$(O)                  \
126            $(BLD)/w32xfns.$(O)                  \
127            $(BLD)/w32fns.$(O)                   \
128            $(BLD)/xfaces.$(O)                   \
129            $(BLD)/w32select.$(O)                \
130            $(BLD)/w32menu.$(O)                  \
131            $(BLD)/w32reg.$(O)                   \
132            $(BLD)/w32bdf.$(O)
134 LIBS =  $(TLIB0)        \
135         $(TLIB1)        \
136         $(TLIBW32)      \
137         $(TLASTLIB)     \
138         $(WINMM)    \
139         $(ADVAPI32)     \
140         $(GDI32)        \
141         $(COMDLG32)     \
142         $(USER32)       \
143         $(MPR)          \
144         $(SHELL32)      \
145         $(WINSPOOL)     \
146         $(libc)
149 # Build the executable and dump it.
151 all:            $(ALL)
154 # The dumped executable
156 emacs:          $(BLD) $(EMACS)
157 $(EMACS):       $(DOC) $(TEMACS)
158         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
159         -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
162 # The undumped executable
163 # Note the extra post-link step to insert a static preload heap section.
164 # If preload runs out of memory, increase the last argument to addsection
165 # (it is the preload heap size in MB).
167 temacs:         $(BLD) $(TEMACS)
168 $(TEMACS):      $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
169         $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
170         "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
172 bootstrap: bootstrap-emacs
175 # Build a temacs with a sufficiently large PURESIZE to load the
176 # Lisp files from loadup.el in source form.
178 bootstrap-temacs:
179         $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
182 # Dump an Emacs executable named bootstrap-emacs containing the
183 # files from loadup.el in source form.
185 bootstrap-emacs: bootstrap-temacs
186         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
187         - mkdir "../bin"
188         $(CP) $(EMACS) ../bin
191 # Force recompile of files that depend on PURESIZE
193 bootstrap-clean:
194         - $(DEL) $(BLD)/alloc.$(O)
195         - $(DEL) $(BLD)/data.$(O)
196         - $(DEL) $(BLD)/intervals.$(O)
197         - $(DEL) $(BLD)/keyboard.$(O)
198         - $(DEL) $(BLD)/keymap.$(O)
201 # The resource file.  NT 3.10 requires the use of cvtres; even though
202 # it is not necessary on later versions, it is still ok to use it.
204 $(TRES): ../nt/emacs.rc
205         $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
208 # Build the library.  Split up the build into two phases...otherwise we
209 # run out of command line space.
211 $(TLIB0):       $(OBJ0)
212         - $(DEL) $@
213         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
214 $(TLIB1):       $(OBJ1)
215         - $(DEL) $@
216         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
217 $(TLIBW32):     $(WIN32OBJ)
218         - $(DEL) $@
219         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
222 # Place lastfile.$(O) in its own library so that it can be loaded after
223 # the source libraries but before any system libraries.  Doing so defines
224 # the end of Emacs' data section portably across compilers and systems.
226 $(TLASTLIB):    $(BLD)/lastfile.$(O)
227         - $(DEL) $@
228         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
231 # Assuming INSTALL_DIR is defined, build and install emacs in it.
233 install:        $(ALL)
234         - mkdir "$(INSTALL_DIR)/bin"
235         $(CP) $(EMACS) $(INSTALL_DIR)/bin
238 # Maintenance
240 clean:
241         - $(DEL) *~ "s/*~" "m/*~"
242         - $(DEL) $(COMPILER_TEMP_FILES)
243         - $(DEL_TREE) $(OBJDIR)
245 distclean:      clean
246         - $(DEL) config.h epaths.h
248 cleanall:       clean
249         - $(DEL_TREE) obj
250         - $(DEL_TREE) obj-spd
251         - $(DEL_TREE) oo
252         - $(DEL_TREE) oo-spd
254 ### DEPENDENCIES ###
256 EMACS_ROOT      = ..
257 SRC             = .
259 $(BLD)/abbrev.$(O) : \
260         $(SRC)/abbrev.c \
261         $(EMACS_ROOT)/src/s/ms-w32.h \
262         $(EMACS_ROOT)/src/m/intel386.h \
263         $(EMACS_ROOT)/src/config.h \
264         $(SRC)/buffer.h \
265         $(SRC)/charset.h \
266         $(SRC)/commands.h \
267         $(SRC)/dispextern.h \
268         $(SRC)/syntax.h \
269         $(SRC)/w32bdf.h \
270         $(SRC)/w32gui.h \
271         $(SRC)/window.h
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)/w32.h
372 $(BLD)/casefiddle.$(O) : \
373         $(SRC)/casefiddle.c \
374         $(EMACS_ROOT)/src/s/ms-w32.h \
375         $(EMACS_ROOT)/src/m/intel386.h \
376         $(EMACS_ROOT)/src/config.h \
377         $(SRC)/buffer.h \
378         $(SRC)/charset.h \
379         $(SRC)/commands.h \
380         $(SRC)/composite.h \
381         $(SRC)/keymap.h \
382         $(SRC)/syntax.h
384 $(BLD)/casetab.$(O) : \
385         $(SRC)/casetab.c \
386         $(EMACS_ROOT)/src/s/ms-w32.h \
387         $(EMACS_ROOT)/src/m/intel386.h \
388         $(EMACS_ROOT)/src/config.h \
389         $(SRC)/buffer.h \
390         $(SRC)/charset.h
392 $(BLD)/category.$(O) : \
393         $(SRC)/category.c \
394         $(EMACS_ROOT)/src/s/ms-w32.h \
395         $(EMACS_ROOT)/src/m/intel386.h \
396         $(EMACS_ROOT)/src/config.h \
397         $(SRC)/buffer.h \
398         $(SRC)/category.h \
399         $(SRC)/charset.h \
400         $(SRC)/keymap.h
402 $(BLD)/ccl.$(O) : \
403         $(SRC)/ccl.c \
404         $(EMACS_ROOT)/src/s/ms-w32.h \
405         $(EMACS_ROOT)/src/m/intel386.h \
406         $(EMACS_ROOT)/src/config.h \
407         $(SRC)/ccl.h \
408         $(SRC)/charset.h \
409         $(SRC)/coding.h
411 $(BLD)/charset.$(O) : \
412         $(SRC)/charset.c \
413         $(EMACS_ROOT)/src/s/ms-w32.h \
414         $(EMACS_ROOT)/src/m/intel386.h \
415         $(EMACS_ROOT)/src/config.h \
416         $(SRC)/buffer.h \
417         $(SRC)/ccl.h \
418         $(SRC)/charset.h \
419         $(SRC)/coding.h \
420         $(SRC)/composite.h \
421         $(SRC)/disptab.h
423 $(BLD)/cm.$(O) : \
424         $(SRC)/cm.c \
425         $(EMACS_ROOT)/src/s/ms-w32.h \
426         $(EMACS_ROOT)/src/m/intel386.h \
427         $(EMACS_ROOT)/src/config.h \
428         $(SRC)/cm.h \
429         $(SRC)/termhooks.h
431 $(BLD)/cmds.$(O) : \
432         $(SRC)/cmds.c \
433         $(EMACS_ROOT)/src/s/ms-w32.h \
434         $(EMACS_ROOT)/src/m/intel386.h \
435         $(EMACS_ROOT)/src/config.h \
436         $(SRC)/buffer.h \
437         $(SRC)/charset.h \
438         $(SRC)/commands.h \
439         $(SRC)/dispextern.h \
440         $(SRC)/keyboard.h \
441         $(SRC)/keymap.h \
442         $(SRC)/syntax.h \
443         $(SRC)/w32bdf.h \
444         $(SRC)/w32gui.h \
445         $(SRC)/window.h
447 $(BLD)/coding.$(O) : \
448         $(SRC)/coding.c \
449         $(EMACS_ROOT)/src/s/ms-w32.h \
450         $(EMACS_ROOT)/src/m/intel386.h \
451         $(EMACS_ROOT)/src/config.h \
452         $(SRC)/buffer.h \
453         $(SRC)/ccl.h \
454         $(SRC)/charset.h \
455         $(SRC)/coding.h \
456         $(SRC)/composite.h \
457         $(SRC)/dispextern.h \
458         $(SRC)/intervals.h \
459         $(SRC)/w32bdf.h \
460         $(SRC)/w32gui.h \
461         $(SRC)/window.h
463 $(BLD)/composite.$(O) : \
464         $(SRC)/composite.c \
465         $(EMACS_ROOT)/src/s/ms-w32.h \
466         $(EMACS_ROOT)/src/m/intel386.h \
467         $(EMACS_ROOT)/src/config.h \
468         $(SRC)/buffer.h \
469         $(SRC)/charset.h \
470         $(SRC)/composite.h \
471         $(SRC)/dispextern.h \
472         $(SRC)/intervals.h \
473         $(SRC)/w32bdf.h \
474         $(SRC)/w32gui.h
476 $(BLD)/data.$(O) : \
477         $(SRC)/data.c \
478         $(EMACS_ROOT)/src/s/ms-w32.h \
479         $(EMACS_ROOT)/src/m/intel386.h \
480         $(EMACS_ROOT)/src/config.h \
481         $(SRC)/buffer.h \
482         $(SRC)/charset.h \
483         $(SRC)/frame.h \
484         $(SRC)/keyboard.h \
485         $(SRC)/puresize.h \
486         $(SRC)/syssignal.h
488 $(BLD)/dired.$(O) : \
489         $(SRC)/dired.c \
490         $(EMACS_ROOT)/src/s/ms-w32.h \
491         $(EMACS_ROOT)/src/m/intel386.h \
492         $(EMACS_ROOT)/src/config.h \
493         $(SRC)/buffer.h \
494         $(SRC)/ccl.h \
495         $(SRC)/charset.h \
496         $(SRC)/coding.h \
497         $(SRC)/commands.h \
498         $(SRC)/ndir.h \
499         $(SRC)/regex.h \
500         $(SRC)/systime.h
502 $(BLD)/dispnew.$(O) : \
503         $(SRC)/dispnew.c \
504         $(EMACS_ROOT)/src/s/ms-w32.h \
505         $(EMACS_ROOT)/src/m/intel386.h \
506         $(EMACS_ROOT)/src/config.h \
507         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
508         $(EMACS_ROOT)/nt/inc/sys/file.h \
509         $(SRC)/atimer.h \
510         $(SRC)/blockinput.h \
511         $(SRC)/buffer.h \
512         $(SRC)/charset.h \
513         $(SRC)/cm.h \
514         $(SRC)/commands.h \
515         $(SRC)/composite.h \
516         $(SRC)/dispextern.h \
517         $(SRC)/disptab.h \
518         $(SRC)/frame.h \
519         $(SRC)/indent.h \
520         $(SRC)/intervals.h \
521         $(SRC)/keyboard.h \
522         $(SRC)/process.h \
523         $(SRC)/syssignal.h \
524         $(SRC)/systime.h \
525         $(SRC)/termchar.h \
526         $(SRC)/termhooks.h \
527         $(SRC)/termopts.h \
528         $(SRC)/w32bdf.h \
529         $(SRC)/w32gui.h \
530         $(SRC)/w32term.h \
531         $(SRC)/window.h
533 $(BLD)/doc.$(O) : \
534         $(SRC)/doc.c \
535         $(EMACS_ROOT)/src/s/ms-w32.h \
536         $(EMACS_ROOT)/src/m/intel386.h \
537         $(EMACS_ROOT)/src/config.h \
538         $(EMACS_ROOT)/nt/inc/sys/file.h \
539         $(SRC)/buffer.h \
540         $(SRC)/charset.h \
541         $(SRC)/keyboard.h \
542         $(SRC)/keymap.h
544 $(BLD)/doprnt.$(O) : \
545         $(SRC)/doprnt.c \
546         $(EMACS_ROOT)/src/s/ms-w32.h \
547         $(EMACS_ROOT)/src/m/intel386.h \
548         $(EMACS_ROOT)/src/config.h \
549         $(SRC)/charset.c
551 $(BLD)/editfns.$(O) : \
552         $(SRC)/editfns.c \
553         $(EMACS_ROOT)/src/s/ms-w32.h \
554         $(EMACS_ROOT)/src/m/intel386.h \
555         $(EMACS_ROOT)/src/config.h \
556         $(EMACS_ROOT)/nt/inc/pwd.h \
557         $(SRC)/buffer.h \
558         $(SRC)/ccl.h \
559         $(SRC)/charset.h \
560         $(SRC)/coding.h \
561         $(SRC)/composite.h \
562         $(SRC)/dispextern.h \
563         $(SRC)/frame.h \
564         $(SRC)/intervals.h \
565         $(SRC)/systime.h \
566         $(SRC)/w32bdf.h \
567         $(SRC)/w32gui.h \
568         $(SRC)/window.h
570 $(BLD)/emacs.$(O) : \
571         $(SRC)/emacs.c \
572         $(EMACS_ROOT)/src/s/ms-w32.h \
573         $(EMACS_ROOT)/src/m/intel386.h \
574         $(EMACS_ROOT)/src/config.h \
575         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
576         $(EMACS_ROOT)/nt/inc/sys/file.h \
577         $(SRC)/atimer.h \
578         $(SRC)/blockinput.h \
579         $(SRC)/buffer.h \
580         $(SRC)/commands.h \
581         $(SRC)/composite.h \
582         $(SRC)/dispextern.h \
583         $(SRC)/intervals.h \
584         $(SRC)/keyboard.h \
585         $(SRC)/keymap.h \
586         $(SRC)/process.h \
587         $(SRC)/syssignal.h \
588         $(SRC)/systime.h \
589         $(SRC)/systty.h \
590         $(SRC)/termhooks.h \
591         $(SRC)/w32bdf.h \
592         $(SRC)/w32gui.h \
593         $(SRC)/window.h
595 $(BLD)/eval.$(O) : \
596         $(SRC)/eval.c \
597         $(EMACS_ROOT)/src/s/ms-w32.h \
598         $(EMACS_ROOT)/src/m/intel386.h \
599         $(EMACS_ROOT)/src/config.h \
600         $(SRC)/atimer.h \
601         $(SRC)/blockinput.h \
602         $(SRC)/commands.h \
603         $(SRC)/dispextern.h \
604         $(SRC)/keyboard.h \
605         $(SRC)/systime.h \
606         $(SRC)/w32bdf.h \
607         $(SRC)/w32gui.h
609 $(BLD)/fileio.$(O) : \
610         $(SRC)/fileio.c \
611         $(EMACS_ROOT)/src/s/ms-w32.h \
612         $(EMACS_ROOT)/src/m/intel386.h \
613         $(EMACS_ROOT)/src/config.h \
614         $(EMACS_ROOT)/nt/inc/pwd.h \
615         $(EMACS_ROOT)/nt/inc/sys/param.h \
616         $(EMACS_ROOT)/nt/inc/sys/file.h \
617         $(SRC)/buffer.h \
618         $(SRC)/ccl.h \
619         $(SRC)/charset.h \
620         $(SRC)/coding.h \
621         $(SRC)/commands.h \
622         $(SRC)/composite.h \
623         $(SRC)/dispextern.h \
624         $(SRC)/intervals.h \
625         $(SRC)/systime.h \
626         $(SRC)/w32bdf.h \
627         $(SRC)/w32gui.h \
628         $(SRC)/window.h
630 $(BLD)/filelock.$(O) : \
631         $(SRC)/filelock.c \
632         $(EMACS_ROOT)/src/s/ms-w32.h \
633         $(EMACS_ROOT)/src/m/intel386.h \
634         $(EMACS_ROOT)/src/config.h \
635         $(EMACS_ROOT)/nt/inc/pwd.h \
636         $(EMACS_ROOT)/nt/inc/sys/file.h \
637         $(EMACS_ROOT)/src/epaths.h \
638         $(SRC)/buffer.h \
639         $(SRC)/ccl.h \
640         $(SRC)/charset.h \
641         $(SRC)/coding.h \
642         $(SRC)/systime.h
644 $(BLD)/filemode.$(O) : \
645         $(SRC)/filemode.c \
646         $(EMACS_ROOT)/src/s/ms-w32.h \
647         $(EMACS_ROOT)/src/m/intel386.h \
648         $(EMACS_ROOT)/src/config.h \
649         $(SRC)/s/ms-w32.h \
650         $(SRC)/m/intel386.h \
651         $(SRC)/config.h
653 $(BLD)/firstfile.$(O) : \
654         $(SRC)/firstfile.c \
655         $(EMACS_ROOT)/src/s/ms-w32.h \
656         $(EMACS_ROOT)/src/m/intel386.h \
657         $(EMACS_ROOT)/src/config.h
659 $(BLD)/floatfns.$(O) : \
660         $(SRC)/floatfns.c \
661         $(EMACS_ROOT)/src/s/ms-w32.h \
662         $(EMACS_ROOT)/src/m/intel386.h \
663         $(EMACS_ROOT)/src/config.h \
664         $(SRC)/syssignal.h
666 $(BLD)/fns.$(O) : \
667         $(SRC)/fns.c \
668         $(EMACS_ROOT)/src/s/ms-w32.h \
669         $(EMACS_ROOT)/src/m/intel386.h \
670         $(EMACS_ROOT)/src/config.h \
671         $(SRC)/atimer.h \
672         $(SRC)/blockinput.h \
673         $(SRC)/buffer.h \
674         $(SRC)/ccl.h \
675         $(SRC)/charset.h \
676         $(SRC)/coding.h \
677         $(SRC)/commands.h \
678         $(SRC)/composite.h \
679         $(SRC)/dispextern.h \
680         $(SRC)/frame.h \
681         $(SRC)/intervals.h \
682         $(SRC)/keyboard.h \
683         $(SRC)/keymap.h \
684         $(SRC)/md5.h \
685         $(SRC)/systime.h \
686         $(SRC)/w32bdf.h \
687         $(SRC)/w32gui.h \
688         $(SRC)/window.h
690 $(BLD)/fontset.$(O) : \
691         $(SRC)/fontset.c \
692         $(EMACS_ROOT)/src/s/ms-w32.h \
693         $(EMACS_ROOT)/src/m/intel386.h \
694         $(EMACS_ROOT)/src/config.h \
695         $(SRC)/buffer.h \
696         $(SRC)/ccl.h \
697         $(SRC)/charset.h \
698         $(SRC)/dispextern.h \
699         $(SRC)/fontset.h \
700         $(SRC)/frame.h \
701         $(SRC)/keyboard.h \
702         $(SRC)/w32bdf.h \
703         $(SRC)/w32gui.h \
704         $(SRC)/window.h
706 $(BLD)/frame.$(O) : \
707         $(SRC)/frame.c \
708         $(EMACS_ROOT)/src/s/ms-w32.h \
709         $(EMACS_ROOT)/src/m/intel386.h \
710         $(EMACS_ROOT)/src/config.h \
711         $(SRC)/atimer.h \
712         $(SRC)/blockinput.h \
713         $(SRC)/buffer.h \
714         $(SRC)/charset.h \
715         $(SRC)/commands.h \
716         $(SRC)/dispextern.h \
717         $(SRC)/fontset.h \
718         $(SRC)/frame.h \
719         $(SRC)/keyboard.h \
720         $(SRC)/systime.h \
721         $(SRC)/termhooks.h \
722         $(SRC)/w32bdf.h \
723         $(SRC)/w32gui.h \
724         $(SRC)/w32term.h \
725         $(SRC)/window.h
727 $(BLD)/fringe.$(O) : \
728         $(SRC)/fringe.c \
729         $(EMACS_ROOT)/src/s/ms-w32.h \
730         $(EMACS_ROOT)/src/m/intel386.h \
731         $(EMACS_ROOT)/src/config.h \
732         $(SRC)/atimer.h \
733         $(SRC)/blockinput.h \
734         $(SRC)/buffer.h \
735         $(SRC)/dispextern.h \
736         $(SRC)/frame.h \
737         $(SRC)/systime.h \
738         $(SRC)/w32bdf.h \
739         $(SRC)/w32gui.h \
740         $(SRC)/window.h
742 $(BLD)/gmalloc.$(O) : \
743         $(SRC)/gmalloc.c \
744         $(EMACS_ROOT)/src/s/ms-w32.h \
745         $(EMACS_ROOT)/src/m/intel386.h \
746         $(EMACS_ROOT)/src/config.h \
747         $(EMACS_ROOT)/nt/inc/sys/param.h \
748         $(SRC)/getpagesize.h
750 $(BLD)/image.$(O): \
751         $(SRC)/image.c \
752         $(EMACS_ROOT)/src/s/ms-w32.h \
753         $(EMACS_ROOT)/src/m/intel386.h \
754         $(EMACS_ROOT)/src/config.h \
755         $(SRC)/atimer.h \
756         $(SRC)/blockinput.h \
757         $(SRC)/dispextern.h \
758         $(SRC)/epaths.h \
759         $(SRC)/frame.h \
760         $(SRC)/systime.h \
761         $(SRC)/termhooks.h \
762         $(SRC)/w32bdf.h \
763         $(SRC)/w32gui.h \
764         $(SRC)/w32heap.h \
765         $(SRC)/w32term.h \
766         $(SRC)/window.h
768 $(BLD)/indent.$(O) : \
769         $(SRC)/indent.c \
770         $(EMACS_ROOT)/src/s/ms-w32.h \
771         $(EMACS_ROOT)/src/m/intel386.h \
772         $(EMACS_ROOT)/src/config.h \
773         $(SRC)/buffer.h \
774         $(SRC)/category.h \
775         $(SRC)/charset.h \
776         $(SRC)/composite.h \
777         $(SRC)/dispextern.h \
778         $(SRC)/disptab.h \
779         $(SRC)/frame.h \
780         $(SRC)/indent.h \
781         $(SRC)/intervals.h \
782         $(SRC)/keyboard.h \
783         $(SRC)/region-cache.h \
784         $(SRC)/termchar.h \
785         $(SRC)/termopts.h \
786         $(SRC)/w32bdf.h \
787         $(SRC)/w32gui.h \
788         $(SRC)/window.h
790 $(BLD)/insdel.$(O) : \
791         $(SRC)/insdel.c \
792         $(EMACS_ROOT)/src/s/ms-w32.h \
793         $(EMACS_ROOT)/src/m/intel386.h \
794         $(EMACS_ROOT)/src/config.h \
795         $(SRC)/atimer.h \
796         $(SRC)/blockinput.h \
797         $(SRC)/buffer.h \
798         $(SRC)/charset.h \
799         $(SRC)/composite.h \
800         $(SRC)/dispextern.h \
801         $(SRC)/intervals.h \
802         $(SRC)/region-cache.h \
803         $(SRC)/systime.h \
804         $(SRC)/w32bdf.h \
805         $(SRC)/w32gui.h \
806         $(SRC)/window.h
808 $(BLD)/intervals.$(O) : \
809         $(SRC)/intervals.c \
810         $(EMACS_ROOT)/src/s/ms-w32.h \
811         $(EMACS_ROOT)/src/m/intel386.h \
812         $(EMACS_ROOT)/src/config.h \
813         $(SRC)/buffer.h \
814         $(SRC)/composite.h \
815         $(SRC)/dispextern.h \
816         $(SRC)/intervals.h \
817         $(SRC)/keyboard.h \
818         $(SRC)/keymap.h \
819         $(SRC)/puresize.h \
820         $(SRC)/w32bdf.h \
821         $(SRC)/w32gui.h
823 $(BLD)/keyboard.$(O) : \
824         $(SRC)/keyboard.c \
825         $(EMACS_ROOT)/src/s/ms-w32.h \
826         $(EMACS_ROOT)/src/m/intel386.h \
827         $(EMACS_ROOT)/src/config.h \
828         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
829         $(EMACS_ROOT)/nt/inc/sys/file.h \
830         $(SRC)/atimer.h \
831         $(SRC)/blockinput.h \
832         $(SRC)/buffer.h \
833         $(SRC)/charset.h \
834         $(SRC)/commands.h \
835         $(SRC)/composite.h \
836         $(SRC)/dispextern.h \
837         $(SRC)/disptab.h \
838         $(SRC)/frame.h \
839         $(SRC)/intervals.h \
840         $(SRC)/keyboard.h \
841         $(SRC)/keymap.h \
842         $(SRC)/macros.h \
843         $(SRC)/puresize.h \
844         $(SRC)/syntax.h \
845         $(SRC)/syssignal.h \
846         $(SRC)/systime.h \
847         $(SRC)/systty.h \
848         $(SRC)/termchar.h \
849         $(SRC)/termhooks.h \
850         $(SRC)/termopts.h \
851         $(SRC)/w32bdf.h \
852         $(SRC)/w32gui.h \
853         $(SRC)/w32term.h \
854         $(SRC)/window.h
856 $(BLD)/keymap.$(O) : \
857         $(SRC)/keymap.c \
858         $(EMACS_ROOT)/src/s/ms-w32.h \
859         $(EMACS_ROOT)/src/m/intel386.h \
860         $(EMACS_ROOT)/src/config.h \
861         $(SRC)/atimer.h \
862         $(SRC)/blockinput.h \
863         $(SRC)/buffer.h \
864         $(SRC)/charset.h \
865         $(SRC)/commands.h \
866         $(SRC)/composite.h \
867         $(SRC)/dispextern.h \
868         $(SRC)/intervals.h \
869         $(SRC)/keyboard.h \
870         $(SRC)/keymap.h \
871         $(SRC)/puresize.h \
872         $(SRC)/systime.h \
873         $(SRC)/termhooks.h \
874         $(SRC)/w32bdf.h \
875         $(SRC)/w32gui.h
877 $(BLD)/lastfile.$(O) : \
878         $(SRC)/lastfile.c \
879         $(EMACS_ROOT)/src/s/ms-w32.h \
880         $(EMACS_ROOT)/src/m/intel386.h \
881         $(EMACS_ROOT)/src/config.h
883 $(BLD)/lread.$(O) : \
884         $(SRC)/lread.c \
885         $(EMACS_ROOT)/src/s/ms-w32.h \
886         $(EMACS_ROOT)/src/m/intel386.h \
887         $(EMACS_ROOT)/src/config.h \
888         $(EMACS_ROOT)/nt/inc/sys/file.h \
889         $(EMACS_ROOT)/src/epaths.h \
890         $(SRC)/buffer.h \
891         $(SRC)/ccl.h \
892         $(SRC)/charset.h \
893         $(SRC)/coding.h \
894         $(SRC)/commands.h \
895         $(SRC)/composite.h \
896         $(SRC)/dispextern.h \
897         $(SRC)/intervals.h \
898         $(SRC)/keyboard.h \
899         $(SRC)/termhooks.h \
900         $(SRC)/w32bdf.h \
901         $(SRC)/w32gui.h
903 $(BLD)/macros.$(O) : \
904         $(SRC)/macros.c \
905         $(EMACS_ROOT)/src/s/ms-w32.h \
906         $(EMACS_ROOT)/src/m/intel386.h \
907         $(EMACS_ROOT)/src/config.h \
908         $(SRC)/buffer.h \
909         $(SRC)/commands.h \
910         $(SRC)/dispextern.h \
911         $(SRC)/keyboard.h \
912         $(SRC)/macros.h \
913         $(SRC)/w32bdf.h \
914         $(SRC)/w32gui.h \
915         $(SRC)/window.h
917 $(BLD)/marker.$(O) : \
918         $(SRC)/marker.c \
919         $(EMACS_ROOT)/src/s/ms-w32.h \
920         $(EMACS_ROOT)/src/m/intel386.h \
921         $(EMACS_ROOT)/src/config.h \
922         $(SRC)/buffer.h \
923         $(SRC)/charset.h
925 $(BLD)/md5.$(O) : \
926         $(SRC)/md5.c \
927         $(SRC)/md5.h
929 $(BLD)/minibuf.$(O) : \
930         $(SRC)/minibuf.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 \
936         $(SRC)/commands.h \
937         $(SRC)/composite.h \
938         $(SRC)/dispextern.h \
939         $(SRC)/frame.h \
940         $(SRC)/intervals.h \
941         $(SRC)/keyboard.h \
942         $(SRC)/keymap.h \
943         $(SRC)/syntax.h \
944         $(SRC)/w32bdf.h \
945         $(SRC)/w32gui.h \
946         $(SRC)/window.h
948 $(BLD)/w32.$(O) : \
949         $(SRC)/w32.c \
950         $(EMACS_ROOT)/nt/inc/pwd.h \
951         $(SRC)/s/ms-w32.h \
952         $(SRC)/m/intel386.h \
953         $(SRC)/config.h \
954         $(SRC)/ndir.h \
955         $(SRC)/systime.h \
956         $(SRC)/w32.h \
957         $(SRC)/w32heap.h
959 $(BLD)/w32heap.$(O) : \
960         $(SRC)/w32heap.c \
961         $(SRC)/s/ms-w32.h \
962         $(SRC)/m/intel386.h \
963         $(SRC)/config.h \
964         $(SRC)/w32heap.h
966 $(BLD)/w32inevt.$(O) : \
967         $(SRC)/w32inevt.c \
968         $(SRC)/s/ms-w32.h \
969         $(SRC)/m/intel386.h \
970         $(SRC)/config.h \
971         $(SRC)/atimer.h \
972         $(SRC)/blockinput.h \
973         $(SRC)/frame.h \
974         $(SRC)/keyboard.h \
975         $(SRC)/systime.h \
976         $(SRC)/termhooks.h \
977         $(SRC)/w32bdf.h \
978         $(SRC)/w32gui.h \
979         $(SRC)/w32heap.h \
980         $(SRC)/w32term.h
982 $(BLD)/w32proc.$(O) : \
983         $(SRC)/w32proc.c \
984         $(SRC)/s/ms-w32.h \
985         $(SRC)/m/intel386.h \
986         $(SRC)/config.h \
987         $(SRC)/process.h \
988         $(SRC)/syssignal.h \
989         $(SRC)/systime.h \
990         $(SRC)/syswait.h \
991         $(SRC)/w32.h \
992         $(SRC)/w32bdf.h \
993         $(SRC)/w32gui.h \
994         $(SRC)/w32heap.h \
995         $(SRC)/w32term.h
997 $(BLD)/w32console.$(O) : \
998         $(SRC)/w32console.c \
999         $(SRC)/s/ms-w32.h \
1000         $(SRC)/m/intel386.h \
1001         $(SRC)/ccl.h \
1002         $(SRC)/charset.h \
1003         $(SRC)/coding.h \
1004         $(SRC)/config.h \
1005         $(SRC)/dispextern.h \
1006         $(SRC)/disptab.h \
1007         $(SRC)/frame.h \
1008         $(SRC)/termhooks.h \
1009         $(SRC)/w32bdf.h \
1010         $(SRC)/w32gui.h \
1011         $(SRC)/w32inevt.h
1013 $(BLD)/print.$(O) : \
1014         $(SRC)/print.c \
1015         $(EMACS_ROOT)/src/s/ms-w32.h \
1016         $(EMACS_ROOT)/src/m/intel386.h \
1017         $(EMACS_ROOT)/src/config.h \
1018         $(SRC)/buffer.h \
1019         $(SRC)/charset.h \
1020         $(SRC)/composite.h \
1021         $(SRC)/dispextern.h \
1022         $(SRC)/frame.h \
1023         $(SRC)/intervals.h \
1024         $(SRC)/keyboard.h \
1025         $(SRC)/process.h \
1026         $(SRC)/termchar.h \
1027         $(SRC)/w32bdf.h \
1028         $(SRC)/w32gui.h \
1029         $(SRC)/window.h
1031 $(BLD)/process.$(O) : \
1032         $(SRC)/process.c \
1033         $(EMACS_ROOT)/src/s/ms-w32.h \
1034         $(EMACS_ROOT)/src/m/intel386.h \
1035         $(EMACS_ROOT)/src/config.h \
1036         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1037         $(EMACS_ROOT)/nt/inc/sys/file.h \
1038         $(SRC)/atimer.h \
1039         $(SRC)/blockinput.h \
1040         $(SRC)/buffer.h \
1041         $(SRC)/ccl.h \
1042         $(SRC)/charset.h \
1043         $(SRC)/coding.h \
1044         $(SRC)/commands.h \
1045         $(SRC)/composite.h \
1046         $(SRC)/dispextern.h \
1047         $(SRC)/frame.h \
1048         $(SRC)/keyboard.h \
1049         $(SRC)/process.h \
1050         $(SRC)/sysselect.h \
1051         $(SRC)/syssignal.h \
1052         $(SRC)/systime.h \
1053         $(SRC)/systty.h \
1054         $(SRC)/syswait.h \
1055         $(SRC)/termhooks.h \
1056         $(SRC)/termopts.h \
1057         $(SRC)/w32bdf.h \
1058         $(SRC)/w32gui.h \
1059         $(SRC)/window.h
1061 $(BLD)/ralloc.$(O) : \
1062         $(SRC)/ralloc.c \
1063         $(EMACS_ROOT)/src/s/ms-w32.h \
1064         $(EMACS_ROOT)/src/m/intel386.h \
1065         $(EMACS_ROOT)/src/config.h \
1066         $(EMACS_ROOT)/nt/inc/sys/param.h \
1067         $(SRC)/s/ms-w32.h \
1068         $(SRC)/m/intel386.h \
1069         $(SRC)/config.h \
1070         $(SRC)/getpagesize.h
1072 $(BLD)/regex.$(O) : \
1073         $(SRC)/regex.c \
1074         $(EMACS_ROOT)/src/s/ms-w32.h \
1075         $(EMACS_ROOT)/src/m/intel386.h \
1076         $(EMACS_ROOT)/src/config.h \
1077         $(SRC)/s/ms-w32.h \
1078         $(SRC)/m/intel386.h \
1079         $(SRC)/buffer.h \
1080         $(SRC)/category.h \
1081         $(SRC)/charset.h \
1082         $(SRC)/config.h \
1083         $(SRC)/regex.h \
1084         $(SRC)/syntax.h
1086 $(BLD)/region-cache.$(O) : \
1087         $(SRC)/region-cache.c \
1088         $(EMACS_ROOT)/src/s/ms-w32.h \
1089         $(EMACS_ROOT)/src/m/intel386.h \
1090         $(EMACS_ROOT)/src/config.h \
1091         $(SRC)/buffer.h \
1092         $(SRC)/region-cache.h
1094 $(BLD)/scroll.$(O) : \
1095         $(SRC)/scroll.c \
1096         $(EMACS_ROOT)/src/s/ms-w32.h \
1097         $(EMACS_ROOT)/src/m/intel386.h \
1098         $(EMACS_ROOT)/src/config.h \
1099         $(SRC)/dispextern.h \
1100         $(SRC)/frame.h \
1101         $(SRC)/keyboard.h \
1102         $(SRC)/termchar.h \
1103         $(SRC)/w32bdf.h \
1104         $(SRC)/w32gui.h \
1105         $(SRC)/window.h
1107 $(BLD)/search.$(O) : \
1108         $(SRC)/search.c \
1109         $(EMACS_ROOT)/src/s/ms-w32.h \
1110         $(EMACS_ROOT)/src/m/intel386.h \
1111         $(EMACS_ROOT)/src/config.h \
1112         $(SRC)/atimer.h \
1113         $(SRC)/blockinput.h \
1114         $(SRC)/buffer.h \
1115         $(SRC)/category.h \
1116         $(SRC)/charset.h \
1117         $(SRC)/commands.h \
1118         $(SRC)/composite.h \
1119         $(SRC)/dispextern.h \
1120         $(SRC)/intervals.h \
1121         $(SRC)/regex.h \
1122         $(SRC)/region-cache.h \
1123         $(SRC)/syntax.h \
1124         $(SRC)/systime.h \
1125         $(SRC)/w32bdf.h \
1126         $(SRC)/w32gui.h
1128 $(BLD)/sound.$(O) : \
1129         $(SRC)/sound.c \
1130         $(SRC)/lisp.h \
1131         $(SRC)/dispextern.h \
1132         $(SRC)/atimer.h \
1133         $(SRC)/syssignal.h
1135 $(BLD)/strftime.$(O) : \
1136         $(SRC)/strftime.c \
1137         $(EMACS_ROOT)/src/s/ms-w32.h \
1138         $(EMACS_ROOT)/src/m/intel386.h \
1139         $(EMACS_ROOT)/src/config.h
1141 $(BLD)/syntax.$(O) : \
1142         $(SRC)/syntax.c \
1143         $(EMACS_ROOT)/src/s/ms-w32.h \
1144         $(EMACS_ROOT)/src/m/intel386.h \
1145         $(EMACS_ROOT)/src/config.h \
1146         $(SRC)/buffer.h \
1147         $(SRC)/category.h \
1148         $(SRC)/charset.h \
1149         $(SRC)/commands.h \
1150         $(SRC)/composite.h \
1151         $(SRC)/dispextern.h \
1152         $(SRC)/intervals.h \
1153         $(SRC)/keymap.h \
1154         $(SRC)/syntax.h \
1155         $(SRC)/w32bdf.h \
1156         $(SRC)/w32gui.h
1158 $(BLD)/sysdep.$(O) : \
1159         $(SRC)/sysdep.c \
1160         $(EMACS_ROOT)/src/s/ms-w32.h \
1161         $(EMACS_ROOT)/src/m/intel386.h \
1162         $(EMACS_ROOT)/src/config.h \
1163         $(EMACS_ROOT)/nt/inc/sys/param.h \
1164         $(EMACS_ROOT)/nt/inc/sys/file.h \
1165         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1166         $(EMACS_ROOT)/nt/inc/sys/file.h \
1167         $(SRC)/atimer.h \
1168         $(SRC)/blockinput.h \
1169         $(SRC)/dispextern.h \
1170         $(SRC)/frame.h \
1171         $(SRC)/keyboard.h \
1172         $(SRC)/ndir.h \
1173         $(SRC)/process.h \
1174         $(SRC)/sysselect.h \
1175         $(SRC)/syssignal.h \
1176         $(SRC)/systime.h \
1177         $(SRC)/systty.h \
1178         $(SRC)/syswait.h \
1179         $(SRC)/termchar.h \
1180         $(SRC)/termhooks.h \
1181         $(SRC)/termopts.h \
1182         $(SRC)/w32bdf.h \
1183         $(SRC)/w32gui.h \
1184         $(SRC)/window.h
1186 $(BLD)/term.$(O) : \
1187         $(SRC)/term.c \
1188         $(EMACS_ROOT)/src/s/ms-w32.h \
1189         $(EMACS_ROOT)/src/m/intel386.h \
1190         $(EMACS_ROOT)/src/config.h \
1191         $(SRC)/ccl.h \
1192         $(SRC)/charset.h \
1193         $(SRC)/cm.h \
1194         $(SRC)/coding.h \
1195         $(SRC)/dispextern.h \
1196         $(SRC)/disptab.h \
1197         $(SRC)/frame.h \
1198         $(SRC)/keyboard.h \
1199         $(SRC)/keymap.h \
1200         $(SRC)/termchar.h \
1201         $(SRC)/termhooks.h \
1202         $(SRC)/termopts.h \
1203         $(SRC)/w32bdf.h \
1204         $(SRC)/w32gui.h \
1205         $(SRC)/window.h
1207 $(BLD)/termcap.$(O) : \
1208         $(SRC)/termcap.c \
1209         $(EMACS_ROOT)/src/s/ms-w32.h \
1210         $(EMACS_ROOT)/src/m/intel386.h \
1211         $(EMACS_ROOT)/src/config.h \
1212         $(EMACS_ROOT)/nt/inc/sys/file.h
1214 $(BLD)/textprop.$(O) : \
1215         $(SRC)/textprop.c \
1216         $(EMACS_ROOT)/src/s/ms-w32.h \
1217         $(EMACS_ROOT)/src/m/intel386.h \
1218         $(EMACS_ROOT)/src/config.h \
1219         $(SRC)/buffer.h \
1220         $(SRC)/composite.h \
1221         $(SRC)/dispextern.h \
1222         $(SRC)/intervals.h \
1223         $(SRC)/w32bdf.h \
1224         $(SRC)/w32gui.h \
1225         $(SRC)/window.h
1227 $(BLD)/tparam.$(O) : \
1228         $(SRC)/tparam.c \
1229         $(EMACS_ROOT)/src/s/ms-w32.h \
1230         $(EMACS_ROOT)/src/m/intel386.h \
1231         $(EMACS_ROOT)/src/config.h
1233 $(BLD)/undo.$(O) : \
1234         $(SRC)/undo.c \
1235         $(EMACS_ROOT)/src/s/ms-w32.h \
1236         $(EMACS_ROOT)/src/m/intel386.h \
1237         $(EMACS_ROOT)/src/config.h \
1238         $(SRC)/buffer.h \
1239         $(SRC)/commands.h
1241 $(BLD)/unexw32.$(O) : \
1242         $(SRC)/unexw32.c \
1243         $(EMACS_ROOT)/src/s/ms-w32.h \
1244         $(EMACS_ROOT)/src/m/intel386.h \
1245         $(EMACS_ROOT)/src/config.h \
1246         $(SRC)/w32heap.h
1248 $(BLD)/vm-limit.$(O) : \
1249         $(SRC)/vm-limit.c \
1250         $(EMACS_ROOT)/src/s/ms-w32.h \
1251         $(EMACS_ROOT)/src/m/intel386.h \
1252         $(EMACS_ROOT)/src/config.h \
1253         $(SRC)/mem-limits.h
1255 $(BLD)/window.$(O) : \
1256         $(SRC)/window.c \
1257         $(EMACS_ROOT)/src/s/ms-w32.h \
1258         $(EMACS_ROOT)/src/m/intel386.h \
1259         $(EMACS_ROOT)/src/config.h \
1260         $(SRC)/atimer.h \
1261         $(SRC)/blockinput.h \
1262         $(SRC)/buffer.h \
1263         $(SRC)/commands.h \
1264         $(SRC)/composite.h \
1265         $(SRC)/dispextern.h \
1266         $(SRC)/disptab.h \
1267         $(SRC)/frame.h \
1268         $(SRC)/indent.h \
1269         $(SRC)/intervals.h \
1270         $(SRC)/keyboard.h \
1271         $(SRC)/keymap.h \
1272         $(SRC)/systime.h \
1273         $(SRC)/termchar.h \
1274         $(SRC)/w32bdf.h \
1275         $(SRC)/w32gui.h \
1276         $(SRC)/w32term.h \
1277         $(SRC)/window.h
1279 $(BLD)/xdisp.$(O) : \
1280         $(SRC)/xdisp.c \
1281         $(EMACS_ROOT)/src/s/ms-w32.h \
1282         $(EMACS_ROOT)/src/m/intel386.h \
1283         $(EMACS_ROOT)/src/config.h \
1284         $(SRC)/atimer.h \
1285         $(SRC)/blockinput.h \
1286         $(SRC)/buffer.h \
1287         $(SRC)/ccl.h \
1288         $(SRC)/charset.h \
1289         $(SRC)/coding.h \
1290         $(SRC)/commands.h \
1291         $(SRC)/composite.h \
1292         $(SRC)/dispextern.h \
1293         $(SRC)/disptab.h \
1294         $(SRC)/fontset.h \
1295         $(SRC)/frame.h \
1296         $(SRC)/indent.h \
1297         $(SRC)/intervals.h \
1298         $(SRC)/keyboard.h \
1299         $(SRC)/keymap.h \
1300         $(SRC)/macros.h \
1301         $(SRC)/process.h \
1302         $(SRC)/region-cache.h \
1303         $(SRC)/systime.h \
1304         $(SRC)/termchar.h \
1305         $(SRC)/termhooks.h \
1306         $(SRC)/w32bdf.h \
1307         $(SRC)/w32gui.h \
1308         $(SRC)/w32term.h \
1309         $(SRC)/window.h
1311 $(BLD)/xfaces.$(O): \
1312         $(SRC)/xfaces.c \
1313         $(EMACS_ROOT)/src/s/ms-w32.h \
1314         $(EMACS_ROOT)/src/m/intel386.h \
1315         $(EMACS_ROOT)/src/config.h \
1316         $(SRC)/atimer.h \
1317         $(SRC)/blockinput.h \
1318         $(SRC)/buffer.h \
1319         $(SRC)/charset.h \
1320         $(SRC)/composite.h \
1321         $(SRC)/dispextern.h \
1322         $(SRC)/fontset.h \
1323         $(SRC)/frame.h \
1324         $(SRC)/intervals.h \
1325         $(SRC)/keyboard.h \
1326         $(SRC)/systime.h \
1327         $(SRC)/w32bdf.h \
1328         $(SRC)/w32gui.h \
1329         $(SRC)/w32term.h \
1330         $(SRC)/window.h
1332 $(BLD)/w32fns.$(O): \
1333         $(SRC)/w32fns.c \
1334         $(EMACS_ROOT)/src/s/ms-w32.h \
1335         $(EMACS_ROOT)/src/m/intel386.h \
1336         $(EMACS_ROOT)/src/config.h \
1337         $(SRC)/atimer.h \
1338         $(SRC)/blockinput.h \
1339         $(SRC)/buffer.h \
1340         $(SRC)/ccl.h \
1341         $(SRC)/charset.h \
1342         $(SRC)/coding.h \
1343         $(SRC)/composite.h \
1344         $(SRC)/dispextern.h \
1345         $(SRC)/epaths.h \
1346         $(SRC)/fontset.h \
1347         $(SRC)/frame.h \
1348         $(SRC)/intervals.h \
1349         $(SRC)/keyboard.h \
1350         $(SRC)/systime.h \
1351         $(SRC)/termhooks.h \
1352         $(SRC)/w32bdf.h \
1353         $(SRC)/w32gui.h \
1354         $(SRC)/w32heap.h \
1355         $(SRC)/w32term.h \
1356         $(SRC)/window.h
1358 $(BLD)/w32menu.$(O): \
1359         $(SRC)/w32menu.c \
1360         $(EMACS_ROOT)/src/s/ms-w32.h \
1361         $(EMACS_ROOT)/src/m/intel386.h \
1362         $(EMACS_ROOT)/src/config.h \
1363         $(SRC)/atimer.h \
1364         $(SRC)/blockinput.h \
1365         $(SRC)/buffer.h \
1366         $(SRC)/charset.h \
1367         $(SRC)/coding.h \
1368         $(SRC)/dispextern.h \
1369         $(SRC)/frame.h \
1370         $(SRC)/keyboard.h \
1371         $(SRC)/keymap.h \
1372         $(SRC)/systime.h \
1373         $(SRC)/termhooks.h \
1374         $(SRC)/w32bdf.h \
1375         $(SRC)/w32gui.h \
1376         $(SRC)/w32term.h \
1377         $(SRC)/window.h
1379 $(BLD)/w32term.$(O): \
1380         $(SRC)/w32term.c \
1381         $(EMACS_ROOT)/src/s/ms-w32.h \
1382         $(EMACS_ROOT)/src/m/intel386.h \
1383         $(EMACS_ROOT)/src/config.h \
1384         $(SRC)/atimer.h \
1385         $(SRC)/blockinput.h \
1386         $(SRC)/buffer.h \
1387         $(SRC)/ccl.h \
1388         $(SRC)/charset.h \
1389         $(SRC)/coding.h \
1390         $(SRC)/composite.h \
1391         $(SRC)/dispextern.h \
1392         $(SRC)/disptab.h \
1393         $(SRC)/fontset.h \
1394         $(SRC)/frame.h \
1395         $(SRC)/gnu.h \
1396         $(SRC)/intervals.h \
1397         $(SRC)/keyboard.h \
1398         $(SRC)/keymap.h \
1399         $(SRC)/systime.h \
1400         $(SRC)/systty.h \
1401         $(SRC)/termchar.h \
1402         $(SRC)/termhooks.h \
1403         $(SRC)/termopts.h \
1404         $(SRC)/w32bdf.h \
1405         $(SRC)/w32gui.h \
1406         $(SRC)/w32heap.h \
1407         $(SRC)/w32term.h \
1408         $(SRC)/window.h
1410 $(BLD)/w32select.$(O): \
1411         $(SRC)/w32select.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)/frame.h \
1424         $(SRC)/keyboard.h \
1425         $(SRC)/systime.h \
1426         $(SRC)/w32bdf.h \
1427         $(SRC)/w32gui.h \
1428         $(SRC)/w32term.h
1430 $(BLD)/w32reg.$(O): \
1431         $(SRC)/w32reg.c \
1432         $(EMACS_ROOT)/src/s/ms-w32.h \
1433         $(EMACS_ROOT)/src/m/intel386.h \
1434         $(EMACS_ROOT)/src/config.h \
1435         $(SRC)/atimer.h \
1436         $(SRC)/blockinput.h \
1437         $(SRC)/systime.h \
1438         $(SRC)/w32bdf.h \
1439         $(SRC)/w32gui.h \
1440         $(SRC)/w32term.h
1442 $(BLD)/w32xfns.$(O): \
1443         $(SRC)/w32xfns.c \
1444         $(EMACS_ROOT)/src/s/ms-w32.h \
1445         $(EMACS_ROOT)/src/m/intel386.h \
1446         $(EMACS_ROOT)/src/config.h \
1447         $(SRC)/atimer.h \
1448         $(SRC)/blockinput.h \
1449         $(SRC)/charset.h \
1450         $(SRC)/fontset.h \
1451         $(SRC)/frame.h \
1452         $(SRC)/keyboard.h \
1453         $(SRC)/systime.h \
1454         $(SRC)/w32bdf.h \
1455         $(SRC)/w32gui.h \
1456         $(SRC)/w32term.h
1458 $(BLD)/w32bdf.$(O): \
1459         $(SRC)/w32bdf.c \
1460         $(EMACS_ROOT)/src/s/ms-w32.h \
1461         $(EMACS_ROOT)/src/m/intel386.h \
1462         $(EMACS_ROOT)/src/config.h \
1463         $(SRC)/atimer.h \
1464         $(SRC)/blockinput.h \
1465         $(SRC)/charset.h \
1466         $(SRC)/dispextern.h \
1467         $(SRC)/fontset.h \
1468         $(SRC)/frame.h \
1469         $(SRC)/keyboard.h \
1470         $(SRC)/systime.h \
1471         $(SRC)/w32bdf.h \
1472         $(SRC)/w32gui.h \
1473         $(SRC)/w32term.h