(Language Environments): Mention the requirement to have a suitable font
[emacs.git] / src / makefile.nt
blobb9d3e165c2796f687dc1631cf71d365cc5c49841
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
39 !ifdef USE_CRT_DLL
40 LOCAL_FLAGS     = $(LOCAL_FLAGS) -DUSE_CRT_DLL=1 -MD
41 libc            = msvcrt.lib
42 LINK_FLAGS      = -nodefaultlib
43 !endif
45 # From MSVC 5.0 onwards, it seem base relocation information is not included,
46 # at least in release builds.  We need to ensure the reloc info is included
47 # in order to use the MSVC profiler.
48 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
49 EXTRA_LINK      =
50 !ELSE
51 EXTRA_LINK      = -profile
52 !ENDIF
54 EMACS           = $(BLD)\emacs.exe
55 TEMACS          = $(BLD)\temacs.exe
56 TEMACS_TMP      = $(BLD)\temacs.bin
57 TLIB0           = $(BLD)\temacs0.lib
58 TLIB1           = $(BLD)\temacs1.lib
59 TLIB2           = $(BLD)\temacs2.lib
60 !IFDEF NTGUI
61 TLIBW32         = $(BLD)\temacw32.lib
62 !ELSE
63 TLIBW32         =
64 !ENDIF
65 TOBJ            = $(BLD)\firstfile.obj
66 !if $(MSVCNT11)
67 TRES            = $(BLD)\emacs.res
68 !else
69 TRES            = $(BLD)\emacs.rbj
70 !endif
71 TLASTLIB        = $(BLD)\lastfile.lib
73 # see comments in allocate_heap in w32heap.c before changing any of the
74 # -stack, -heap, or -base settings.
75 !if "$(BUILD_TYPE)" == "spd"
76 LINK_FLAGS      = $(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
77 !else
78 LINK_FLAGS      = $(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)
79 !endif
82 # Split up the objects into two sets so that we don't run out of
83 # command line space when we link them into a library.
85 # Put emacs.obj in a separate lib, since we need to have firstfile.obj
86 # as the "main" object file when linking.
88 OBJ0 =  $(BLD)\emacs.obj
90 OBJ1 =  $(BLD)\abbrev.obj       \
91         $(BLD)\alloc.obj        \
92         $(BLD)\alloca.obj       \
93         $(BLD)\atimer.obj       \
94         $(BLD)\buffer.obj       \
95         $(BLD)\bytecode.obj     \
96         $(BLD)\callint.obj      \
97         $(BLD)\callproc.obj     \
98         $(BLD)\casefiddle.obj   \
99         $(BLD)\cm.obj           \
100         $(BLD)\cmds.obj         \
101         $(BLD)\data.obj         \
102         $(BLD)\dired.obj        \
103         $(BLD)\dispnew.obj      \
104         $(BLD)\doc.obj          \
105         $(BLD)\doprnt.obj       \
106         $(BLD)\editfns.obj      \
107         $(BLD)\eval.obj         \
108         $(BLD)\fileio.obj       \
109         $(BLD)\filelock.obj     \
110         $(BLD)\filemode.obj     \
111         $(BLD)\fns.obj          \
112         $(BLD)\indent.obj       \
113         $(BLD)\insdel.obj       \
114         $(BLD)\keyboard.obj     \
115         $(BLD)\keymap.obj       \
116         $(BLD)\lread.obj        \
117         $(BLD)\macros.obj       \
118         $(BLD)\marker.obj       \
119         $(BLD)\minibuf.obj      \
120         $(BLD)\mocklisp.obj
122 OBJ2 =  $(BLD)\w32.obj           \
123         $(BLD)\w32heap.obj       \
124         $(BLD)\w32inevt.obj      \
125         $(BLD)\w32proc.obj       \
126         $(BLD)\w32console.obj       \
127         $(BLD)\print.obj        \
128         $(BLD)\process.obj      \
129         $(BLD)\regex.obj        \
130         $(BLD)\scroll.obj       \
131         $(BLD)\search.obj       \
132         $(BLD)\syntax.obj       \
133         $(BLD)\sysdep.obj       \
134         $(BLD)\term.obj         \
135         $(BLD)\termcap.obj      \
136         $(BLD)\tparam.obj       \
137         $(BLD)\undo.obj         \
138         $(BLD)\unexw32.obj       \
139         $(BLD)\window.obj       \
140         $(BLD)\xdisp.obj        \
141         $(BLD)\casetab.obj      \
142         $(BLD)\floatfns.obj     \
143         $(BLD)\frame.obj        \
144         $(BLD)\gmalloc.obj      \
145         $(BLD)\intervals.obj    \
146         $(BLD)\composite.obj    \
147         $(BLD)\ralloc.obj       \
148         $(BLD)\textprop.obj     \
149         $(BLD)\vm-limit.obj     \
150         $(BLD)\region-cache.obj \
151         $(BLD)\strftime.obj     \
152         $(BLD)\charset.obj      \
153         $(BLD)\coding.obj       \
154         $(BLD)\category.obj     \
155         $(BLD)\ccl.obj          \
156         $(BLD)\fontset.obj
158 WIN32OBJ = $(BLD)\w32term.obj   \
159            $(BLD)\w32xfns.obj   \
160            $(BLD)\w32fns.obj    \
161            $(BLD)\xfaces.obj    \
162            $(BLD)\w32select.obj \
163            $(BLD)\w32menu.obj   \
164            $(BLD)\w32reg.obj    \
165            $(BLD)\w32bdf.obj
167 LIBS =  $(TLIB0)        \
168         $(TLIB1)        \
169         $(TLIB2)        \
170 !IFDEF NTGUI
171         $(TLIBW32)      \
172 !ENDIF
173         $(TLASTLIB)     \
174 !IFDEF NTGUI
175         gdi32.lib       \
176         comdlg32.lib    \
177 !ENDIF
178 #       libcmt.lib      \
179         $(BASE_LIBS)    \
180         $(ADVAPI32)     \
181         user32.lib      \
182         mpr.lib         \
183         shell32.lib     \
184         setargv.obj
187 # Build the executable and dump it.
189 all:            $(BLD) $(EMACS) 
192 # Headers we would preprocess if we could.
194 PREPARED_HEADERS = config.h epaths.h
195 config.h:       ..\nt\$(CONFIG_H)
196                 $(CP) $** $@
197 epaths.h:       ..\nt\paths.h
198                 $(CP) $** $@
201 # Make sure we have the DOC file in the right place.
203 DOC             = $(OBJDIR)\etc\DOC-X
204 $(DOC):;        cd ..\lib-src 
205                 - $(DEL) DOC-X
206                 $(MAKE) $(MFLAGS) -f makefile.nt all
207                 cd ..\src
210 # The dumped executable
212 emacs:          $(EMACS)
213 $(EMACS):       $(DOC) $(TEMACS)
214                 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump
217 # The undumped executable
218 # Note the extra post-link step to insert a static preload heap section.
219 # If preload runs out of memory, increase the last argument to addsection
220 # (it is the preload heap size in MB).
222 temacs:         $(BLD) $(TEMACS)
223 $(TEMACS):      $(PREPARED_HEADERS) $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
224                 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
225                 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16
227 bootstrap: bootstrap-emacs
230 # Build a temacs with a sufficiently large PURESIZE to load the
231 # Lisp files from loadup.el in source form.
233 bootstrap-temacs: bootstrap-clean
234                 $(MAKE) $(MFLAGS) -f makefile.nt temacs CFLAGS="$(CFLAGS) -DPURESIZE=5000000"
237 # Dump an Emacs executable named bootstrap-emacs containing the 
238 # files from loadup.el in source form.
240 bootstrap-emacs: bootstrap-temacs
241                 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup bootstrap
242                 - mkdir ..\bin
243                 $(CP) $(EMACS) ..\bin
246 # Force recompile of files that depend on PURESIZE
248 bootstrap-clean:
249                 - $(DEL) $(BLD)\alloc.obj
250                 - $(DEL) $(BLD)\data.obj
251                 - $(DEL) $(BLD)\intervals.obj
252                 - $(DEL) $(BLD)\keyboard.obj
253                 - $(DEL) $(BLD)\keymap.obj
256 # The resource file.  NT 3.10 requires the use of cvtres; even though
257 # it is not necessary on later versions, it is still ok to use it.
259 $(TRES):        ..\nt\emacs.rc
260                 $(RC) -i..\nt -Fo$(BLD)\emacs.res $**
261 !if !$(MSVCNT11)
262                 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
263 !endif
266 # Build the library.  Split up the build into two phases...otherwise we 
267 # run out of command line space.
269 $(TLIB0):       $(OBJ0)
270                 @- $(AR) -out:$@ $**
271 $(TLIB1):       $(OBJ1)
272                 @- $(AR) -out:$@ $**
273 $(TLIB2):       $(OBJ2)
274                 @- $(AR) -out:$@ $**
275 !IFDEF NTGUI
276 $(TLIBW32):     $(WIN32OBJ)
277                 @- $(AR) -out:$@ $**
278 !ENDIF
281 # Place lastfile.obj in its own library so that it can be loaded after
282 # the source libraries but before any system libraries.  Doing so defines
283 # the end of Emacs' data section portably across compilers and systems.
285 $(TLASTLIB):    $(BLD)\lastfile.obj
286                 @- $(AR) -out:$@ $**
289 # Assuming INSTALL_DIR is defined, build and install emacs in it.
291 install:        all
292                 - mkdir $(INSTALL_DIR)\bin
293                 $(CP) $(EMACS) $(INSTALL_DIR)\bin
296 # Maintenance
298 clean:;         - $(DEL) *~ s\*~
299                 - $(DEL) *.pdb config.h epaths.h
300                 - $(DEL) *.orig *.rej *.crlf
301                 - $(DEL) s\*.orig s\*.rej s\*.crlf
302                 - $(DEL_TREE) deleted
303                 - $(DEL_TREE) obj
304                 - $(DEL_TREE) obj-spd
307 # These files are the ones that compile conditionally on CANNOT_DUMP...
308 # this target is mostly used for debugging.
310 cleandump:;     cd $(BLD)
311                 - $(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
312                 cd ..\..
315 ### DEPENDENCIES ###
317 EMACS_ROOT      = ..
318 SRC             = .
320 $(BLD)\abbrev.obj : \
321         $(SRC)\abbrev.c \
322         $(EMACS_ROOT)\src\s\ms-w32.h \
323         $(EMACS_ROOT)\src\m\intel386.h \
324         $(EMACS_ROOT)\src\config.h \
325         $(SRC)\commands.h \
326         $(SRC)\buffer.h \
327         $(SRC)\window.h
329 $(BLD)\alloc.obj : \
330         $(SRC)\alloc.c \
331         $(EMACS_ROOT)\src\s\ms-w32.h \
332         $(EMACS_ROOT)\src\m\intel386.h \
333         $(EMACS_ROOT)\src\config.h \
334         $(SRC)\dispextern.h \
335         $(SRC)\intervals.h \
336         $(SRC)\composite.h \
337         $(SRC)\puresize.h \
338         $(SRC)\buffer.h \
339         $(SRC)\window.h \
340         $(SRC)\frame.h \
341         $(SRC)\blockinput.h \
342         $(SRC)\syssignal.h
344 $(BLD)\alloca.obj : \
345         $(SRC)\alloca.c \
346         $(EMACS_ROOT)\src\s\ms-w32.h \
347         $(EMACS_ROOT)\src\m\intel386.h \
348         $(EMACS_ROOT)\src\config.h \
349         $(SRC)\s\ms-w32.h \
350         $(SRC)\m\intel386.h \
351         $(SRC)\config.h \
352         $(SRC)\blockinput.h
354 $(BLD)\atimer.obj : \
355         $(SRC)\atimer.c \
356         $(EMACS_ROOT)\src\s\ms-w32.h \
357         $(EMACS_ROOT)\src\m\intel386.h \
358         $(EMACS_ROOT)\src\config.h \
359         $(SRC)\s\ms-w32.h \
360         $(SRC)\m\intel386.h \
361         $(SRC)\config.h \
362         $(SRC)\atimer.h \
363         $(SRC)\syssignal.h \
364         $(SRC)\systime.h \
365         $(SRC)\blockinput.h
367 $(BLD)\buffer.obj : \
368         $(SRC)\buffer.c \
369         $(EMACS_ROOT)\nt\inc\sys\param.h \
370         $(EMACS_ROOT)\src\s\ms-w32.h \
371         $(EMACS_ROOT)\src\m\intel386.h \
372         $(EMACS_ROOT)\src\config.h \
373         $(SRC)\dispextern.h \
374         $(SRC)\intervals.h \
375         $(SRC)\composite.h \
376         $(SRC)\frame.h \
377         $(SRC)\window.h \
378         $(SRC)\commands.h \
379         $(SRC)\buffer.h \
380         $(SRC)\indent.h \
381         $(SRC)\blockinput.h \
382         $(SRC)\region-cache.h
384 $(BLD)\bytecode.obj : \
385         $(SRC)\bytecode.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)\syntax.h
392 $(BLD)\callint.obj : \
393         $(SRC)\callint.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)\commands.h \
399         $(SRC)\keyboard.h \
400         $(SRC)\window.h \
401         $(SRC)\mocklisp.h
403 $(BLD)\callproc.obj : \
404         $(SRC)\callproc.c \
405         $(EMACS_ROOT)\src\s\ms-w32.h \
406         $(EMACS_ROOT)\src\m\intel386.h \
407         $(EMACS_ROOT)\src\config.h \
408         $(SRC)\msdos.h \
409         $(EMACS_ROOT)\nt\inc\sys\param.h \
410         $(SRC)\commands.h \
411         $(SRC)\buffer.h \
412         $(SRC)\process.h \
413         $(SRC)\syssignal.h \
414         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
415         $(EMACS_ROOT)\nt\inc\sys\file.h \
416         $(SRC)\systty.h
418 $(BLD)\casefiddle.obj : \
419         $(SRC)\casefiddle.c \
420         $(EMACS_ROOT)\src\s\ms-w32.h \
421         $(EMACS_ROOT)\src\m\intel386.h \
422         $(EMACS_ROOT)\src\config.h \
423         $(SRC)\buffer.h \
424         $(SRC)\commands.h \
425         $(SRC)\syntax.h
426         $(CC) $(CFLAGS) -Fo$@ casefiddle.c
428 $(BLD)\casetab.obj : \
429         $(SRC)\casetab.c \
430         $(EMACS_ROOT)\src\s\ms-w32.h \
431         $(EMACS_ROOT)\src\m\intel386.h \
432         $(EMACS_ROOT)\src\config.h \
433         $(SRC)\buffer.h
435 $(BLD)\cm.obj : \
436         $(SRC)\cm.c \
437         $(EMACS_ROOT)\src\s\ms-w32.h \
438         $(EMACS_ROOT)\src\m\intel386.h \
439         $(EMACS_ROOT)\src\config.h \
440         $(SRC)\cm.h \
441         $(SRC)\termhooks.h
443 $(BLD)\cmds.obj : \
444         $(SRC)\cmds.c \
445         $(EMACS_ROOT)\src\s\ms-w32.h \
446         $(EMACS_ROOT)\src\m\intel386.h \
447         $(EMACS_ROOT)\src\config.h \
448         $(SRC)\commands.h \
449         $(SRC)\buffer.h \
450         $(SRC)\syntax.h
452 $(BLD)\composite.obj : \
453         $(SRC)\composite.c \
454         $(SRC)\buffer.h \
455         $(SRC)\charset.h \
456         $(SRC)\intervals.h \
457         $(SRC)\composite.h \
458         $(EMACS_ROOT)\src\s\ms-w32.h \
459         $(EMACS_ROOT)\src\m\intel386.h \
460         $(EMACS_ROOT)\src\config.h
462 $(BLD)\data.obj : \
463         $(SRC)\data.c \
464         $(EMACS_ROOT)\src\s\ms-w32.h \
465         $(EMACS_ROOT)\src\m\intel386.h \
466         $(EMACS_ROOT)\src\config.h \
467         $(SRC)\puresize.h \
468         $(SRC)\buffer.h \
469         $(SRC)\syssignal.h
471 $(BLD)\dired.obj : \
472         $(SRC)\dired.c \
473         $(EMACS_ROOT)\src\s\ms-w32.h \
474         $(EMACS_ROOT)\src\m\intel386.h \
475         $(EMACS_ROOT)\src\config.h \
476         $(SRC)\vmsdir.h \
477         $(SRC)\ndir.h \
478         $(SRC)\buffer.h \
479         $(SRC)\commands.h \
480         $(SRC)\regex.h
482 $(BLD)\dispnew.obj : \
483         $(SRC)\dispnew.c \
484         $(EMACS_ROOT)\src\s\ms-w32.h \
485         $(EMACS_ROOT)\src\m\intel386.h \
486         $(EMACS_ROOT)\src\config.h \
487         $(SRC)\termchar.h \
488         $(SRC)\termopts.h \
489         $(SRC)\termhooks.h \
490         $(SRC)\cm.h \
491         $(SRC)\buffer.h \
492         $(SRC)\frame.h \
493         $(SRC)\window.h \
494         $(SRC)\commands.h \
495         $(SRC)\disptab.h \
496         $(SRC)\indent.h \
497         $(SRC)\dispextern.h \
498         $(SRC)\intervals.h \
499         $(SRC)\composite.h \
500         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
501         $(EMACS_ROOT)\nt\inc\sys\file.h \
502         $(SRC)\systty.h \
503         $(SRC)\w32term.h \
504         $(SRC)\xterm.h \
505         $(SRC)\vmstime.h \
506         $(SRC)\systime.h
508 $(BLD)\doc.obj : \
509         $(SRC)\doc.c \
510         $(EMACS_ROOT)\src\s\ms-w32.h \
511         $(EMACS_ROOT)\src\m\intel386.h \
512         $(EMACS_ROOT)\src\config.h \
513         $(EMACS_ROOT)\nt\inc\sys\file.h \
514         $(SRC)\buffer.h \
515         $(SRC)\keyboard.h
517 $(BLD)\doprnt.obj : \
518         $(SRC)\doprnt.c \
519         $(EMACS_ROOT)\src\s\ms-w32.h \
520         $(EMACS_ROOT)\src\m\intel386.h \
521         $(EMACS_ROOT)\src\config.h
523 $(BLD)\dosfns.obj : \
524         $(SRC)\dosfns.c \
525         $(EMACS_ROOT)\src\s\ms-w32.h \
526         $(EMACS_ROOT)\src\m\intel386.h \
527         $(EMACS_ROOT)\src\config.h \
528         $(SRC)\buffer.h \
529         $(SRC)\termchar.h \
530         $(SRC)\termhooks.h \
531         $(SRC)\frame.h \
532         $(SRC)\dosfns.h \
533         $(SRC)\msdos.h
535 $(BLD)\editfns.obj : \
536         $(SRC)\editfns.c \
537         $(EMACS_ROOT)\src\s\ms-w32.h \
538         $(EMACS_ROOT)\src\m\intel386.h \
539         $(EMACS_ROOT)\src\config.h \
540         $(SRC)\uaf.h \
541         $(SRC)\vms-pwd.h \
542         $(EMACS_ROOT)\nt\inc\pwd.h \
543         $(SRC)\dispextern.h \
544         $(SRC)\intervals.h \
545         $(SRC)\composite.h \
546         $(SRC)\buffer.h \
547         $(SRC)\window.h \
548         $(SRC)\vmstime.h \
549         $(SRC)\systime.h
551 $(BLD)\emacs.obj : \
552         $(SRC)\emacs.c \
553         $(EMACS_ROOT)\src\s\ms-w32.h \
554         $(EMACS_ROOT)\src\m\intel386.h \
555         $(EMACS_ROOT)\src\config.h \
556         $(SRC)\commands.h \
557         $(SRC)\dispextern.h \
558         $(SRC)\intervals.h \
559         $(SRC)\composite.h \
560         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
561         $(EMACS_ROOT)\nt\inc\sys\file.h \
562         $(SRC)\systty.h \
563         $(SRC)\syssignal.h \
564         $(SRC)\process.h
566 $(BLD)\eval.obj : \
567         $(SRC)\eval.c \
568         $(EMACS_ROOT)\src\s\ms-w32.h \
569         $(EMACS_ROOT)\src\m\intel386.h \
570         $(EMACS_ROOT)\src\config.h \
571         $(SRC)\blockinput.h \
572         $(SRC)\commands.h \
573         $(SRC)\keyboard.h
575 $(BLD)\fileio.obj : \
576         $(SRC)\fileio.c \
577         $(EMACS_ROOT)\src\s\ms-w32.h \
578         $(EMACS_ROOT)\src\m\intel386.h \
579         $(EMACS_ROOT)\src\config.h \
580         $(SRC)\uaf.h \
581         $(SRC)\vms-pwd.h \
582         $(EMACS_ROOT)\nt\inc\pwd.h \
583         $(SRC)\msdos.h \
584         $(EMACS_ROOT)\nt\inc\sys\param.h \
585         $(SRC)\vmsdir.h \
586         $(SRC)\dispextern.h \
587         $(SRC)\intervals.h \
588         $(SRC)\composite.h \
589         $(SRC)\buffer.h \
590         $(SRC)\window.h \
591         $(EMACS_ROOT)\nt\inc\sys\file.h \
592         $(SRC)\vmstime.h \
593         $(SRC)\systime.h
595 $(BLD)\filelock.obj : \
596         $(SRC)\filelock.c \
597         $(EMACS_ROOT)\src\s\ms-w32.h \
598         $(EMACS_ROOT)\src\m\intel386.h \
599         $(EMACS_ROOT)\src\config.h \
600         $(SRC)\uaf.h \
601         $(SRC)\vms-pwd.h \
602         $(EMACS_ROOT)\nt\inc\pwd.h \
603         $(EMACS_ROOT)\nt\inc\sys\file.h \
604         $(EMACS_ROOT)\src\epaths.h \
605         $(SRC)\buffer.h \
606         $(SRC)\vmsdir.h \
607         $(SRC)\ndir.h
609 $(BLD)\filemode.obj : \
610         $(SRC)\filemode.c \
611         $(EMACS_ROOT)\src\s\ms-w32.h \
612         $(EMACS_ROOT)\src\m\intel386.h \
613         $(EMACS_ROOT)\src\config.h \
614         $(SRC)\s\ms-w32.h \
615         $(SRC)\m\intel386.h \
616         $(SRC)\config.h
618 $(BLD)\firstfile.obj : \
619         $(SRC)\firstfile.c \
620         $(EMACS_ROOT)\src\s\ms-w32.h \
621         $(EMACS_ROOT)\src\m\intel386.h \
622         $(EMACS_ROOT)\src\config.h
624 $(BLD)\floatfns.obj : \
625         $(SRC)\floatfns.c \
626         $(EMACS_ROOT)\src\s\ms-w32.h \
627         $(EMACS_ROOT)\src\m\intel386.h \
628         $(EMACS_ROOT)\src\config.h \
629         $(SRC)\syssignal.h
631 $(BLD)\fns.obj : \
632         $(SRC)\fns.c \
633         $(EMACS_ROOT)\src\s\ms-w32.h \
634         $(EMACS_ROOT)\src\m\intel386.h \
635         $(EMACS_ROOT)\src\config.h \
636         $(SRC)\commands.h \
637         $(SRC)\buffer.h \
638         $(SRC)\keyboard.h \
639         $(SRC)\dispextern.h \
640         $(SRC)\intervals.h \
641         $(SRC)\composite.h
643 $(BLD)\frame.obj : \
644         $(SRC)\frame.c \
645         $(EMACS_ROOT)\src\s\ms-w32.h \
646         $(EMACS_ROOT)\src\m\intel386.h \
647         $(EMACS_ROOT)\src\config.h \
648         $(SRC)\frame.h \
649         $(SRC)\termhooks.h \
650         $(SRC)\window.h \
651         $(SRC)\buffer.h \
652         $(SRC)\commands.h \
653         $(SRC)\keyboard.h
655 $(BLD)\getloadavg.obj : \
656         $(SRC)\getloadavg.c \
657         $(EMACS_ROOT)\nt\inc\sys\param.h \
658         $(EMACS_ROOT)\src\s\ms-w32.h \
659         $(EMACS_ROOT)\src\m\intel386.h \
660         $(EMACS_ROOT)\src\config.h \
661         $(SRC)\s\ms-w32.h \
662         $(SRC)\m\intel386.h \
663         $(SRC)\config.h \
664         $(EMACS_ROOT)\nt\inc\sys\file.h
666 $(BLD)\gmalloc.obj : \
667         $(SRC)\gmalloc.c \
668         $(EMACS_ROOT)\src\s\ms-w32.h \
669         $(EMACS_ROOT)\src\m\intel386.h \
670         $(EMACS_ROOT)\src\config.h \
671         $(EMACS_ROOT)\nt\inc\sys\param.h \
672         $(SRC)\getpagesize.h
673         $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
675 $(BLD)\hftctl.obj : \
676         $(SRC)\hftctl.c \
677         $(EMACS_ROOT)\src\s\ms-w32.h \
678         $(EMACS_ROOT)\src\m\intel386.h \
679         $(EMACS_ROOT)\src\config.h \
680         $(EMACS_ROOT)\nt\inc\sys\ioctl.h
682 $(BLD)\indent.obj : \
683         $(SRC)\indent.c \
684         $(EMACS_ROOT)\src\s\ms-w32.h \
685         $(EMACS_ROOT)\src\m\intel386.h \
686         $(EMACS_ROOT)\src\config.h \
687         $(SRC)\buffer.h \
688         $(SRC)\indent.h \
689         $(SRC)\frame.h \
690         $(SRC)\window.h \
691         $(SRC)\termchar.h \
692         $(SRC)\termopts.h \
693         $(SRC)\disptab.h \
694         $(SRC)\dispextern.h \
695         $(SRC)\intervals.h \
696         $(SRC)\region-cache.h \
697         $(SRC)\composite.h
699 $(BLD)\insdel.obj : \
700         $(SRC)\insdel.c \
701         $(EMACS_ROOT)\src\s\ms-w32.h \
702         $(EMACS_ROOT)\src\m\intel386.h \
703         $(EMACS_ROOT)\src\config.h \
704         $(SRC)\dispextern.h \
705         $(SRC)\intervals.h \
706         $(SRC)\composite.h \
707         $(SRC)\buffer.h \
708         $(SRC)\window.h \
709         $(SRC)\blockinput.h
711 $(BLD)\intervals.obj : \
712         $(SRC)\intervals.c \
713         $(EMACS_ROOT)\src\s\ms-w32.h \
714         $(EMACS_ROOT)\src\m\intel386.h \
715         $(EMACS_ROOT)\src\config.h \
716         $(SRC)\dispextern.h \
717         $(SRC)\intervals.h \
718         $(SRC)\composite.h \
719         $(SRC)\keyboard.h \
720         $(SRC)\buffer.h \
721         $(SRC)\puresize.h
723 $(BLD)\keyboard.obj : \
724         $(SRC)\keyboard.c \
725         $(EMACS_ROOT)\src\s\ms-w32.h \
726         $(EMACS_ROOT)\src\m\intel386.h \
727         $(EMACS_ROOT)\src\config.h \
728         $(SRC)\termchar.h \
729         $(SRC)\termopts.h \
730         $(SRC)\termhooks.h \
731         $(SRC)\macros.h \
732         $(SRC)\frame.h \
733         $(SRC)\window.h \
734         $(SRC)\commands.h \
735         $(SRC)\buffer.h \
736         $(SRC)\disptab.h \
737         $(SRC)\keyboard.h \
738         $(SRC)\dispextern.h \
739         $(SRC)\intervals.h \
740         $(SRC)\composite.h \
741         $(SRC)\blockinput.h \
742         $(SRC)\msdos.h \
743         $(SRC)\syssignal.h \
744         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
745         $(EMACS_ROOT)\nt\inc\sys\file.h \
746         $(SRC)\systty.h \
747         $(SRC)\w32term.h \
748         $(SRC)\xterm.h \
749         $(SRC)\vmstime.h \
750         $(SRC)\systime.h \
751         $(SRC)\atimer.h
753 $(BLD)\keymap.obj : \
754         $(SRC)\keymap.c \
755         $(EMACS_ROOT)\src\s\ms-w32.h \
756         $(EMACS_ROOT)\src\m\intel386.h \
757         $(EMACS_ROOT)\src\config.h \
758         $(SRC)\commands.h \
759         $(SRC)\buffer.h \
760         $(SRC)\keyboard.h \
761         $(SRC)\termhooks.h \
762         $(SRC)\blockinput.h
764 $(BLD)\lastfile.obj : \
765         $(SRC)\lastfile.c \
766         $(EMACS_ROOT)\src\s\ms-w32.h \
767         $(EMACS_ROOT)\src\m\intel386.h \
768         $(EMACS_ROOT)\src\config.h
770 $(BLD)\lread.obj : \
771         $(SRC)\lread.c \
772         $(EMACS_ROOT)\src\s\ms-w32.h \
773         $(EMACS_ROOT)\src\m\intel386.h \
774         $(EMACS_ROOT)\src\config.h \
775         $(EMACS_ROOT)\nt\inc\sys\file.h \
776         $(SRC)\buffer.h \
777         $(EMACS_ROOT)\src\epaths.h \
778         $(SRC)\commands.h \
779         $(SRC)\keyboard.h \
780         $(SRC)\termhooks.h \
781         $(SRC)\msdos.h
783 $(BLD)\macros.obj : \
784         $(SRC)\macros.c \
785         $(EMACS_ROOT)\src\s\ms-w32.h \
786         $(EMACS_ROOT)\src\m\intel386.h \
787         $(EMACS_ROOT)\src\config.h \
788         $(SRC)\macros.h \
789         $(SRC)\commands.h \
790         $(SRC)\buffer.h \
791         $(SRC)\window.h
793 $(BLD)\marker.obj : \
794         $(SRC)\marker.c \
795         $(EMACS_ROOT)\src\s\ms-w32.h \
796         $(EMACS_ROOT)\src\m\intel386.h \
797         $(EMACS_ROOT)\src\config.h \
798         $(SRC)\buffer.h
800 $(BLD)\minibuf.obj : \
801         $(SRC)\minibuf.c \
802         $(EMACS_ROOT)\src\s\ms-w32.h \
803         $(EMACS_ROOT)\src\m\intel386.h \
804         $(EMACS_ROOT)\src\config.h \
805         $(SRC)\commands.h \
806         $(SRC)\buffer.h \
807         $(SRC)\dispextern.h \
808         $(SRC)\frame.h \
809         $(SRC)\window.h \
810         $(SRC)\syntax.h
812 $(BLD)\mocklisp.obj : \
813         $(SRC)\mocklisp.c \
814         $(EMACS_ROOT)\src\s\ms-w32.h \
815         $(EMACS_ROOT)\src\m\intel386.h \
816         $(EMACS_ROOT)\src\config.h \
817         $(SRC)\buffer.h
819 $(BLD)\w32.obj : \
820         $(SRC)\w32.c \
821         $(SRC)\w32.h \
822         $(SRC)\s\ms-w32.h \
823         $(SRC)\m\intel386.h \
824         $(SRC)\config.h \
825         $(EMACS_ROOT)\nt\inc\pwd.h \
826         $(SRC)\w32heap.h
828 $(BLD)\w32heap.obj : \
829         $(SRC)\w32heap.c \
830         $(SRC)\w32heap.h \
831         $(SRC)\s\ms-w32.h \
832         $(SRC)\m\intel386.h \
833         $(SRC)\config.h
835 $(BLD)\w32inevt.obj : \
836         $(SRC)\w32inevt.c \
837         $(SRC)\s\ms-w32.h \
838         $(SRC)\m\intel386.h \
839         $(SRC)\config.h \
840         $(SRC)\frame.h \
841         $(SRC)\blockinput.h \
842         $(SRC)\termhooks.h \
843         $(SRC)\w32heap.h \
844         $(SRC)\w32term.h
846 $(BLD)\w32proc.obj : \
847         $(SRC)\w32proc.c \
848         $(SRC)\s\ms-w32.h \
849         $(SRC)\m\intel386.h \
850         $(SRC)\config.h \
851         $(SRC)\w32.h \
852         $(SRC)\w32heap.h \
853         $(SRC)\vmstime.h \
854         $(SRC)\systime.h
856 $(BLD)\w32console.obj : \
857         $(SRC)\w32console.c \
858         $(SRC)\s\ms-w32.h \
859         $(SRC)\m\intel386.h \
860         $(SRC)\config.h \
861         $(SRC)\frame.h \
862         $(SRC)\disptab.h \
863         $(SRC)\termhooks.h \
864         $(SRC)\w32inevt.h
866 $(BLD)\prefix-args.obj : \
867         $(SRC)\prefix-args.c
869 $(BLD)\print.obj : \
870         $(SRC)\print.c \
871         $(EMACS_ROOT)\src\s\ms-w32.h \
872         $(EMACS_ROOT)\src\m\intel386.h \
873         $(EMACS_ROOT)\src\config.h \
874         $(SRC)\buffer.h \
875         $(SRC)\frame.h \
876         $(SRC)\window.h \
877         $(SRC)\process.h \
878         $(SRC)\termchar.h \
879         $(SRC)\dispextern.h \
880         $(SRC)\intervals.h \
881         $(SRC)\composite.h
883 $(BLD)\process.obj : \
884         $(SRC)\process.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\ioctl.h \
889         $(EMACS_ROOT)\nt\inc\sys\file.h \
890         $(SRC)\systty.h \
891         $(SRC)\window.h \
892         $(SRC)\buffer.h \
893         $(SRC)\process.h \
894         $(SRC)\termhooks.h \
895         $(SRC)\commands.h \
896         $(SRC)\frame.h \
897         $(SRC)\syssignal.h \
898         $(SRC)\vmsproc.h \
899         $(SRC)\syswait.h \
900         $(SRC)\vmstime.h \
901         $(SRC)\systime.h \
902         $(SRC)\termopts.h \
903         $(SRC)\composite.h \
904         $(SRC)\atimer.h
906 $(BLD)\ralloc.obj : \
907         $(SRC)\ralloc.c \
908         $(EMACS_ROOT)\src\s\ms-w32.h \
909         $(EMACS_ROOT)\src\m\intel386.h \
910         $(EMACS_ROOT)\src\config.h \
911         $(SRC)\s\ms-w32.h \
912         $(SRC)\m\intel386.h \
913         $(SRC)\config.h \
914         $(EMACS_ROOT)\nt\inc\sys\param.h \
915         $(SRC)\getpagesize.h
917 $(BLD)\regex.obj : \
918         $(SRC)\regex.c \
919         $(EMACS_ROOT)\src\s\ms-w32.h \
920         $(EMACS_ROOT)\src\m\intel386.h \
921         $(EMACS_ROOT)\src\config.h \
922         $(SRC)\s\ms-w32.h \
923         $(SRC)\m\intel386.h \
924         $(SRC)\config.h \
925         $(SRC)\buffer.h \
926         $(SRC)\syntax.h \
927         $(SRC)\regex.h
929 $(BLD)\region-cache.obj : \
930         $(SRC)\region-cache.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)\region-cache.h
937 $(BLD)\scroll.obj : \
938         $(SRC)\scroll.c \
939         $(EMACS_ROOT)\src\s\ms-w32.h \
940         $(EMACS_ROOT)\src\m\intel386.h \
941         $(EMACS_ROOT)\src\config.h \
942         $(SRC)\termchar.h \
943         $(SRC)\dispextern.h \
944         $(SRC)\frame.h
946 $(BLD)\search.obj : \
947         $(SRC)\search.c \
948         $(EMACS_ROOT)\src\s\ms-w32.h \
949         $(EMACS_ROOT)\src\m\intel386.h \
950         $(EMACS_ROOT)\src\config.h \
951         $(SRC)\syntax.h \
952         $(SRC)\buffer.h \
953         $(SRC)\commands.h \
954         $(SRC)\blockinput.h \
955         $(SRC)\regex.h \
956         $(SRC)\region-cache.h \
957         $(SRC)\composite.h
959 $(BLD)\strftime.obj : \
960         $(SRC)\strftime.c \
961         $(EMACS_ROOT)\src\s\ms-w32.h \
962         $(EMACS_ROOT)\src\m\intel386.h \
963         $(EMACS_ROOT)\src\config.h
965 $(BLD)\sunfns.obj : \
966         $(SRC)\sunfns.c \
967         $(EMACS_ROOT)\src\s\ms-w32.h \
968         $(EMACS_ROOT)\src\m\intel386.h \
969         $(EMACS_ROOT)\src\config.h \
970         $(SRC)\window.h \
971         $(SRC)\buffer.h \
972         $(SRC)\termhooks.h
974 $(BLD)\syntax.obj : \
975         $(SRC)\syntax.c \
976         $(EMACS_ROOT)\src\s\ms-w32.h \
977         $(EMACS_ROOT)\src\m\intel386.h \
978         $(EMACS_ROOT)\src\config.h \
979         $(SRC)\commands.h \
980         $(SRC)\buffer.h \
981         $(SRC)\syntax.h \
982         $(SRC)\composite.h
984 $(BLD)\sysdep.obj : \
985         $(SRC)\sysdep.c \
986         $(EMACS_ROOT)\src\s\ms-w32.h \
987         $(EMACS_ROOT)\src\m\intel386.h \
988         $(EMACS_ROOT)\src\config.h \
989         $(SRC)\blockinput.h \
990         $(SRC)\dosfns.h \
991         $(SRC)\msdos.h \
992         $(EMACS_ROOT)\nt\inc\sys\param.h \
993         $(EMACS_ROOT)\nt\inc\sys\file.h \
994         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
995         $(EMACS_ROOT)\nt\inc\sys\file.h \
996         $(SRC)\systty.h \
997         $(SRC)\vmsproc.h \
998         $(SRC)\syswait.h \
999         $(SRC)\frame.h \
1000         $(SRC)\window.h \
1001         $(SRC)\termhooks.h \
1002         $(SRC)\termchar.h \
1003         $(SRC)\termopts.h \
1004         $(SRC)\dispextern.h \
1005         $(SRC)\process.h \
1006         $(SRC)\vmsdir.h \
1007         $(SRC)\ndir.h \
1008         $(SRC)\syssignal.h \
1009         $(SRC)\vmstime.h \
1010         $(SRC)\systime.h \
1011         $(SRC)\uaf.h \
1012         $(SRC)\vms-pwd.h \
1013         $(EMACS_ROOT)\src\acldef.h \
1014         $(EMACS_ROOT)\src\chpdef.h
1016 $(BLD)\term.obj : \
1017         $(SRC)\term.c \
1018         $(EMACS_ROOT)\src\s\ms-w32.h \
1019         $(EMACS_ROOT)\src\m\intel386.h \
1020         $(EMACS_ROOT)\src\config.h \
1021         $(SRC)\termchar.h \
1022         $(SRC)\termopts.h \
1023         $(SRC)\cm.h \
1024         $(SRC)\frame.h \
1025         $(SRC)\disptab.h \
1026         $(SRC)\termhooks.h \
1027         $(SRC)\keyboard.h
1029 $(BLD)\termcap.obj : \
1030         $(SRC)\termcap.c \
1031         $(EMACS_ROOT)\src\s\ms-w32.h \
1032         $(EMACS_ROOT)\src\m\intel386.h \
1033         $(EMACS_ROOT)\src\config.h \
1034         $(EMACS_ROOT)\nt\inc\sys\file.h
1036 $(BLD)\terminfo.obj : \
1037         $(SRC)\terminfo.c
1039 $(BLD)\textprop.obj : \
1040         $(SRC)\textprop.c \
1041         $(EMACS_ROOT)\src\s\ms-w32.h \
1042         $(EMACS_ROOT)\src\m\intel386.h \
1043         $(EMACS_ROOT)\src\config.h \
1044         $(SRC)\dispextern.h \
1045         $(SRC)\intervals.h \
1046         $(SRC)\composite.h \
1047         $(SRC)\buffer.h \
1048         $(SRC)\window.h
1050 $(BLD)\tparam.obj : \
1051         $(SRC)\tparam.c \
1052         $(EMACS_ROOT)\src\s\ms-w32.h \
1053         $(EMACS_ROOT)\src\m\intel386.h \
1054         $(EMACS_ROOT)\src\config.h
1056 $(BLD)\undo.obj : \
1057         $(SRC)\undo.c \
1058         $(EMACS_ROOT)\src\s\ms-w32.h \
1059         $(EMACS_ROOT)\src\m\intel386.h \
1060         $(EMACS_ROOT)\src\config.h \
1061         $(SRC)\buffer.h \
1062         $(SRC)\commands.h
1064 $(BLD)\unexw32.obj : \
1065         $(SRC)\unexw32.c \
1066         $(EMACS_ROOT)\src\s\ms-w32.h \
1067         $(EMACS_ROOT)\src\m\intel386.h \
1068         $(EMACS_ROOT)\src\config.h \
1069         $(SRC)\w32heap.h
1071 $(BLD)\vm-limit.obj : \
1072         $(SRC)\vm-limit.c \
1073         $(EMACS_ROOT)\src\s\ms-w32.h \
1074         $(EMACS_ROOT)\src\m\intel386.h \
1075         $(EMACS_ROOT)\src\config.h \
1076         $(SRC)\mem-limits.h     
1078 $(BLD)\widget.obj : \
1079         $(SRC)\widget.c \
1080         $(EMACS_ROOT)\src\s\ms-w32.h \
1081         $(EMACS_ROOT)\src\m\intel386.h \
1082         $(EMACS_ROOT)\src\config.h \
1083         $(SRC)\xterm.h \
1084         $(SRC)\frame.h \
1085         $(SRC)\dispextern.h \
1086         $(SRC)\widget.h \
1087         $(SRC)\widgetprv.h
1089 $(BLD)\window.obj : \
1090         $(SRC)\window.c \
1091         $(EMACS_ROOT)\src\s\ms-w32.h \
1092         $(EMACS_ROOT)\src\m\intel386.h \
1093         $(EMACS_ROOT)\src\config.h \
1094         $(SRC)\buffer.h \
1095         $(SRC)\frame.h \
1096         $(SRC)\window.h \
1097         $(SRC)\commands.h \
1098         $(SRC)\indent.h \
1099         $(SRC)\termchar.h \
1100         $(SRC)\disptab.h \
1101         $(SRC)\keyboard.h \
1102         $(SRC)\composite.h
1104 $(BLD)\xdisp.obj : \
1105         $(SRC)\xdisp.c \
1106         $(EMACS_ROOT)\src\s\ms-w32.h \
1107         $(EMACS_ROOT)\src\m\intel386.h \
1108         $(EMACS_ROOT)\src\config.h \
1109         $(SRC)\frame.h \
1110         $(SRC)\window.h \
1111         $(SRC)\termchar.h \
1112         $(SRC)\buffer.h \
1113         $(SRC)\indent.h \
1114         $(SRC)\commands.h \
1115         $(SRC)\macros.h \
1116         $(SRC)\disptab.h \
1117         $(SRC)\termhooks.h \
1118         $(SRC)\dispextern.h \
1119         $(SRC)\intervals.h \
1120         $(SRC)\composite.h
1122 $(BLD)\xfaces.obj: \
1123         $(EMACS_ROOT)\src\s\ms-w32.h \
1124         $(EMACS_ROOT)\src\m\intel386.h \
1125         $(EMACS_ROOT)\src\config.h \
1126         $(SRC)\xfaces.c \
1127         $(SRC)\charset.h \
1128         $(SRC)\fontset.h \
1129         $(SRC)\w32term.h \
1130         $(SRC)\w32gui.h \
1131         $(SRC)\buffer.h \
1132         $(SRC)\dispextern.h \
1133         $(SRC)\frame.h \
1134         $(SRC)\blockinput.h \
1135         $(SRC)\window.h \
1136         $(SRC)\intervals.h \
1137         $(SRC)\composite.h
1139 $(BLD)\w32fns.obj: \
1140         $(EMACS_ROOT)\src\s\ms-w32.h \
1141         $(EMACS_ROOT)\src\m\intel386.h \
1142         $(EMACS_ROOT)\src\config.h \
1143         $(SRC)\w32fns.c \
1144         $(SRC)\x-list-font.c \
1145         $(SRC)\w32term.h \
1146         $(SRC)\w32gui.h \
1147         $(SRC)\frame.h \
1148         $(SRC)\window.h \
1149         $(SRC)\buffer.h \
1150         $(SRC)\charset.h \
1151         $(SRC)\coding.h \
1152         $(SRC)\dispextern.h \
1153         $(SRC)\keyboard.h \
1154         $(SRC)\blockinput.h \
1155         $(SRC)\epaths.h \
1156         $(SRC)\w32heap.h \
1157         $(SRC)\termhooks.h
1159 $(BLD)\w32menu.obj: \
1160         $(EMACS_ROOT)\src\s\ms-w32.h \
1161         $(EMACS_ROOT)\src\m\intel386.h \
1162         $(EMACS_ROOT)\src\config.h \
1163         $(SRC)\w32menu.c \
1164         $(SRC)\termhooks.h \
1165         $(SRC)\frame.h \
1166         $(SRC)\window.h \
1167         $(SRC)\keyboard.h \
1168         $(SRC)\blockinput.h \
1169         $(SRC)\buffer.h \
1170         $(SRC)\charset.h \
1171         $(SRC)\coding.h
1173 $(BLD)\w32term.obj: \
1174         $(EMACS_ROOT)\src\s\ms-w32.h \
1175         $(EMACS_ROOT)\src\m\intel386.h \
1176         $(EMACS_ROOT)\src\config.h \
1177         $(SRC)\w32term.c \
1178         $(SRC)\blockinput.h \
1179         $(SRC)\w32heap.h \
1180         $(SRC)\w32term.h \
1181         $(SRC)\w32gui.h \
1182         $(SRC)\systty.h \
1183         $(SRC)\systime.h \
1184         $(SRC)\frame.h \
1185         $(SRC)\dispextern.h \
1186         $(SRC)\termhooks.h \
1187         $(SRC)\termopts.h \
1188         $(SRC)\termchar.h \
1189         $(SRC)\gnu.h \
1190         $(SRC)\disptab.h \
1191         $(SRC)\buffer.h \
1192         $(SRC)\window.h \
1193         $(SRC)\keyboard.h \
1194         $(SRC)\intervals.h \
1195         $(SRC)\composite.h \
1196         $(SRC)\atimer.h
1198 $(BLD)\w32select.obj: \
1199         $(EMACS_ROOT)\src\s\ms-w32.h \
1200         $(EMACS_ROOT)\src\m\intel386.h \
1201         $(EMACS_ROOT)\src\config.h \
1202         $(SRC)\w32select.c \
1203         $(SRC)\w32term.h \
1204         $(SRC)\w32gui.h \
1205         $(SRC)\dispextern.h \
1206         $(SRC)\frame.h \
1207         $(SRC)\blockinput.h
1209 $(BLD)\w32reg.obj: \
1210         $(EMACS_ROOT)\src\s\ms-w32.h \
1211         $(EMACS_ROOT)\src\m\intel386.h \
1212         $(EMACS_ROOT)\src\config.h \
1213         $(SRC)\w32reg.c \
1214         $(SRC)\w32term.h \
1215         $(SRC)\w32gui.h \
1216         $(SRC)\blockinput.h
1218 $(BLD)\w32xfns.obj: \
1219         $(EMACS_ROOT)\src\s\ms-w32.h \
1220         $(EMACS_ROOT)\src\m\intel386.h \
1221         $(EMACS_ROOT)\src\config.h \
1222         $(SRC)\w32xfns.c \
1224 $(BLD)\w32bdf.obj: \
1225         $(EMACS_ROOT)\src/s\ms-w32.h \
1226         $(EMACS_ROOT)\src/m\intel386.h \
1227         $(EMACS_ROOT)\src/config.h \
1228         $(SRC)\w32bdf.c \
1229         $(SRC)\charset.h \
1230         $(SRC)\frame.h \
1231         $(SRC)\dispextern.h \
1232         $(SRC)\fontset.h \
1233         $(SRC)\blockinput.h \
1234         $(SRC)\w32gui.h \
1235         $(SRC)\w32term.h \
1236         $(SRC)\w32bdf.h \
1237         $(SRC)\w32.h \
1238         $(SRC)\frame.h \
1239         $(SRC)\blockinput.h