[HAVE_TERMCAP_H]: Include <termcap.h>.
[emacs.git] / src / makefile.nt
blob420eb4d7a941101162fa1f254147b19e914a889e
1 #  Makefile for GNU Emacs on the Microsoft W32 API.
2 #  Copyright (c) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
3 #   Tim Fleehart (apollo@online.com)            17-Apr-92
4 #   Geoff Voelker (voelker@cs.washington.edu)   11-20-93
6 #  This file is part of GNU Emacs.
7 #  
8 #  GNU Emacs is free software; you can redistribute it and/or modify
9 #  it under the terms of the GNU General Public License as published by
10 #  the Free Software Foundation; either version 2, or (at your option)
11 #  any later version.
12 #  
13 #  GNU Emacs is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #  GNU General Public License for more details.
17 #  
18 #  You should have received a copy of the GNU General Public License
19 #  along with GNU Emacs; see the file COPYING.  If not, write to the
20 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 #  Boston, MA 02111-1307, USA.
24
25 # Sets up the system dependent macros.
27 !include ..\nt\makefile.def
29 SUBSYSTEM=console
32 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
33 # the emacs source tree.
35 LOCAL_FLAGS     = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc
36 !ifdef NTGUI
37 LOCAL_FLAGS     = $(LOCAL_FLAGS) -DHAVE_NTGUI=1
38 !endif
40 # From MSVC 5.0 onwards, it seem base relocation information is not included,
41 # at least in release builds.  We need to ensure the reloc info is included
42 # in order to use the MSVC profiler.
43 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
44 EXTRA_LINK      =
45 !ELSE
46 EXTRA_LINK      = -profile
47 !ENDIF
49 EMACS           = $(BLD)\emacs.exe
50 TEMACS          = $(BLD)\temacs.exe
51 TEMACS_TMP      = $(BLD)\temacs.bin
52 TLIB0           = $(BLD)\temacs0.lib
53 TLIB1           = $(BLD)\temacs1.lib
54 TLIB2           = $(BLD)\temacs2.lib
55 !IFDEF NTGUI
56 TLIBW32         = $(BLD)\temacw32.lib
57 !ELSE
58 TLIBW32         =
59 !ENDIF
60 TOBJ            = $(BLD)\firstfile.obj
61 !if $(MSVCNT11)
62 TRES            = $(BLD)\emacs.res
63 !else
64 TRES            = $(BLD)\emacs.rbj
65 !endif
66 TLASTLIB        = $(BLD)\lastfile.lib
68 # see comments in allocate_heap in w32heap.c before changing any of the
69 # -stack, -heap, or -base settings.
70 !if "$(BUILD_TYPE)" == "spd"
71 LINK_FLAGS      = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd
72 !else
73 LINK_FLAGS      = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:none -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd $(EXTRA_LINK)
74 !endif
77 # Split up the objects into two sets so that we don't run out of
78 # command line space when we link them into a library.
80 # Put emacs.obj in a separate lib, since we need to have firstfile.obj
81 # as the "main" object file when linking.
83 OBJ0 =  $(BLD)\emacs.obj
85 OBJ1 =  $(BLD)\abbrev.obj       \
86         $(BLD)\alloc.obj        \
87         $(BLD)\alloca.obj       \
88         $(BLD)\atimer.obj       \
89         $(BLD)\buffer.obj       \
90         $(BLD)\bytecode.obj     \
91         $(BLD)\callint.obj      \
92         $(BLD)\callproc.obj     \
93         $(BLD)\casefiddle.obj   \
94         $(BLD)\cm.obj           \
95         $(BLD)\cmds.obj         \
96         $(BLD)\data.obj         \
97         $(BLD)\dired.obj        \
98         $(BLD)\dispnew.obj      \
99         $(BLD)\doc.obj          \
100         $(BLD)\doprnt.obj       \
101         $(BLD)\editfns.obj      \
102         $(BLD)\eval.obj         \
103         $(BLD)\fileio.obj       \
104         $(BLD)\filelock.obj     \
105         $(BLD)\filemode.obj     \
106         $(BLD)\fns.obj          \
107         $(BLD)\indent.obj       \
108         $(BLD)\insdel.obj       \
109         $(BLD)\keyboard.obj     \
110         $(BLD)\keymap.obj       \
111         $(BLD)\lread.obj        \
112         $(BLD)\macros.obj       \
113         $(BLD)\marker.obj       \
114         $(BLD)\minibuf.obj      \
115         $(BLD)\mocklisp.obj
117 OBJ2 =  $(BLD)\w32.obj           \
118         $(BLD)\w32heap.obj       \
119         $(BLD)\w32inevt.obj      \
120         $(BLD)\w32proc.obj       \
121         $(BLD)\w32console.obj       \
122         $(BLD)\print.obj        \
123         $(BLD)\process.obj      \
124         $(BLD)\regex.obj        \
125         $(BLD)\scroll.obj       \
126         $(BLD)\search.obj       \
127         $(BLD)\syntax.obj       \
128         $(BLD)\sysdep.obj       \
129         $(BLD)\term.obj         \
130         $(BLD)\termcap.obj      \
131         $(BLD)\tparam.obj       \
132         $(BLD)\undo.obj         \
133         $(BLD)\unexw32.obj       \
134         $(BLD)\window.obj       \
135         $(BLD)\xdisp.obj        \
136         $(BLD)\casetab.obj      \
137         $(BLD)\floatfns.obj     \
138         $(BLD)\frame.obj        \
139         $(BLD)\gmalloc.obj      \
140         $(BLD)\intervals.obj    \
141         $(BLD)\composite.obj    \
142         $(BLD)\ralloc.obj       \
143         $(BLD)\textprop.obj     \
144         $(BLD)\vm-limit.obj     \
145         $(BLD)\region-cache.obj \
146         $(BLD)\strftime.obj     \
147         $(BLD)\charset.obj      \
148         $(BLD)\coding.obj       \
149         $(BLD)\category.obj     \
150         $(BLD)\ccl.obj          \
151         $(BLD)\fontset.obj
153 WIN32OBJ = $(BLD)\w32term.obj   \
154            $(BLD)\w32xfns.obj   \
155            $(BLD)\w32fns.obj    \
156            $(BLD)\xfaces.obj    \
157            $(BLD)\w32select.obj \
158            $(BLD)\w32menu.obj   \
159            $(BLD)\w32reg.obj    \
160            $(BLD)\w32bdf.obj
162 LIBS =  $(TLIB0)        \
163         $(TLIB1)        \
164         $(TLIB2)        \
165 !IFDEF NTGUI
166         $(TLIBW32)      \
167 !ENDIF
168         $(TLASTLIB)     \
169 !IFDEF NTGUI
170         gdi32.lib       \
171         comdlg32.lib    \
172 !ENDIF
173 #       libcmt.lib      \
174         $(BASE_LIBS)    \
175         $(ADVAPI32)     \
176         user32.lib      \
177         mpr.lib         \
178         shell32.lib     \
179         setargv.obj
182 # Build the executable and dump it.
184 all:            $(BLD) $(EMACS) 
187 # Headers we would preprocess if we could.
189 PREPARED_HEADERS = config.h epaths.h
190 config.h:       ..\nt\$(CONFIG_H)
191                 $(CP) $** $@
192 epaths.h:       ..\nt\paths.h
193                 $(CP) $** $@
196 # Make sure we have the DOC file in the right place.
198 DOC             = $(OBJDIR)\etc\DOC-X
199 $(DOC):;        cd ..\lib-src 
200                 - $(DEL) DOC-X
201                 $(MAKE) $(MFLAGS) -f makefile.nt all
202                 cd ..\src
205 # The dumped executable
207 emacs:          $(EMACS)
208 $(EMACS):       $(DOC) $(TEMACS)
209                 cd $(BLD)
210                 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump
211                 cd ..\..
214 # The undumped executable
215 # Note the extra post-link step to insert a static preload heap section.
216 # If preload runs out of memory, increase the last argument to addsection
217 # (it is the preload heap size in MB).
219 temacs:         $(BLD) $(TEMACS)
220 $(TEMACS):      $(PREPARED_HEADERS) $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
221                 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
222                 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16
224 bootstrap: bootstrap-emacs
227 # Build a temacs with a sufficiently large PURESIZE to load the
228 # Lisp files from loadup.el in source form.
230 bootstrap-temacs: bootstrap-clean
231                 $(MAKE) $(MFLAGS) -f makefile.nt temacs CFLAGS="$(CFLAGS) -DPURESIZE=5000000"
234 # Dump an Emacs executable named bootstrap-emacs containing the 
235 # files from loadup.el in source form.
237 bootstrap-emacs: bootstrap-temacs
238                 cd $(BLD)
239                 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup bootstrap
240                 cd ..\..
241                 - mkdir ..\bin
242                 $(CP) $(EMACS) ..\bin
245 # Force recompile of files that depend on PURESIZE
247 bootstrap-clean:
248                 - $(DEL) $(BLD)\alloc.obj
249                 - $(DEL) $(BLD)\data.obj
250                 - $(DEL) $(BLD)\intervals.obj
251                 - $(DEL) $(BLD)\keyboard.obj
252                 - $(DEL) $(BLD)\keymap.obj
255 # The resource file.  NT 3.10 requires the use of cvtres; even though
256 # it is not necessary on later versions, it is still ok to use it.
258 $(TRES):        ..\nt\emacs.rc
259                 $(RC) -i..\nt -Fo$(BLD)\emacs.res $**
260 !if !$(MSVCNT11)
261                 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
262 !endif
265 # Build the library.  Split up the build into two phases...otherwise we 
266 # run out of command line space.
268 $(TLIB0):       $(OBJ0)
269                 @- $(AR) -out:$@ $**
270 $(TLIB1):       $(OBJ1)
271                 @- $(AR) -out:$@ $**
272 $(TLIB2):       $(OBJ2)
273                 @- $(AR) -out:$@ $**
274 !IFDEF NTGUI
275 $(TLIBW32):     $(WIN32OBJ)
276                 @- $(AR) -out:$@ $**
277 !ENDIF
280 # Place lastfile.obj in its own library so that it can be loaded after
281 # the source libraries but before any system libraries.  Doing so defines
282 # the end of Emacs' data section portably across compilers and systems.
284 $(TLASTLIB):    $(BLD)\lastfile.obj
285                 @- $(AR) -out:$@ $**
288 # Assuming INSTALL_DIR is defined, build and install emacs in it.
290 install:        all
291                 - mkdir $(INSTALL_DIR)\bin
292                 $(CP) $(EMACS) $(INSTALL_DIR)\bin
295 # Maintenance
297 clean:;         - $(DEL) *~ s\*~
298                 - $(DEL) *.pdb config.h epaths.h
299                 - $(DEL) *.orig *.rej *.crlf
300                 - $(DEL) s\*.orig s\*.rej s\*.crlf
301                 - $(DEL_TREE) deleted
302                 - $(DEL_TREE) obj
303                 - $(DEL_TREE) obj-spd
306 # These files are the ones that compile conditionally on CANNOT_DUMP...
307 # this target is mostly used for debugging.
309 cleandump:;     cd $(BLD)
310                 - $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj w32heap.obj unexw32.obj
311                 cd ..\..
314 ### DEPENDENCIES ###
316 EMACS_ROOT      = ..
317 SRC             = .
319 $(BLD)\abbrev.obj : \
320         $(SRC)\abbrev.c \
321         $(EMACS_ROOT)\src\s\ms-w32.h \
322         $(EMACS_ROOT)\src\m\intel386.h \
323         $(EMACS_ROOT)\src\config.h \
324         $(SRC)\commands.h \
325         $(SRC)\buffer.h \
326         $(SRC)\window.h
328 $(BLD)\alloc.obj : \
329         $(SRC)\alloc.c \
330         $(EMACS_ROOT)\src\s\ms-w32.h \
331         $(EMACS_ROOT)\src\m\intel386.h \
332         $(EMACS_ROOT)\src\config.h \
333         $(SRC)\dispextern.h \
334         $(SRC)\intervals.h \
335         $(SRC)\composite.h \
336         $(SRC)\puresize.h \
337         $(SRC)\buffer.h \
338         $(SRC)\window.h \
339         $(SRC)\frame.h \
340         $(SRC)\blockinput.h \
341         $(SRC)\syssignal.h
343 $(BLD)\alloca.obj : \
344         $(SRC)\alloca.c \
345         $(EMACS_ROOT)\src\s\ms-w32.h \
346         $(EMACS_ROOT)\src\m\intel386.h \
347         $(EMACS_ROOT)\src\config.h \
348         $(SRC)\s\ms-w32.h \
349         $(SRC)\m\intel386.h \
350         $(SRC)\config.h \
351         $(SRC)\blockinput.h
353 $(BLD)\atimer.obj : \
354         $(SRC)\atimer.c \
355         $(EMACS_ROOT)\src\s\ms-w32.h \
356         $(EMACS_ROOT)\src\m\intel386.h \
357         $(EMACS_ROOT)\src\config.h \
358         $(SRC)\s\ms-w32.h \
359         $(SRC)\m\intel386.h \
360         $(SRC)\config.h \
361         $(SRC)\atimer.h \
362         $(SRC)\syssignal.h \
363         $(SRC)\systime.h \
364         $(SRC)\blockinput.h
366 $(BLD)\buffer.obj : \
367         $(SRC)\buffer.c \
368         $(EMACS_ROOT)\nt\inc\sys\param.h \
369         $(EMACS_ROOT)\src\s\ms-w32.h \
370         $(EMACS_ROOT)\src\m\intel386.h \
371         $(EMACS_ROOT)\src\config.h \
372         $(SRC)\dispextern.h \
373         $(SRC)\intervals.h \
374         $(SRC)\composite.h \
375         $(SRC)\frame.h \
376         $(SRC)\window.h \
377         $(SRC)\commands.h \
378         $(SRC)\buffer.h \
379         $(SRC)\indent.h \
380         $(SRC)\blockinput.h \
381         $(SRC)\region-cache.h
383 $(BLD)\bytecode.obj : \
384         $(SRC)\bytecode.c \
385         $(EMACS_ROOT)\src\s\ms-w32.h \
386         $(EMACS_ROOT)\src\m\intel386.h \
387         $(EMACS_ROOT)\src\config.h \
388         $(SRC)\buffer.h \
389         $(SRC)\syntax.h
391 $(BLD)\callint.obj : \
392         $(SRC)\callint.c \
393         $(EMACS_ROOT)\src\s\ms-w32.h \
394         $(EMACS_ROOT)\src\m\intel386.h \
395         $(EMACS_ROOT)\src\config.h \
396         $(SRC)\buffer.h \
397         $(SRC)\commands.h \
398         $(SRC)\keyboard.h \
399         $(SRC)\window.h \
400         $(SRC)\mocklisp.h
402 $(BLD)\callproc.obj : \
403         $(SRC)\callproc.c \
404         $(EMACS_ROOT)\src\s\ms-w32.h \
405         $(EMACS_ROOT)\src\m\intel386.h \
406         $(EMACS_ROOT)\src\config.h \
407         $(SRC)\msdos.h \
408         $(EMACS_ROOT)\nt\inc\sys\param.h \
409         $(SRC)\commands.h \
410         $(SRC)\buffer.h \
411         $(SRC)\process.h \
412         $(SRC)\syssignal.h \
413         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
414         $(EMACS_ROOT)\nt\inc\sys\file.h \
415         $(SRC)\systty.h
417 $(BLD)\casefiddle.obj : \
418         $(SRC)\casefiddle.c \
419         $(EMACS_ROOT)\src\s\ms-w32.h \
420         $(EMACS_ROOT)\src\m\intel386.h \
421         $(EMACS_ROOT)\src\config.h \
422         $(SRC)\buffer.h \
423         $(SRC)\commands.h \
424         $(SRC)\syntax.h
425         $(CC) $(CFLAGS) -Fo$@ casefiddle.c
427 $(BLD)\casetab.obj : \
428         $(SRC)\casetab.c \
429         $(EMACS_ROOT)\src\s\ms-w32.h \
430         $(EMACS_ROOT)\src\m\intel386.h \
431         $(EMACS_ROOT)\src\config.h \
432         $(SRC)\buffer.h
434 $(BLD)\cm.obj : \
435         $(SRC)\cm.c \
436         $(EMACS_ROOT)\src\s\ms-w32.h \
437         $(EMACS_ROOT)\src\m\intel386.h \
438         $(EMACS_ROOT)\src\config.h \
439         $(SRC)\cm.h \
440         $(SRC)\termhooks.h
442 $(BLD)\cmds.obj : \
443         $(SRC)\cmds.c \
444         $(EMACS_ROOT)\src\s\ms-w32.h \
445         $(EMACS_ROOT)\src\m\intel386.h \
446         $(EMACS_ROOT)\src\config.h \
447         $(SRC)\commands.h \
448         $(SRC)\buffer.h \
449         $(SRC)\syntax.h
451 $(BLD)\composite.obj : \
452         $(SRC)\composite.c \
453         $(SRC)\buffer.h \
454         $(SRC)\charset.h \
455         $(SRC)\intervals.h \
456         $(SRC)\composite.h \
457         $(EMACS_ROOT)\src\s\ms-w32.h \
458         $(EMACS_ROOT)\src\m\intel386.h \
459         $(EMACS_ROOT)\src\config.h
461 $(BLD)\data.obj : \
462         $(SRC)\data.c \
463         $(EMACS_ROOT)\src\s\ms-w32.h \
464         $(EMACS_ROOT)\src\m\intel386.h \
465         $(EMACS_ROOT)\src\config.h \
466         $(SRC)\puresize.h \
467         $(SRC)\buffer.h \
468         $(SRC)\syssignal.h
470 $(BLD)\dired.obj : \
471         $(SRC)\dired.c \
472         $(EMACS_ROOT)\src\s\ms-w32.h \
473         $(EMACS_ROOT)\src\m\intel386.h \
474         $(EMACS_ROOT)\src\config.h \
475         $(SRC)\vmsdir.h \
476         $(SRC)\ndir.h \
477         $(SRC)\buffer.h \
478         $(SRC)\commands.h \
479         $(SRC)\regex.h
481 $(BLD)\dispnew.obj : \
482         $(SRC)\dispnew.c \
483         $(EMACS_ROOT)\src\s\ms-w32.h \
484         $(EMACS_ROOT)\src\m\intel386.h \
485         $(EMACS_ROOT)\src\config.h \
486         $(SRC)\termchar.h \
487         $(SRC)\termopts.h \
488         $(SRC)\termhooks.h \
489         $(SRC)\cm.h \
490         $(SRC)\buffer.h \
491         $(SRC)\frame.h \
492         $(SRC)\window.h \
493         $(SRC)\commands.h \
494         $(SRC)\disptab.h \
495         $(SRC)\indent.h \
496         $(SRC)\dispextern.h \
497         $(SRC)\intervals.h \
498         $(SRC)\composite.h \
499         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
500         $(EMACS_ROOT)\nt\inc\sys\file.h \
501         $(SRC)\systty.h \
502         $(SRC)\w32term.h \
503         $(SRC)\xterm.h \
504         $(SRC)\vmstime.h \
505         $(SRC)\systime.h
507 $(BLD)\doc.obj : \
508         $(SRC)\doc.c \
509         $(EMACS_ROOT)\src\s\ms-w32.h \
510         $(EMACS_ROOT)\src\m\intel386.h \
511         $(EMACS_ROOT)\src\config.h \
512         $(EMACS_ROOT)\nt\inc\sys\file.h \
513         $(SRC)\buffer.h \
514         $(SRC)\keyboard.h
516 $(BLD)\doprnt.obj : \
517         $(SRC)\doprnt.c \
518         $(EMACS_ROOT)\src\s\ms-w32.h \
519         $(EMACS_ROOT)\src\m\intel386.h \
520         $(EMACS_ROOT)\src\config.h
522 $(BLD)\dosfns.obj : \
523         $(SRC)\dosfns.c \
524         $(EMACS_ROOT)\src\s\ms-w32.h \
525         $(EMACS_ROOT)\src\m\intel386.h \
526         $(EMACS_ROOT)\src\config.h \
527         $(SRC)\buffer.h \
528         $(SRC)\termchar.h \
529         $(SRC)\termhooks.h \
530         $(SRC)\frame.h \
531         $(SRC)\dosfns.h \
532         $(SRC)\msdos.h
534 $(BLD)\editfns.obj : \
535         $(SRC)\editfns.c \
536         $(EMACS_ROOT)\src\s\ms-w32.h \
537         $(EMACS_ROOT)\src\m\intel386.h \
538         $(EMACS_ROOT)\src\config.h \
539         $(SRC)\uaf.h \
540         $(SRC)\vms-pwd.h \
541         $(EMACS_ROOT)\nt\inc\pwd.h \
542         $(SRC)\dispextern.h \
543         $(SRC)\intervals.h \
544         $(SRC)\composite.h \
545         $(SRC)\buffer.h \
546         $(SRC)\window.h \
547         $(SRC)\vmstime.h \
548         $(SRC)\systime.h
550 $(BLD)\emacs.obj : \
551         $(SRC)\emacs.c \
552         $(EMACS_ROOT)\src\s\ms-w32.h \
553         $(EMACS_ROOT)\src\m\intel386.h \
554         $(EMACS_ROOT)\src\config.h \
555         $(SRC)\commands.h \
556         $(SRC)\dispextern.h \
557         $(SRC)\intervals.h \
558         $(SRC)\composite.h \
559         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
560         $(EMACS_ROOT)\nt\inc\sys\file.h \
561         $(SRC)\systty.h \
562         $(SRC)\syssignal.h \
563         $(SRC)\process.h
565 $(BLD)\eval.obj : \
566         $(SRC)\eval.c \
567         $(EMACS_ROOT)\src\s\ms-w32.h \
568         $(EMACS_ROOT)\src\m\intel386.h \
569         $(EMACS_ROOT)\src\config.h \
570         $(SRC)\blockinput.h \
571         $(SRC)\commands.h \
572         $(SRC)\keyboard.h
574 $(BLD)\fileio.obj : \
575         $(SRC)\fileio.c \
576         $(EMACS_ROOT)\src\s\ms-w32.h \
577         $(EMACS_ROOT)\src\m\intel386.h \
578         $(EMACS_ROOT)\src\config.h \
579         $(SRC)\uaf.h \
580         $(SRC)\vms-pwd.h \
581         $(EMACS_ROOT)\nt\inc\pwd.h \
582         $(SRC)\msdos.h \
583         $(EMACS_ROOT)\nt\inc\sys\param.h \
584         $(SRC)\vmsdir.h \
585         $(SRC)\dispextern.h \
586         $(SRC)\intervals.h \
587         $(SRC)\composite.h \
588         $(SRC)\buffer.h \
589         $(SRC)\window.h \
590         $(EMACS_ROOT)\nt\inc\sys\file.h \
591         $(SRC)\vmstime.h \
592         $(SRC)\systime.h
594 $(BLD)\filelock.obj : \
595         $(SRC)\filelock.c \
596         $(EMACS_ROOT)\src\s\ms-w32.h \
597         $(EMACS_ROOT)\src\m\intel386.h \
598         $(EMACS_ROOT)\src\config.h \
599         $(SRC)\uaf.h \
600         $(SRC)\vms-pwd.h \
601         $(EMACS_ROOT)\nt\inc\pwd.h \
602         $(EMACS_ROOT)\nt\inc\sys\file.h \
603         $(EMACS_ROOT)\src\epaths.h \
604         $(SRC)\buffer.h \
605         $(SRC)\vmsdir.h \
606         $(SRC)\ndir.h
608 $(BLD)\filemode.obj : \
609         $(SRC)\filemode.c \
610         $(EMACS_ROOT)\src\s\ms-w32.h \
611         $(EMACS_ROOT)\src\m\intel386.h \
612         $(EMACS_ROOT)\src\config.h \
613         $(SRC)\s\ms-w32.h \
614         $(SRC)\m\intel386.h \
615         $(SRC)\config.h
617 $(BLD)\firstfile.obj : \
618         $(SRC)\firstfile.c \
619         $(EMACS_ROOT)\src\s\ms-w32.h \
620         $(EMACS_ROOT)\src\m\intel386.h \
621         $(EMACS_ROOT)\src\config.h
623 $(BLD)\floatfns.obj : \
624         $(SRC)\floatfns.c \
625         $(EMACS_ROOT)\src\s\ms-w32.h \
626         $(EMACS_ROOT)\src\m\intel386.h \
627         $(EMACS_ROOT)\src\config.h \
628         $(SRC)\syssignal.h
630 $(BLD)\fns.obj : \
631         $(SRC)\fns.c \
632         $(EMACS_ROOT)\src\s\ms-w32.h \
633         $(EMACS_ROOT)\src\m\intel386.h \
634         $(EMACS_ROOT)\src\config.h \
635         $(SRC)\commands.h \
636         $(SRC)\buffer.h \
637         $(SRC)\keyboard.h \
638         $(SRC)\dispextern.h \
639         $(SRC)\intervals.h \
640         $(SRC)\composite.h
642 $(BLD)\frame.obj : \
643         $(SRC)\frame.c \
644         $(EMACS_ROOT)\src\s\ms-w32.h \
645         $(EMACS_ROOT)\src\m\intel386.h \
646         $(EMACS_ROOT)\src\config.h \
647         $(SRC)\frame.h \
648         $(SRC)\termhooks.h \
649         $(SRC)\window.h \
650         $(SRC)\buffer.h \
651         $(SRC)\commands.h \
652         $(SRC)\keyboard.h
654 $(BLD)\getloadavg.obj : \
655         $(SRC)\getloadavg.c \
656         $(EMACS_ROOT)\nt\inc\sys\param.h \
657         $(EMACS_ROOT)\src\s\ms-w32.h \
658         $(EMACS_ROOT)\src\m\intel386.h \
659         $(EMACS_ROOT)\src\config.h \
660         $(SRC)\s\ms-w32.h \
661         $(SRC)\m\intel386.h \
662         $(SRC)\config.h \
663         $(EMACS_ROOT)\nt\inc\sys\file.h
665 $(BLD)\gmalloc.obj : \
666         $(SRC)\gmalloc.c \
667         $(EMACS_ROOT)\src\s\ms-w32.h \
668         $(EMACS_ROOT)\src\m\intel386.h \
669         $(EMACS_ROOT)\src\config.h \
670         $(EMACS_ROOT)\nt\inc\sys\param.h \
671         $(SRC)\getpagesize.h
672         $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
674 $(BLD)\hftctl.obj : \
675         $(SRC)\hftctl.c \
676         $(EMACS_ROOT)\src\s\ms-w32.h \
677         $(EMACS_ROOT)\src\m\intel386.h \
678         $(EMACS_ROOT)\src\config.h \
679         $(EMACS_ROOT)\nt\inc\sys\ioctl.h
681 $(BLD)\indent.obj : \
682         $(SRC)\indent.c \
683         $(EMACS_ROOT)\src\s\ms-w32.h \
684         $(EMACS_ROOT)\src\m\intel386.h \
685         $(EMACS_ROOT)\src\config.h \
686         $(SRC)\buffer.h \
687         $(SRC)\indent.h \
688         $(SRC)\frame.h \
689         $(SRC)\window.h \
690         $(SRC)\termchar.h \
691         $(SRC)\termopts.h \
692         $(SRC)\disptab.h \
693         $(SRC)\dispextern.h \
694         $(SRC)\intervals.h \
695         $(SRC)\region-cache.h \
696         $(SRC)\composite.h
698 $(BLD)\insdel.obj : \
699         $(SRC)\insdel.c \
700         $(EMACS_ROOT)\src\s\ms-w32.h \
701         $(EMACS_ROOT)\src\m\intel386.h \
702         $(EMACS_ROOT)\src\config.h \
703         $(SRC)\dispextern.h \
704         $(SRC)\intervals.h \
705         $(SRC)\composite.h \
706         $(SRC)\buffer.h \
707         $(SRC)\window.h \
708         $(SRC)\blockinput.h
710 $(BLD)\intervals.obj : \
711         $(SRC)\intervals.c \
712         $(EMACS_ROOT)\src\s\ms-w32.h \
713         $(EMACS_ROOT)\src\m\intel386.h \
714         $(EMACS_ROOT)\src\config.h \
715         $(SRC)\dispextern.h \
716         $(SRC)\intervals.h \
717         $(SRC)\composite.h \
718         $(SRC)\keyboard.h \
719         $(SRC)\buffer.h \
720         $(SRC)\puresize.h
722 $(BLD)\keyboard.obj : \
723         $(SRC)\keyboard.c \
724         $(EMACS_ROOT)\src\s\ms-w32.h \
725         $(EMACS_ROOT)\src\m\intel386.h \
726         $(EMACS_ROOT)\src\config.h \
727         $(SRC)\termchar.h \
728         $(SRC)\termopts.h \
729         $(SRC)\termhooks.h \
730         $(SRC)\macros.h \
731         $(SRC)\frame.h \
732         $(SRC)\window.h \
733         $(SRC)\commands.h \
734         $(SRC)\buffer.h \
735         $(SRC)\disptab.h \
736         $(SRC)\keyboard.h \
737         $(SRC)\dispextern.h \
738         $(SRC)\intervals.h \
739         $(SRC)\composite.h \
740         $(SRC)\blockinput.h \
741         $(SRC)\msdos.h \
742         $(SRC)\syssignal.h \
743         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
744         $(EMACS_ROOT)\nt\inc\sys\file.h \
745         $(SRC)\systty.h \
746         $(SRC)\w32term.h \
747         $(SRC)\xterm.h \
748         $(SRC)\vmstime.h \
749         $(SRC)\systime.h \
750         $(SRC)\atimer.h
752 $(BLD)\keymap.obj : \
753         $(SRC)\keymap.c \
754         $(EMACS_ROOT)\src\s\ms-w32.h \
755         $(EMACS_ROOT)\src\m\intel386.h \
756         $(EMACS_ROOT)\src\config.h \
757         $(SRC)\commands.h \
758         $(SRC)\buffer.h \
759         $(SRC)\keyboard.h \
760         $(SRC)\termhooks.h \
761         $(SRC)\blockinput.h
763 $(BLD)\lastfile.obj : \
764         $(SRC)\lastfile.c \
765         $(EMACS_ROOT)\src\s\ms-w32.h \
766         $(EMACS_ROOT)\src\m\intel386.h \
767         $(EMACS_ROOT)\src\config.h
769 $(BLD)\lread.obj : \
770         $(SRC)\lread.c \
771         $(EMACS_ROOT)\src\s\ms-w32.h \
772         $(EMACS_ROOT)\src\m\intel386.h \
773         $(EMACS_ROOT)\src\config.h \
774         $(EMACS_ROOT)\nt\inc\sys\file.h \
775         $(SRC)\buffer.h \
776         $(EMACS_ROOT)\src\epaths.h \
777         $(SRC)\commands.h \
778         $(SRC)\keyboard.h \
779         $(SRC)\termhooks.h \
780         $(SRC)\msdos.h
782 $(BLD)\macros.obj : \
783         $(SRC)\macros.c \
784         $(EMACS_ROOT)\src\s\ms-w32.h \
785         $(EMACS_ROOT)\src\m\intel386.h \
786         $(EMACS_ROOT)\src\config.h \
787         $(SRC)\macros.h \
788         $(SRC)\commands.h \
789         $(SRC)\buffer.h \
790         $(SRC)\window.h
792 $(BLD)\marker.obj : \
793         $(SRC)\marker.c \
794         $(EMACS_ROOT)\src\s\ms-w32.h \
795         $(EMACS_ROOT)\src\m\intel386.h \
796         $(EMACS_ROOT)\src\config.h \
797         $(SRC)\buffer.h
799 $(BLD)\minibuf.obj : \
800         $(SRC)\minibuf.c \
801         $(EMACS_ROOT)\src\s\ms-w32.h \
802         $(EMACS_ROOT)\src\m\intel386.h \
803         $(EMACS_ROOT)\src\config.h \
804         $(SRC)\commands.h \
805         $(SRC)\buffer.h \
806         $(SRC)\dispextern.h \
807         $(SRC)\frame.h \
808         $(SRC)\window.h \
809         $(SRC)\syntax.h
811 $(BLD)\mocklisp.obj : \
812         $(SRC)\mocklisp.c \
813         $(EMACS_ROOT)\src\s\ms-w32.h \
814         $(EMACS_ROOT)\src\m\intel386.h \
815         $(EMACS_ROOT)\src\config.h \
816         $(SRC)\buffer.h
818 $(BLD)\w32.obj : \
819         $(SRC)\w32.c \
820         $(SRC)\w32.h \
821         $(SRC)\s\ms-w32.h \
822         $(SRC)\m\intel386.h \
823         $(SRC)\config.h \
824         $(EMACS_ROOT)\nt\inc\pwd.h \
825         $(SRC)\w32heap.h
827 $(BLD)\w32heap.obj : \
828         $(SRC)\w32heap.c \
829         $(SRC)\w32heap.h \
830         $(SRC)\s\ms-w32.h \
831         $(SRC)\m\intel386.h \
832         $(SRC)\config.h
834 $(BLD)\w32inevt.obj : \
835         $(SRC)\w32inevt.c \
836         $(SRC)\s\ms-w32.h \
837         $(SRC)\m\intel386.h \
838         $(SRC)\config.h \
839         $(SRC)\frame.h \
840         $(SRC)\blockinput.h \
841         $(SRC)\termhooks.h \
842         $(SRC)\w32heap.h \
843         $(SRC)\w32term.h
845 $(BLD)\w32proc.obj : \
846         $(SRC)\w32proc.c \
847         $(SRC)\s\ms-w32.h \
848         $(SRC)\m\intel386.h \
849         $(SRC)\config.h \
850         $(SRC)\w32.h \
851         $(SRC)\w32heap.h \
852         $(SRC)\vmstime.h \
853         $(SRC)\systime.h
855 $(BLD)\w32console.obj : \
856         $(SRC)\w32console.c \
857         $(SRC)\s\ms-w32.h \
858         $(SRC)\m\intel386.h \
859         $(SRC)\config.h \
860         $(SRC)\frame.h \
861         $(SRC)\disptab.h \
862         $(SRC)\termhooks.h \
863         $(SRC)\w32inevt.h
865 $(BLD)\prefix-args.obj : \
866         $(SRC)\prefix-args.c
868 $(BLD)\print.obj : \
869         $(SRC)\print.c \
870         $(EMACS_ROOT)\src\s\ms-w32.h \
871         $(EMACS_ROOT)\src\m\intel386.h \
872         $(EMACS_ROOT)\src\config.h \
873         $(SRC)\buffer.h \
874         $(SRC)\frame.h \
875         $(SRC)\window.h \
876         $(SRC)\process.h \
877         $(SRC)\termchar.h \
878         $(SRC)\dispextern.h \
879         $(SRC)\intervals.h \
880         $(SRC)\composite.h
882 $(BLD)\process.obj : \
883         $(SRC)\process.c \
884         $(EMACS_ROOT)\src\s\ms-w32.h \
885         $(EMACS_ROOT)\src\m\intel386.h \
886         $(EMACS_ROOT)\src\config.h \
887         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
888         $(EMACS_ROOT)\nt\inc\sys\file.h \
889         $(SRC)\systty.h \
890         $(SRC)\window.h \
891         $(SRC)\buffer.h \
892         $(SRC)\process.h \
893         $(SRC)\termhooks.h \
894         $(SRC)\commands.h \
895         $(SRC)\frame.h \
896         $(SRC)\syssignal.h \
897         $(SRC)\vmsproc.h \
898         $(SRC)\syswait.h \
899         $(SRC)\vmstime.h \
900         $(SRC)\systime.h \
901         $(SRC)\termopts.h \
902         $(SRC)\composite.h \
903         $(SRC)\atimer.h
905 $(BLD)\ralloc.obj : \
906         $(SRC)\ralloc.c \
907         $(EMACS_ROOT)\src\s\ms-w32.h \
908         $(EMACS_ROOT)\src\m\intel386.h \
909         $(EMACS_ROOT)\src\config.h \
910         $(SRC)\s\ms-w32.h \
911         $(SRC)\m\intel386.h \
912         $(SRC)\config.h \
913         $(EMACS_ROOT)\nt\inc\sys\param.h \
914         $(SRC)\getpagesize.h
916 $(BLD)\regex.obj : \
917         $(SRC)\regex.c \
918         $(EMACS_ROOT)\src\s\ms-w32.h \
919         $(EMACS_ROOT)\src\m\intel386.h \
920         $(EMACS_ROOT)\src\config.h \
921         $(SRC)\s\ms-w32.h \
922         $(SRC)\m\intel386.h \
923         $(SRC)\config.h \
924         $(SRC)\buffer.h \
925         $(SRC)\syntax.h \
926         $(SRC)\regex.h
928 $(BLD)\region-cache.obj : \
929         $(SRC)\region-cache.c \
930         $(EMACS_ROOT)\src\s\ms-w32.h \
931         $(EMACS_ROOT)\src\m\intel386.h \
932         $(EMACS_ROOT)\src\config.h \
933         $(SRC)\buffer.h \
934         $(SRC)\region-cache.h
936 $(BLD)\scroll.obj : \
937         $(SRC)\scroll.c \
938         $(EMACS_ROOT)\src\s\ms-w32.h \
939         $(EMACS_ROOT)\src\m\intel386.h \
940         $(EMACS_ROOT)\src\config.h \
941         $(SRC)\termchar.h \
942         $(SRC)\dispextern.h \
943         $(SRC)\frame.h
945 $(BLD)\search.obj : \
946         $(SRC)\search.c \
947         $(EMACS_ROOT)\src\s\ms-w32.h \
948         $(EMACS_ROOT)\src\m\intel386.h \
949         $(EMACS_ROOT)\src\config.h \
950         $(SRC)\syntax.h \
951         $(SRC)\buffer.h \
952         $(SRC)\commands.h \
953         $(SRC)\blockinput.h \
954         $(SRC)\regex.h \
955         $(SRC)\region-cache.h \
956         $(SRC)\composite.h
958 $(BLD)\strftime.obj : \
959         $(SRC)\strftime.c \
960         $(EMACS_ROOT)\src\s\ms-w32.h \
961         $(EMACS_ROOT)\src\m\intel386.h \
962         $(EMACS_ROOT)\src\config.h
964 $(BLD)\sunfns.obj : \
965         $(SRC)\sunfns.c \
966         $(EMACS_ROOT)\src\s\ms-w32.h \
967         $(EMACS_ROOT)\src\m\intel386.h \
968         $(EMACS_ROOT)\src\config.h \
969         $(SRC)\window.h \
970         $(SRC)\buffer.h \
971         $(SRC)\termhooks.h
973 $(BLD)\syntax.obj : \
974         $(SRC)\syntax.c \
975         $(EMACS_ROOT)\src\s\ms-w32.h \
976         $(EMACS_ROOT)\src\m\intel386.h \
977         $(EMACS_ROOT)\src\config.h \
978         $(SRC)\commands.h \
979         $(SRC)\buffer.h \
980         $(SRC)\syntax.h \
981         $(SRC)\composite.h
983 $(BLD)\sysdep.obj : \
984         $(SRC)\sysdep.c \
985         $(EMACS_ROOT)\src\s\ms-w32.h \
986         $(EMACS_ROOT)\src\m\intel386.h \
987         $(EMACS_ROOT)\src\config.h \
988         $(SRC)\blockinput.h \
989         $(SRC)\dosfns.h \
990         $(SRC)\msdos.h \
991         $(EMACS_ROOT)\nt\inc\sys\param.h \
992         $(EMACS_ROOT)\nt\inc\sys\file.h \
993         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
994         $(EMACS_ROOT)\nt\inc\sys\file.h \
995         $(SRC)\systty.h \
996         $(SRC)\vmsproc.h \
997         $(SRC)\syswait.h \
998         $(SRC)\frame.h \
999         $(SRC)\window.h \
1000         $(SRC)\termhooks.h \
1001         $(SRC)\termchar.h \
1002         $(SRC)\termopts.h \
1003         $(SRC)\dispextern.h \
1004         $(SRC)\process.h \
1005         $(SRC)\vmsdir.h \
1006         $(SRC)\ndir.h \
1007         $(SRC)\syssignal.h \
1008         $(SRC)\vmstime.h \
1009         $(SRC)\systime.h \
1010         $(SRC)\uaf.h \
1011         $(SRC)\vms-pwd.h \
1012         $(EMACS_ROOT)\src\acldef.h \
1013         $(EMACS_ROOT)\src\chpdef.h
1015 $(BLD)\term.obj : \
1016         $(SRC)\term.c \
1017         $(EMACS_ROOT)\src\s\ms-w32.h \
1018         $(EMACS_ROOT)\src\m\intel386.h \
1019         $(EMACS_ROOT)\src\config.h \
1020         $(SRC)\termchar.h \
1021         $(SRC)\termopts.h \
1022         $(SRC)\cm.h \
1023         $(SRC)\frame.h \
1024         $(SRC)\disptab.h \
1025         $(SRC)\termhooks.h \
1026         $(SRC)\keyboard.h
1028 $(BLD)\termcap.obj : \
1029         $(SRC)\termcap.c \
1030         $(EMACS_ROOT)\src\s\ms-w32.h \
1031         $(EMACS_ROOT)\src\m\intel386.h \
1032         $(EMACS_ROOT)\src\config.h \
1033         $(EMACS_ROOT)\nt\inc\sys\file.h
1035 $(BLD)\terminfo.obj : \
1036         $(SRC)\terminfo.c
1038 $(BLD)\textprop.obj : \
1039         $(SRC)\textprop.c \
1040         $(EMACS_ROOT)\src\s\ms-w32.h \
1041         $(EMACS_ROOT)\src\m\intel386.h \
1042         $(EMACS_ROOT)\src\config.h \
1043         $(SRC)\dispextern.h \
1044         $(SRC)\intervals.h \
1045         $(SRC)\composite.h \
1046         $(SRC)\buffer.h \
1047         $(SRC)\window.h
1049 $(BLD)\tparam.obj : \
1050         $(SRC)\tparam.c \
1051         $(EMACS_ROOT)\src\s\ms-w32.h \
1052         $(EMACS_ROOT)\src\m\intel386.h \
1053         $(EMACS_ROOT)\src\config.h
1055 $(BLD)\undo.obj : \
1056         $(SRC)\undo.c \
1057         $(EMACS_ROOT)\src\s\ms-w32.h \
1058         $(EMACS_ROOT)\src\m\intel386.h \
1059         $(EMACS_ROOT)\src\config.h \
1060         $(SRC)\buffer.h \
1061         $(SRC)\commands.h
1063 $(BLD)\unexw32.obj : \
1064         $(SRC)\unexw32.c \
1065         $(EMACS_ROOT)\src\s\ms-w32.h \
1066         $(EMACS_ROOT)\src\m\intel386.h \
1067         $(EMACS_ROOT)\src\config.h \
1068         $(SRC)\w32heap.h
1070 $(BLD)\vm-limit.obj : \
1071         $(SRC)\vm-limit.c \
1072         $(EMACS_ROOT)\src\s\ms-w32.h \
1073         $(EMACS_ROOT)\src\m\intel386.h \
1074         $(EMACS_ROOT)\src\config.h \
1075         $(SRC)\mem-limits.h     
1077 $(BLD)\widget.obj : \
1078         $(SRC)\widget.c \
1079         $(EMACS_ROOT)\src\s\ms-w32.h \
1080         $(EMACS_ROOT)\src\m\intel386.h \
1081         $(EMACS_ROOT)\src\config.h \
1082         $(SRC)\xterm.h \
1083         $(SRC)\frame.h \
1084         $(SRC)\dispextern.h \
1085         $(SRC)\widget.h \
1086         $(SRC)\widgetprv.h
1088 $(BLD)\window.obj : \
1089         $(SRC)\window.c \
1090         $(EMACS_ROOT)\src\s\ms-w32.h \
1091         $(EMACS_ROOT)\src\m\intel386.h \
1092         $(EMACS_ROOT)\src\config.h \
1093         $(SRC)\buffer.h \
1094         $(SRC)\frame.h \
1095         $(SRC)\window.h \
1096         $(SRC)\commands.h \
1097         $(SRC)\indent.h \
1098         $(SRC)\termchar.h \
1099         $(SRC)\disptab.h \
1100         $(SRC)\keyboard.h \
1101         $(SRC)\composite.h
1103 $(BLD)\xdisp.obj : \
1104         $(SRC)\xdisp.c \
1105         $(EMACS_ROOT)\src\s\ms-w32.h \
1106         $(EMACS_ROOT)\src\m\intel386.h \
1107         $(EMACS_ROOT)\src\config.h \
1108         $(SRC)\frame.h \
1109         $(SRC)\window.h \
1110         $(SRC)\termchar.h \
1111         $(SRC)\buffer.h \
1112         $(SRC)\indent.h \
1113         $(SRC)\commands.h \
1114         $(SRC)\macros.h \
1115         $(SRC)\disptab.h \
1116         $(SRC)\termhooks.h \
1117         $(SRC)\dispextern.h \
1118         $(SRC)\intervals.h \
1119         $(SRC)\composite.h
1121 $(BLD)\xfaces.obj: \
1122         $(EMACS_ROOT)\src\s\ms-w32.h \
1123         $(EMACS_ROOT)\src\m\intel386.h \
1124         $(EMACS_ROOT)\src\config.h \
1125         $(SRC)\xfaces.c \
1126         $(SRC)\charset.h \
1127         $(SRC)\fontset.h \
1128         $(SRC)\w32term.h \
1129         $(SRC)\w32gui.h \
1130         $(SRC)\buffer.h \
1131         $(SRC)\dispextern.h \
1132         $(SRC)\frame.h \
1133         $(SRC)\blockinput.h \
1134         $(SRC)\window.h \
1135         $(SRC)\intervals.h \
1136         $(SRC)\composite.h
1138 $(BLD)\w32fns.obj: \
1139         $(EMACS_ROOT)\src\s\ms-w32.h \
1140         $(EMACS_ROOT)\src\m\intel386.h \
1141         $(EMACS_ROOT)\src\config.h \
1142         $(SRC)\w32fns.c \
1143         $(SRC)\x-list-font.c \
1144         $(SRC)\w32term.h \
1145         $(SRC)\w32gui.h \
1146         $(SRC)\frame.h \
1147         $(SRC)\window.h \
1148         $(SRC)\buffer.h \
1149         $(SRC)\charset.h \
1150         $(SRC)\coding.h \
1151         $(SRC)\dispextern.h \
1152         $(SRC)\keyboard.h \
1153         $(SRC)\blockinput.h \
1154         $(SRC)\epaths.h \
1155         $(SRC)\w32heap.h \
1156         $(SRC)\termhooks.h
1158 $(BLD)\w32menu.obj: \
1159         $(EMACS_ROOT)\src\s\ms-w32.h \
1160         $(EMACS_ROOT)\src\m\intel386.h \
1161         $(EMACS_ROOT)\src\config.h \
1162         $(SRC)\w32menu.c \
1163         $(SRC)\termhooks.h \
1164         $(SRC)\frame.h \
1165         $(SRC)\window.h \
1166         $(SRC)\keyboard.h \
1167         $(SRC)\blockinput.h \
1168         $(SRC)\buffer.h \
1169         $(SRC)\charset.h \
1170         $(SRC)\coding.h
1172 $(BLD)\w32term.obj: \
1173         $(EMACS_ROOT)\src\s\ms-w32.h \
1174         $(EMACS_ROOT)\src\m\intel386.h \
1175         $(EMACS_ROOT)\src\config.h \
1176         $(SRC)\w32term.c \
1177         $(SRC)\blockinput.h \
1178         $(SRC)\w32heap.h \
1179         $(SRC)\w32term.h \
1180         $(SRC)\w32gui.h \
1181         $(SRC)\systty.h \
1182         $(SRC)\systime.h \
1183         $(SRC)\frame.h \
1184         $(SRC)\dispextern.h \
1185         $(SRC)\termhooks.h \
1186         $(SRC)\termopts.h \
1187         $(SRC)\termchar.h \
1188         $(SRC)\gnu.h \
1189         $(SRC)\disptab.h \
1190         $(SRC)\buffer.h \
1191         $(SRC)\window.h \
1192         $(SRC)\keyboard.h \
1193         $(SRC)\intervals.h \
1194         $(SRC)\composite.h \
1195         $(SRC)\atimer.h
1197 $(BLD)\w32select.obj: \
1198         $(EMACS_ROOT)\src\s\ms-w32.h \
1199         $(EMACS_ROOT)\src\m\intel386.h \
1200         $(EMACS_ROOT)\src\config.h \
1201         $(SRC)\w32select.c \
1202         $(SRC)\w32term.h \
1203         $(SRC)\w32gui.h \
1204         $(SRC)\dispextern.h \
1205         $(SRC)\frame.h \
1206         $(SRC)\blockinput.h
1208 $(BLD)\w32reg.obj: \
1209         $(EMACS_ROOT)\src\s\ms-w32.h \
1210         $(EMACS_ROOT)\src\m\intel386.h \
1211         $(EMACS_ROOT)\src\config.h \
1212         $(SRC)\w32reg.c \
1213         $(SRC)\w32term.h \
1214         $(SRC)\w32gui.h \
1215         $(SRC)\blockinput.h
1217 $(BLD)\w32xfns.obj: \
1218         $(EMACS_ROOT)\src\s\ms-w32.h \
1219         $(EMACS_ROOT)\src\m\intel386.h \
1220         $(EMACS_ROOT)\src\config.h \
1221         $(SRC)\w32xfns.c \
1223 $(BLD)\w32bdf.obj: \
1224         $(EMACS_ROOT)\src/s\ms-w32.h \
1225         $(EMACS_ROOT)\src/m\intel386.h \
1226         $(EMACS_ROOT)\src/config.h \
1227         $(SRC)\w32bdf.c \
1228         $(SRC)\charset.h \
1229         $(SRC)\frame.h \
1230         $(SRC)\dispextern.h \
1231         $(SRC)\fontset.h \
1232         $(SRC)\blockinput.h \
1233         $(SRC)\w32gui.h \
1234         $(SRC)\w32term.h \
1235         $(SRC)\w32bdf.h \
1236         $(SRC)\w32.h \
1237         $(SRC)\frame.h \
1238         $(SRC)\blockinput.h