]> code.delx.au - gnu-emacs/blob - src/makefile.nt
*** empty log message ***
[gnu-emacs] / src / makefile.nt
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
5 #
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.
22 #
23
24 #
25 # Sets up the system dependent macros.
26 #
27 !include ..\nt\makefile.def
28
29 SUBSYSTEM=console
30
31 #
32 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
33 # the emacs source tree.
34 #
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
44
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
53
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
72
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
80
81 #
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.
84 #
85 # Put emacs.obj in a separate lib, since we need to have firstfile.obj
86 # as the "main" object file when linking.
87 #
88 OBJ0 = $(BLD)\emacs.obj
89
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
121
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
157
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
166
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
185
186 #
187 # Build the executable and dump it.
188 #
189 all: $(BLD) $(EMACS)
190
191 #
192 # Headers we would preprocess if we could.
193 #
194 PREPARED_HEADERS = config.h epaths.h
195 config.h: ..\nt\$(CONFIG_H)
196 $(CP) $** $@
197 epaths.h: ..\nt\paths.h
198 $(CP) $** $@
199
200 #
201 # Make sure we have the DOC file in the right place.
202 #
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
208
209 #
210 # The dumped executable
211 #
212 emacs: $(EMACS)
213 $(EMACS): $(DOC) $(TEMACS)
214 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump
215
216 #
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).
221 #
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
226
227 bootstrap: bootstrap-emacs
228
229 #
230 # Build a temacs with a sufficiently large PURESIZE to load the
231 # Lisp files from loadup.el in source form.
232 #
233 bootstrap-temacs: bootstrap-clean
234 $(MAKE) $(MFLAGS) -f makefile.nt temacs CFLAGS="$(CFLAGS) -DPURESIZE=5000000"
235
236 #
237 # Dump an Emacs executable named bootstrap-emacs containing the
238 # files from loadup.el in source form.
239 #
240 bootstrap-emacs: bootstrap-temacs
241 cd $(BLD)
242 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup bootstrap
243 cd ..\..
244 - mkdir ..\bin
245 $(CP) $(EMACS) ..\bin
246
247 #
248 # Force recompile of files that depend on PURESIZE
249 #
250 bootstrap-clean:
251 - $(DEL) $(BLD)\alloc.obj
252 - $(DEL) $(BLD)\data.obj
253 - $(DEL) $(BLD)\intervals.obj
254 - $(DEL) $(BLD)\keyboard.obj
255 - $(DEL) $(BLD)\keymap.obj
256
257 #
258 # The resource file. NT 3.10 requires the use of cvtres; even though
259 # it is not necessary on later versions, it is still ok to use it.
260 #
261 $(TRES): ..\nt\emacs.rc
262 $(RC) -i..\nt -Fo$(BLD)\emacs.res $**
263 !if !$(MSVCNT11)
264 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
265 !endif
266
267 #
268 # Build the library. Split up the build into two phases...otherwise we
269 # run out of command line space.
270 #
271 $(TLIB0): $(OBJ0)
272 @- $(AR) -out:$@ $**
273 $(TLIB1): $(OBJ1)
274 @- $(AR) -out:$@ $**
275 $(TLIB2): $(OBJ2)
276 @- $(AR) -out:$@ $**
277 !IFDEF NTGUI
278 $(TLIBW32): $(WIN32OBJ)
279 @- $(AR) -out:$@ $**
280 !ENDIF
281
282 #
283 # Place lastfile.obj in its own library so that it can be loaded after
284 # the source libraries but before any system libraries. Doing so defines
285 # the end of Emacs' data section portably across compilers and systems.
286 #
287 $(TLASTLIB): $(BLD)\lastfile.obj
288 @- $(AR) -out:$@ $**
289
290 #
291 # Assuming INSTALL_DIR is defined, build and install emacs in it.
292 #
293 install: all
294 - mkdir $(INSTALL_DIR)\bin
295 $(CP) $(EMACS) $(INSTALL_DIR)\bin
296
297 #
298 # Maintenance
299 #
300 clean:; - $(DEL) *~ s\*~
301 - $(DEL) *.pdb config.h epaths.h
302 - $(DEL) *.orig *.rej *.crlf
303 - $(DEL) s\*.orig s\*.rej s\*.crlf
304 - $(DEL_TREE) deleted
305 - $(DEL_TREE) obj
306 - $(DEL_TREE) obj-spd
307
308 #
309 # These files are the ones that compile conditionally on CANNOT_DUMP...
310 # this target is mostly used for debugging.
311 #
312 cleandump:; cd $(BLD)
313 - $(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
314 cd ..\..
315
316
317 ### DEPENDENCIES ###
318
319 EMACS_ROOT = ..
320 SRC = .
321
322 $(BLD)\abbrev.obj : \
323 $(SRC)\abbrev.c \
324 $(EMACS_ROOT)\src\s\ms-w32.h \
325 $(EMACS_ROOT)\src\m\intel386.h \
326 $(EMACS_ROOT)\src\config.h \
327 $(SRC)\commands.h \
328 $(SRC)\buffer.h \
329 $(SRC)\window.h
330
331 $(BLD)\alloc.obj : \
332 $(SRC)\alloc.c \
333 $(EMACS_ROOT)\src\s\ms-w32.h \
334 $(EMACS_ROOT)\src\m\intel386.h \
335 $(EMACS_ROOT)\src\config.h \
336 $(SRC)\dispextern.h \
337 $(SRC)\intervals.h \
338 $(SRC)\composite.h \
339 $(SRC)\puresize.h \
340 $(SRC)\buffer.h \
341 $(SRC)\window.h \
342 $(SRC)\frame.h \
343 $(SRC)\blockinput.h \
344 $(SRC)\syssignal.h
345
346 $(BLD)\alloca.obj : \
347 $(SRC)\alloca.c \
348 $(EMACS_ROOT)\src\s\ms-w32.h \
349 $(EMACS_ROOT)\src\m\intel386.h \
350 $(EMACS_ROOT)\src\config.h \
351 $(SRC)\s\ms-w32.h \
352 $(SRC)\m\intel386.h \
353 $(SRC)\config.h \
354 $(SRC)\blockinput.h
355
356 $(BLD)\atimer.obj : \
357 $(SRC)\atimer.c \
358 $(EMACS_ROOT)\src\s\ms-w32.h \
359 $(EMACS_ROOT)\src\m\intel386.h \
360 $(EMACS_ROOT)\src\config.h \
361 $(SRC)\s\ms-w32.h \
362 $(SRC)\m\intel386.h \
363 $(SRC)\config.h \
364 $(SRC)\atimer.h \
365 $(SRC)\syssignal.h \
366 $(SRC)\systime.h \
367 $(SRC)\blockinput.h
368
369 $(BLD)\buffer.obj : \
370 $(SRC)\buffer.c \
371 $(EMACS_ROOT)\nt\inc\sys\param.h \
372 $(EMACS_ROOT)\src\s\ms-w32.h \
373 $(EMACS_ROOT)\src\m\intel386.h \
374 $(EMACS_ROOT)\src\config.h \
375 $(SRC)\dispextern.h \
376 $(SRC)\intervals.h \
377 $(SRC)\composite.h \
378 $(SRC)\frame.h \
379 $(SRC)\window.h \
380 $(SRC)\commands.h \
381 $(SRC)\buffer.h \
382 $(SRC)\indent.h \
383 $(SRC)\blockinput.h \
384 $(SRC)\region-cache.h
385
386 $(BLD)\bytecode.obj : \
387 $(SRC)\bytecode.c \
388 $(EMACS_ROOT)\src\s\ms-w32.h \
389 $(EMACS_ROOT)\src\m\intel386.h \
390 $(EMACS_ROOT)\src\config.h \
391 $(SRC)\buffer.h \
392 $(SRC)\syntax.h
393
394 $(BLD)\callint.obj : \
395 $(SRC)\callint.c \
396 $(EMACS_ROOT)\src\s\ms-w32.h \
397 $(EMACS_ROOT)\src\m\intel386.h \
398 $(EMACS_ROOT)\src\config.h \
399 $(SRC)\buffer.h \
400 $(SRC)\commands.h \
401 $(SRC)\keyboard.h \
402 $(SRC)\window.h \
403 $(SRC)\mocklisp.h
404
405 $(BLD)\callproc.obj : \
406 $(SRC)\callproc.c \
407 $(EMACS_ROOT)\src\s\ms-w32.h \
408 $(EMACS_ROOT)\src\m\intel386.h \
409 $(EMACS_ROOT)\src\config.h \
410 $(SRC)\msdos.h \
411 $(EMACS_ROOT)\nt\inc\sys\param.h \
412 $(SRC)\commands.h \
413 $(SRC)\buffer.h \
414 $(SRC)\process.h \
415 $(SRC)\syssignal.h \
416 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
417 $(EMACS_ROOT)\nt\inc\sys\file.h \
418 $(SRC)\systty.h
419
420 $(BLD)\casefiddle.obj : \
421 $(SRC)\casefiddle.c \
422 $(EMACS_ROOT)\src\s\ms-w32.h \
423 $(EMACS_ROOT)\src\m\intel386.h \
424 $(EMACS_ROOT)\src\config.h \
425 $(SRC)\buffer.h \
426 $(SRC)\commands.h \
427 $(SRC)\syntax.h
428 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
429
430 $(BLD)\casetab.obj : \
431 $(SRC)\casetab.c \
432 $(EMACS_ROOT)\src\s\ms-w32.h \
433 $(EMACS_ROOT)\src\m\intel386.h \
434 $(EMACS_ROOT)\src\config.h \
435 $(SRC)\buffer.h
436
437 $(BLD)\cm.obj : \
438 $(SRC)\cm.c \
439 $(EMACS_ROOT)\src\s\ms-w32.h \
440 $(EMACS_ROOT)\src\m\intel386.h \
441 $(EMACS_ROOT)\src\config.h \
442 $(SRC)\cm.h \
443 $(SRC)\termhooks.h
444
445 $(BLD)\cmds.obj : \
446 $(SRC)\cmds.c \
447 $(EMACS_ROOT)\src\s\ms-w32.h \
448 $(EMACS_ROOT)\src\m\intel386.h \
449 $(EMACS_ROOT)\src\config.h \
450 $(SRC)\commands.h \
451 $(SRC)\buffer.h \
452 $(SRC)\syntax.h
453
454 $(BLD)\composite.obj : \
455 $(SRC)\composite.c \
456 $(SRC)\buffer.h \
457 $(SRC)\charset.h \
458 $(SRC)\intervals.h \
459 $(SRC)\composite.h \
460 $(EMACS_ROOT)\src\s\ms-w32.h \
461 $(EMACS_ROOT)\src\m\intel386.h \
462 $(EMACS_ROOT)\src\config.h
463
464 $(BLD)\data.obj : \
465 $(SRC)\data.c \
466 $(EMACS_ROOT)\src\s\ms-w32.h \
467 $(EMACS_ROOT)\src\m\intel386.h \
468 $(EMACS_ROOT)\src\config.h \
469 $(SRC)\puresize.h \
470 $(SRC)\buffer.h \
471 $(SRC)\syssignal.h
472
473 $(BLD)\dired.obj : \
474 $(SRC)\dired.c \
475 $(EMACS_ROOT)\src\s\ms-w32.h \
476 $(EMACS_ROOT)\src\m\intel386.h \
477 $(EMACS_ROOT)\src\config.h \
478 $(SRC)\vmsdir.h \
479 $(SRC)\ndir.h \
480 $(SRC)\buffer.h \
481 $(SRC)\commands.h \
482 $(SRC)\regex.h
483
484 $(BLD)\dispnew.obj : \
485 $(SRC)\dispnew.c \
486 $(EMACS_ROOT)\src\s\ms-w32.h \
487 $(EMACS_ROOT)\src\m\intel386.h \
488 $(EMACS_ROOT)\src\config.h \
489 $(SRC)\termchar.h \
490 $(SRC)\termopts.h \
491 $(SRC)\termhooks.h \
492 $(SRC)\cm.h \
493 $(SRC)\buffer.h \
494 $(SRC)\frame.h \
495 $(SRC)\window.h \
496 $(SRC)\commands.h \
497 $(SRC)\disptab.h \
498 $(SRC)\indent.h \
499 $(SRC)\dispextern.h \
500 $(SRC)\intervals.h \
501 $(SRC)\composite.h \
502 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
503 $(EMACS_ROOT)\nt\inc\sys\file.h \
504 $(SRC)\systty.h \
505 $(SRC)\w32term.h \
506 $(SRC)\xterm.h \
507 $(SRC)\vmstime.h \
508 $(SRC)\systime.h
509
510 $(BLD)\doc.obj : \
511 $(SRC)\doc.c \
512 $(EMACS_ROOT)\src\s\ms-w32.h \
513 $(EMACS_ROOT)\src\m\intel386.h \
514 $(EMACS_ROOT)\src\config.h \
515 $(EMACS_ROOT)\nt\inc\sys\file.h \
516 $(SRC)\buffer.h \
517 $(SRC)\keyboard.h
518
519 $(BLD)\doprnt.obj : \
520 $(SRC)\doprnt.c \
521 $(EMACS_ROOT)\src\s\ms-w32.h \
522 $(EMACS_ROOT)\src\m\intel386.h \
523 $(EMACS_ROOT)\src\config.h
524
525 $(BLD)\dosfns.obj : \
526 $(SRC)\dosfns.c \
527 $(EMACS_ROOT)\src\s\ms-w32.h \
528 $(EMACS_ROOT)\src\m\intel386.h \
529 $(EMACS_ROOT)\src\config.h \
530 $(SRC)\buffer.h \
531 $(SRC)\termchar.h \
532 $(SRC)\termhooks.h \
533 $(SRC)\frame.h \
534 $(SRC)\dosfns.h \
535 $(SRC)\msdos.h
536
537 $(BLD)\editfns.obj : \
538 $(SRC)\editfns.c \
539 $(EMACS_ROOT)\src\s\ms-w32.h \
540 $(EMACS_ROOT)\src\m\intel386.h \
541 $(EMACS_ROOT)\src\config.h \
542 $(SRC)\uaf.h \
543 $(SRC)\vms-pwd.h \
544 $(EMACS_ROOT)\nt\inc\pwd.h \
545 $(SRC)\dispextern.h \
546 $(SRC)\intervals.h \
547 $(SRC)\composite.h \
548 $(SRC)\buffer.h \
549 $(SRC)\window.h \
550 $(SRC)\vmstime.h \
551 $(SRC)\systime.h
552
553 $(BLD)\emacs.obj : \
554 $(SRC)\emacs.c \
555 $(EMACS_ROOT)\src\s\ms-w32.h \
556 $(EMACS_ROOT)\src\m\intel386.h \
557 $(EMACS_ROOT)\src\config.h \
558 $(SRC)\commands.h \
559 $(SRC)\dispextern.h \
560 $(SRC)\intervals.h \
561 $(SRC)\composite.h \
562 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
563 $(EMACS_ROOT)\nt\inc\sys\file.h \
564 $(SRC)\systty.h \
565 $(SRC)\syssignal.h \
566 $(SRC)\process.h
567
568 $(BLD)\eval.obj : \
569 $(SRC)\eval.c \
570 $(EMACS_ROOT)\src\s\ms-w32.h \
571 $(EMACS_ROOT)\src\m\intel386.h \
572 $(EMACS_ROOT)\src\config.h \
573 $(SRC)\blockinput.h \
574 $(SRC)\commands.h \
575 $(SRC)\keyboard.h
576
577 $(BLD)\fileio.obj : \
578 $(SRC)\fileio.c \
579 $(EMACS_ROOT)\src\s\ms-w32.h \
580 $(EMACS_ROOT)\src\m\intel386.h \
581 $(EMACS_ROOT)\src\config.h \
582 $(SRC)\uaf.h \
583 $(SRC)\vms-pwd.h \
584 $(EMACS_ROOT)\nt\inc\pwd.h \
585 $(SRC)\msdos.h \
586 $(EMACS_ROOT)\nt\inc\sys\param.h \
587 $(SRC)\vmsdir.h \
588 $(SRC)\dispextern.h \
589 $(SRC)\intervals.h \
590 $(SRC)\composite.h \
591 $(SRC)\buffer.h \
592 $(SRC)\window.h \
593 $(EMACS_ROOT)\nt\inc\sys\file.h \
594 $(SRC)\vmstime.h \
595 $(SRC)\systime.h
596
597 $(BLD)\filelock.obj : \
598 $(SRC)\filelock.c \
599 $(EMACS_ROOT)\src\s\ms-w32.h \
600 $(EMACS_ROOT)\src\m\intel386.h \
601 $(EMACS_ROOT)\src\config.h \
602 $(SRC)\uaf.h \
603 $(SRC)\vms-pwd.h \
604 $(EMACS_ROOT)\nt\inc\pwd.h \
605 $(EMACS_ROOT)\nt\inc\sys\file.h \
606 $(EMACS_ROOT)\src\epaths.h \
607 $(SRC)\buffer.h \
608 $(SRC)\vmsdir.h \
609 $(SRC)\ndir.h
610
611 $(BLD)\filemode.obj : \
612 $(SRC)\filemode.c \
613 $(EMACS_ROOT)\src\s\ms-w32.h \
614 $(EMACS_ROOT)\src\m\intel386.h \
615 $(EMACS_ROOT)\src\config.h \
616 $(SRC)\s\ms-w32.h \
617 $(SRC)\m\intel386.h \
618 $(SRC)\config.h
619
620 $(BLD)\firstfile.obj : \
621 $(SRC)\firstfile.c \
622 $(EMACS_ROOT)\src\s\ms-w32.h \
623 $(EMACS_ROOT)\src\m\intel386.h \
624 $(EMACS_ROOT)\src\config.h
625
626 $(BLD)\floatfns.obj : \
627 $(SRC)\floatfns.c \
628 $(EMACS_ROOT)\src\s\ms-w32.h \
629 $(EMACS_ROOT)\src\m\intel386.h \
630 $(EMACS_ROOT)\src\config.h \
631 $(SRC)\syssignal.h
632
633 $(BLD)\fns.obj : \
634 $(SRC)\fns.c \
635 $(EMACS_ROOT)\src\s\ms-w32.h \
636 $(EMACS_ROOT)\src\m\intel386.h \
637 $(EMACS_ROOT)\src\config.h \
638 $(SRC)\commands.h \
639 $(SRC)\buffer.h \
640 $(SRC)\keyboard.h \
641 $(SRC)\dispextern.h \
642 $(SRC)\intervals.h \
643 $(SRC)\composite.h
644
645 $(BLD)\frame.obj : \
646 $(SRC)\frame.c \
647 $(EMACS_ROOT)\src\s\ms-w32.h \
648 $(EMACS_ROOT)\src\m\intel386.h \
649 $(EMACS_ROOT)\src\config.h \
650 $(SRC)\frame.h \
651 $(SRC)\termhooks.h \
652 $(SRC)\window.h \
653 $(SRC)\buffer.h \
654 $(SRC)\commands.h \
655 $(SRC)\keyboard.h
656
657 $(BLD)\getloadavg.obj : \
658 $(SRC)\getloadavg.c \
659 $(EMACS_ROOT)\nt\inc\sys\param.h \
660 $(EMACS_ROOT)\src\s\ms-w32.h \
661 $(EMACS_ROOT)\src\m\intel386.h \
662 $(EMACS_ROOT)\src\config.h \
663 $(SRC)\s\ms-w32.h \
664 $(SRC)\m\intel386.h \
665 $(SRC)\config.h \
666 $(EMACS_ROOT)\nt\inc\sys\file.h
667
668 $(BLD)\gmalloc.obj : \
669 $(SRC)\gmalloc.c \
670 $(EMACS_ROOT)\src\s\ms-w32.h \
671 $(EMACS_ROOT)\src\m\intel386.h \
672 $(EMACS_ROOT)\src\config.h \
673 $(EMACS_ROOT)\nt\inc\sys\param.h \
674 $(SRC)\getpagesize.h
675 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
676
677 $(BLD)\hftctl.obj : \
678 $(SRC)\hftctl.c \
679 $(EMACS_ROOT)\src\s\ms-w32.h \
680 $(EMACS_ROOT)\src\m\intel386.h \
681 $(EMACS_ROOT)\src\config.h \
682 $(EMACS_ROOT)\nt\inc\sys\ioctl.h
683
684 $(BLD)\indent.obj : \
685 $(SRC)\indent.c \
686 $(EMACS_ROOT)\src\s\ms-w32.h \
687 $(EMACS_ROOT)\src\m\intel386.h \
688 $(EMACS_ROOT)\src\config.h \
689 $(SRC)\buffer.h \
690 $(SRC)\indent.h \
691 $(SRC)\frame.h \
692 $(SRC)\window.h \
693 $(SRC)\termchar.h \
694 $(SRC)\termopts.h \
695 $(SRC)\disptab.h \
696 $(SRC)\dispextern.h \
697 $(SRC)\intervals.h \
698 $(SRC)\region-cache.h \
699 $(SRC)\composite.h
700
701 $(BLD)\insdel.obj : \
702 $(SRC)\insdel.c \
703 $(EMACS_ROOT)\src\s\ms-w32.h \
704 $(EMACS_ROOT)\src\m\intel386.h \
705 $(EMACS_ROOT)\src\config.h \
706 $(SRC)\dispextern.h \
707 $(SRC)\intervals.h \
708 $(SRC)\composite.h \
709 $(SRC)\buffer.h \
710 $(SRC)\window.h \
711 $(SRC)\blockinput.h
712
713 $(BLD)\intervals.obj : \
714 $(SRC)\intervals.c \
715 $(EMACS_ROOT)\src\s\ms-w32.h \
716 $(EMACS_ROOT)\src\m\intel386.h \
717 $(EMACS_ROOT)\src\config.h \
718 $(SRC)\dispextern.h \
719 $(SRC)\intervals.h \
720 $(SRC)\composite.h \
721 $(SRC)\keyboard.h \
722 $(SRC)\buffer.h \
723 $(SRC)\puresize.h
724
725 $(BLD)\keyboard.obj : \
726 $(SRC)\keyboard.c \
727 $(EMACS_ROOT)\src\s\ms-w32.h \
728 $(EMACS_ROOT)\src\m\intel386.h \
729 $(EMACS_ROOT)\src\config.h \
730 $(SRC)\termchar.h \
731 $(SRC)\termopts.h \
732 $(SRC)\termhooks.h \
733 $(SRC)\macros.h \
734 $(SRC)\frame.h \
735 $(SRC)\window.h \
736 $(SRC)\commands.h \
737 $(SRC)\buffer.h \
738 $(SRC)\disptab.h \
739 $(SRC)\keyboard.h \
740 $(SRC)\dispextern.h \
741 $(SRC)\intervals.h \
742 $(SRC)\composite.h \
743 $(SRC)\blockinput.h \
744 $(SRC)\msdos.h \
745 $(SRC)\syssignal.h \
746 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
747 $(EMACS_ROOT)\nt\inc\sys\file.h \
748 $(SRC)\systty.h \
749 $(SRC)\w32term.h \
750 $(SRC)\xterm.h \
751 $(SRC)\vmstime.h \
752 $(SRC)\systime.h \
753 $(SRC)\atimer.h
754
755 $(BLD)\keymap.obj : \
756 $(SRC)\keymap.c \
757 $(EMACS_ROOT)\src\s\ms-w32.h \
758 $(EMACS_ROOT)\src\m\intel386.h \
759 $(EMACS_ROOT)\src\config.h \
760 $(SRC)\commands.h \
761 $(SRC)\buffer.h \
762 $(SRC)\keyboard.h \
763 $(SRC)\termhooks.h \
764 $(SRC)\blockinput.h
765
766 $(BLD)\lastfile.obj : \
767 $(SRC)\lastfile.c \
768 $(EMACS_ROOT)\src\s\ms-w32.h \
769 $(EMACS_ROOT)\src\m\intel386.h \
770 $(EMACS_ROOT)\src\config.h
771
772 $(BLD)\lread.obj : \
773 $(SRC)\lread.c \
774 $(EMACS_ROOT)\src\s\ms-w32.h \
775 $(EMACS_ROOT)\src\m\intel386.h \
776 $(EMACS_ROOT)\src\config.h \
777 $(EMACS_ROOT)\nt\inc\sys\file.h \
778 $(SRC)\buffer.h \
779 $(EMACS_ROOT)\src\epaths.h \
780 $(SRC)\commands.h \
781 $(SRC)\keyboard.h \
782 $(SRC)\termhooks.h \
783 $(SRC)\msdos.h
784
785 $(BLD)\macros.obj : \
786 $(SRC)\macros.c \
787 $(EMACS_ROOT)\src\s\ms-w32.h \
788 $(EMACS_ROOT)\src\m\intel386.h \
789 $(EMACS_ROOT)\src\config.h \
790 $(SRC)\macros.h \
791 $(SRC)\commands.h \
792 $(SRC)\buffer.h \
793 $(SRC)\window.h
794
795 $(BLD)\marker.obj : \
796 $(SRC)\marker.c \
797 $(EMACS_ROOT)\src\s\ms-w32.h \
798 $(EMACS_ROOT)\src\m\intel386.h \
799 $(EMACS_ROOT)\src\config.h \
800 $(SRC)\buffer.h
801
802 $(BLD)\minibuf.obj : \
803 $(SRC)\minibuf.c \
804 $(EMACS_ROOT)\src\s\ms-w32.h \
805 $(EMACS_ROOT)\src\m\intel386.h \
806 $(EMACS_ROOT)\src\config.h \
807 $(SRC)\commands.h \
808 $(SRC)\buffer.h \
809 $(SRC)\dispextern.h \
810 $(SRC)\frame.h \
811 $(SRC)\window.h \
812 $(SRC)\syntax.h
813
814 $(BLD)\mocklisp.obj : \
815 $(SRC)\mocklisp.c \
816 $(EMACS_ROOT)\src\s\ms-w32.h \
817 $(EMACS_ROOT)\src\m\intel386.h \
818 $(EMACS_ROOT)\src\config.h \
819 $(SRC)\buffer.h
820
821 $(BLD)\w32.obj : \
822 $(SRC)\w32.c \
823 $(SRC)\w32.h \
824 $(SRC)\s\ms-w32.h \
825 $(SRC)\m\intel386.h \
826 $(SRC)\config.h \
827 $(EMACS_ROOT)\nt\inc\pwd.h \
828 $(SRC)\w32heap.h
829
830 $(BLD)\w32heap.obj : \
831 $(SRC)\w32heap.c \
832 $(SRC)\w32heap.h \
833 $(SRC)\s\ms-w32.h \
834 $(SRC)\m\intel386.h \
835 $(SRC)\config.h
836
837 $(BLD)\w32inevt.obj : \
838 $(SRC)\w32inevt.c \
839 $(SRC)\s\ms-w32.h \
840 $(SRC)\m\intel386.h \
841 $(SRC)\config.h \
842 $(SRC)\frame.h \
843 $(SRC)\blockinput.h \
844 $(SRC)\termhooks.h \
845 $(SRC)\w32heap.h \
846 $(SRC)\w32term.h
847
848 $(BLD)\w32proc.obj : \
849 $(SRC)\w32proc.c \
850 $(SRC)\s\ms-w32.h \
851 $(SRC)\m\intel386.h \
852 $(SRC)\config.h \
853 $(SRC)\w32.h \
854 $(SRC)\w32heap.h \
855 $(SRC)\vmstime.h \
856 $(SRC)\systime.h
857
858 $(BLD)\w32console.obj : \
859 $(SRC)\w32console.c \
860 $(SRC)\s\ms-w32.h \
861 $(SRC)\m\intel386.h \
862 $(SRC)\config.h \
863 $(SRC)\frame.h \
864 $(SRC)\disptab.h \
865 $(SRC)\termhooks.h \
866 $(SRC)\w32inevt.h
867
868 $(BLD)\prefix-args.obj : \
869 $(SRC)\prefix-args.c
870
871 $(BLD)\print.obj : \
872 $(SRC)\print.c \
873 $(EMACS_ROOT)\src\s\ms-w32.h \
874 $(EMACS_ROOT)\src\m\intel386.h \
875 $(EMACS_ROOT)\src\config.h \
876 $(SRC)\buffer.h \
877 $(SRC)\frame.h \
878 $(SRC)\window.h \
879 $(SRC)\process.h \
880 $(SRC)\termchar.h \
881 $(SRC)\dispextern.h \
882 $(SRC)\intervals.h \
883 $(SRC)\composite.h
884
885 $(BLD)\process.obj : \
886 $(SRC)\process.c \
887 $(EMACS_ROOT)\src\s\ms-w32.h \
888 $(EMACS_ROOT)\src\m\intel386.h \
889 $(EMACS_ROOT)\src\config.h \
890 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
891 $(EMACS_ROOT)\nt\inc\sys\file.h \
892 $(SRC)\systty.h \
893 $(SRC)\window.h \
894 $(SRC)\buffer.h \
895 $(SRC)\process.h \
896 $(SRC)\termhooks.h \
897 $(SRC)\commands.h \
898 $(SRC)\frame.h \
899 $(SRC)\syssignal.h \
900 $(SRC)\vmsproc.h \
901 $(SRC)\syswait.h \
902 $(SRC)\vmstime.h \
903 $(SRC)\systime.h \
904 $(SRC)\termopts.h \
905 $(SRC)\composite.h \
906 $(SRC)\atimer.h
907
908 $(BLD)\ralloc.obj : \
909 $(SRC)\ralloc.c \
910 $(EMACS_ROOT)\src\s\ms-w32.h \
911 $(EMACS_ROOT)\src\m\intel386.h \
912 $(EMACS_ROOT)\src\config.h \
913 $(SRC)\s\ms-w32.h \
914 $(SRC)\m\intel386.h \
915 $(SRC)\config.h \
916 $(EMACS_ROOT)\nt\inc\sys\param.h \
917 $(SRC)\getpagesize.h
918
919 $(BLD)\regex.obj : \
920 $(SRC)\regex.c \
921 $(EMACS_ROOT)\src\s\ms-w32.h \
922 $(EMACS_ROOT)\src\m\intel386.h \
923 $(EMACS_ROOT)\src\config.h \
924 $(SRC)\s\ms-w32.h \
925 $(SRC)\m\intel386.h \
926 $(SRC)\config.h \
927 $(SRC)\buffer.h \
928 $(SRC)\syntax.h \
929 $(SRC)\regex.h
930
931 $(BLD)\region-cache.obj : \
932 $(SRC)\region-cache.c \
933 $(EMACS_ROOT)\src\s\ms-w32.h \
934 $(EMACS_ROOT)\src\m\intel386.h \
935 $(EMACS_ROOT)\src\config.h \
936 $(SRC)\buffer.h \
937 $(SRC)\region-cache.h
938
939 $(BLD)\scroll.obj : \
940 $(SRC)\scroll.c \
941 $(EMACS_ROOT)\src\s\ms-w32.h \
942 $(EMACS_ROOT)\src\m\intel386.h \
943 $(EMACS_ROOT)\src\config.h \
944 $(SRC)\termchar.h \
945 $(SRC)\dispextern.h \
946 $(SRC)\frame.h
947
948 $(BLD)\search.obj : \
949 $(SRC)\search.c \
950 $(EMACS_ROOT)\src\s\ms-w32.h \
951 $(EMACS_ROOT)\src\m\intel386.h \
952 $(EMACS_ROOT)\src\config.h \
953 $(SRC)\syntax.h \
954 $(SRC)\buffer.h \
955 $(SRC)\commands.h \
956 $(SRC)\blockinput.h \
957 $(SRC)\regex.h \
958 $(SRC)\region-cache.h \
959 $(SRC)\composite.h
960
961 $(BLD)\strftime.obj : \
962 $(SRC)\strftime.c \
963 $(EMACS_ROOT)\src\s\ms-w32.h \
964 $(EMACS_ROOT)\src\m\intel386.h \
965 $(EMACS_ROOT)\src\config.h
966
967 $(BLD)\sunfns.obj : \
968 $(SRC)\sunfns.c \
969 $(EMACS_ROOT)\src\s\ms-w32.h \
970 $(EMACS_ROOT)\src\m\intel386.h \
971 $(EMACS_ROOT)\src\config.h \
972 $(SRC)\window.h \
973 $(SRC)\buffer.h \
974 $(SRC)\termhooks.h
975
976 $(BLD)\syntax.obj : \
977 $(SRC)\syntax.c \
978 $(EMACS_ROOT)\src\s\ms-w32.h \
979 $(EMACS_ROOT)\src\m\intel386.h \
980 $(EMACS_ROOT)\src\config.h \
981 $(SRC)\commands.h \
982 $(SRC)\buffer.h \
983 $(SRC)\syntax.h \
984 $(SRC)\composite.h
985
986 $(BLD)\sysdep.obj : \
987 $(SRC)\sysdep.c \
988 $(EMACS_ROOT)\src\s\ms-w32.h \
989 $(EMACS_ROOT)\src\m\intel386.h \
990 $(EMACS_ROOT)\src\config.h \
991 $(SRC)\blockinput.h \
992 $(SRC)\dosfns.h \
993 $(SRC)\msdos.h \
994 $(EMACS_ROOT)\nt\inc\sys\param.h \
995 $(EMACS_ROOT)\nt\inc\sys\file.h \
996 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
997 $(EMACS_ROOT)\nt\inc\sys\file.h \
998 $(SRC)\systty.h \
999 $(SRC)\vmsproc.h \
1000 $(SRC)\syswait.h \
1001 $(SRC)\frame.h \
1002 $(SRC)\window.h \
1003 $(SRC)\termhooks.h \
1004 $(SRC)\termchar.h \
1005 $(SRC)\termopts.h \
1006 $(SRC)\dispextern.h \
1007 $(SRC)\process.h \
1008 $(SRC)\vmsdir.h \
1009 $(SRC)\ndir.h \
1010 $(SRC)\syssignal.h \
1011 $(SRC)\vmstime.h \
1012 $(SRC)\systime.h \
1013 $(SRC)\uaf.h \
1014 $(SRC)\vms-pwd.h \
1015 $(EMACS_ROOT)\src\acldef.h \
1016 $(EMACS_ROOT)\src\chpdef.h
1017
1018 $(BLD)\term.obj : \
1019 $(SRC)\term.c \
1020 $(EMACS_ROOT)\src\s\ms-w32.h \
1021 $(EMACS_ROOT)\src\m\intel386.h \
1022 $(EMACS_ROOT)\src\config.h \
1023 $(SRC)\termchar.h \
1024 $(SRC)\termopts.h \
1025 $(SRC)\cm.h \
1026 $(SRC)\frame.h \
1027 $(SRC)\disptab.h \
1028 $(SRC)\termhooks.h \
1029 $(SRC)\keyboard.h
1030
1031 $(BLD)\termcap.obj : \
1032 $(SRC)\termcap.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\file.h
1037
1038 $(BLD)\terminfo.obj : \
1039 $(SRC)\terminfo.c
1040
1041 $(BLD)\textprop.obj : \
1042 $(SRC)\textprop.c \
1043 $(EMACS_ROOT)\src\s\ms-w32.h \
1044 $(EMACS_ROOT)\src\m\intel386.h \
1045 $(EMACS_ROOT)\src\config.h \
1046 $(SRC)\dispextern.h \
1047 $(SRC)\intervals.h \
1048 $(SRC)\composite.h \
1049 $(SRC)\buffer.h \
1050 $(SRC)\window.h
1051
1052 $(BLD)\tparam.obj : \
1053 $(SRC)\tparam.c \
1054 $(EMACS_ROOT)\src\s\ms-w32.h \
1055 $(EMACS_ROOT)\src\m\intel386.h \
1056 $(EMACS_ROOT)\src\config.h
1057
1058 $(BLD)\undo.obj : \
1059 $(SRC)\undo.c \
1060 $(EMACS_ROOT)\src\s\ms-w32.h \
1061 $(EMACS_ROOT)\src\m\intel386.h \
1062 $(EMACS_ROOT)\src\config.h \
1063 $(SRC)\buffer.h \
1064 $(SRC)\commands.h
1065
1066 $(BLD)\unexw32.obj : \
1067 $(SRC)\unexw32.c \
1068 $(EMACS_ROOT)\src\s\ms-w32.h \
1069 $(EMACS_ROOT)\src\m\intel386.h \
1070 $(EMACS_ROOT)\src\config.h \
1071 $(SRC)\w32heap.h
1072
1073 $(BLD)\vm-limit.obj : \
1074 $(SRC)\vm-limit.c \
1075 $(EMACS_ROOT)\src\s\ms-w32.h \
1076 $(EMACS_ROOT)\src\m\intel386.h \
1077 $(EMACS_ROOT)\src\config.h \
1078 $(SRC)\mem-limits.h
1079
1080 $(BLD)\widget.obj : \
1081 $(SRC)\widget.c \
1082 $(EMACS_ROOT)\src\s\ms-w32.h \
1083 $(EMACS_ROOT)\src\m\intel386.h \
1084 $(EMACS_ROOT)\src\config.h \
1085 $(SRC)\xterm.h \
1086 $(SRC)\frame.h \
1087 $(SRC)\dispextern.h \
1088 $(SRC)\widget.h \
1089 $(SRC)\widgetprv.h
1090
1091 $(BLD)\window.obj : \
1092 $(SRC)\window.c \
1093 $(EMACS_ROOT)\src\s\ms-w32.h \
1094 $(EMACS_ROOT)\src\m\intel386.h \
1095 $(EMACS_ROOT)\src\config.h \
1096 $(SRC)\buffer.h \
1097 $(SRC)\frame.h \
1098 $(SRC)\window.h \
1099 $(SRC)\commands.h \
1100 $(SRC)\indent.h \
1101 $(SRC)\termchar.h \
1102 $(SRC)\disptab.h \
1103 $(SRC)\keyboard.h \
1104 $(SRC)\composite.h
1105
1106 $(BLD)\xdisp.obj : \
1107 $(SRC)\xdisp.c \
1108 $(EMACS_ROOT)\src\s\ms-w32.h \
1109 $(EMACS_ROOT)\src\m\intel386.h \
1110 $(EMACS_ROOT)\src\config.h \
1111 $(SRC)\frame.h \
1112 $(SRC)\window.h \
1113 $(SRC)\termchar.h \
1114 $(SRC)\buffer.h \
1115 $(SRC)\indent.h \
1116 $(SRC)\commands.h \
1117 $(SRC)\macros.h \
1118 $(SRC)\disptab.h \
1119 $(SRC)\termhooks.h \
1120 $(SRC)\dispextern.h \
1121 $(SRC)\intervals.h \
1122 $(SRC)\composite.h
1123
1124 $(BLD)\xfaces.obj: \
1125 $(EMACS_ROOT)\src\s\ms-w32.h \
1126 $(EMACS_ROOT)\src\m\intel386.h \
1127 $(EMACS_ROOT)\src\config.h \
1128 $(SRC)\xfaces.c \
1129 $(SRC)\charset.h \
1130 $(SRC)\fontset.h \
1131 $(SRC)\w32term.h \
1132 $(SRC)\w32gui.h \
1133 $(SRC)\buffer.h \
1134 $(SRC)\dispextern.h \
1135 $(SRC)\frame.h \
1136 $(SRC)\blockinput.h \
1137 $(SRC)\window.h \
1138 $(SRC)\intervals.h \
1139 $(SRC)\composite.h
1140
1141 $(BLD)\w32fns.obj: \
1142 $(EMACS_ROOT)\src\s\ms-w32.h \
1143 $(EMACS_ROOT)\src\m\intel386.h \
1144 $(EMACS_ROOT)\src\config.h \
1145 $(SRC)\w32fns.c \
1146 $(SRC)\x-list-font.c \
1147 $(SRC)\w32term.h \
1148 $(SRC)\w32gui.h \
1149 $(SRC)\frame.h \
1150 $(SRC)\window.h \
1151 $(SRC)\buffer.h \
1152 $(SRC)\charset.h \
1153 $(SRC)\coding.h \
1154 $(SRC)\dispextern.h \
1155 $(SRC)\keyboard.h \
1156 $(SRC)\blockinput.h \
1157 $(SRC)\epaths.h \
1158 $(SRC)\w32heap.h \
1159 $(SRC)\termhooks.h
1160
1161 $(BLD)\w32menu.obj: \
1162 $(EMACS_ROOT)\src\s\ms-w32.h \
1163 $(EMACS_ROOT)\src\m\intel386.h \
1164 $(EMACS_ROOT)\src\config.h \
1165 $(SRC)\w32menu.c \
1166 $(SRC)\termhooks.h \
1167 $(SRC)\frame.h \
1168 $(SRC)\window.h \
1169 $(SRC)\keyboard.h \
1170 $(SRC)\blockinput.h \
1171 $(SRC)\buffer.h \
1172 $(SRC)\charset.h \
1173 $(SRC)\coding.h
1174
1175 $(BLD)\w32term.obj: \
1176 $(EMACS_ROOT)\src\s\ms-w32.h \
1177 $(EMACS_ROOT)\src\m\intel386.h \
1178 $(EMACS_ROOT)\src\config.h \
1179 $(SRC)\w32term.c \
1180 $(SRC)\blockinput.h \
1181 $(SRC)\w32heap.h \
1182 $(SRC)\w32term.h \
1183 $(SRC)\w32gui.h \
1184 $(SRC)\systty.h \
1185 $(SRC)\systime.h \
1186 $(SRC)\frame.h \
1187 $(SRC)\dispextern.h \
1188 $(SRC)\termhooks.h \
1189 $(SRC)\termopts.h \
1190 $(SRC)\termchar.h \
1191 $(SRC)\gnu.h \
1192 $(SRC)\disptab.h \
1193 $(SRC)\buffer.h \
1194 $(SRC)\window.h \
1195 $(SRC)\keyboard.h \
1196 $(SRC)\intervals.h \
1197 $(SRC)\composite.h \
1198 $(SRC)\atimer.h
1199
1200 $(BLD)\w32select.obj: \
1201 $(EMACS_ROOT)\src\s\ms-w32.h \
1202 $(EMACS_ROOT)\src\m\intel386.h \
1203 $(EMACS_ROOT)\src\config.h \
1204 $(SRC)\w32select.c \
1205 $(SRC)\w32term.h \
1206 $(SRC)\w32gui.h \
1207 $(SRC)\dispextern.h \
1208 $(SRC)\frame.h \
1209 $(SRC)\blockinput.h
1210
1211 $(BLD)\w32reg.obj: \
1212 $(EMACS_ROOT)\src\s\ms-w32.h \
1213 $(EMACS_ROOT)\src\m\intel386.h \
1214 $(EMACS_ROOT)\src\config.h \
1215 $(SRC)\w32reg.c \
1216 $(SRC)\w32term.h \
1217 $(SRC)\w32gui.h \
1218 $(SRC)\blockinput.h
1219
1220 $(BLD)\w32xfns.obj: \
1221 $(EMACS_ROOT)\src\s\ms-w32.h \
1222 $(EMACS_ROOT)\src\m\intel386.h \
1223 $(EMACS_ROOT)\src\config.h \
1224 $(SRC)\w32xfns.c \
1225
1226 $(BLD)\w32bdf.obj: \
1227 $(EMACS_ROOT)\src/s\ms-w32.h \
1228 $(EMACS_ROOT)\src/m\intel386.h \
1229 $(EMACS_ROOT)\src/config.h \
1230 $(SRC)\w32bdf.c \
1231 $(SRC)\charset.h \
1232 $(SRC)\frame.h \
1233 $(SRC)\dispextern.h \
1234 $(SRC)\fontset.h \
1235 $(SRC)\blockinput.h \
1236 $(SRC)\w32gui.h \
1237 $(SRC)\w32term.h \
1238 $(SRC)\w32bdf.h \
1239 $(SRC)\w32.h \
1240 $(SRC)\frame.h \
1241 $(SRC)\blockinput.h