]> code.delx.au - gnu-emacs/blob - src/makefile.nt
($(BLD)\dispnew.obj):
[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 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup bootstrap
242 - mkdir ..\bin
243 $(CP) $(EMACS) ..\bin
244
245 #
246 # Force recompile of files that depend on PURESIZE
247 #
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
254
255 #
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.
258 #
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
264
265 #
266 # Build the library. Split up the build into two phases...otherwise we
267 # run out of command line space.
268 #
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
279
280 #
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.
284 #
285 $(TLASTLIB): $(BLD)\lastfile.obj
286 @- $(AR) -out:$@ $**
287
288 #
289 # Assuming INSTALL_DIR is defined, build and install emacs in it.
290 #
291 install: all
292 - mkdir $(INSTALL_DIR)\bin
293 $(CP) $(EMACS) $(INSTALL_DIR)\bin
294
295 #
296 # Maintenance
297 #
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
305
306 #
307 # These files are the ones that compile conditionally on CANNOT_DUMP...
308 # this target is mostly used for debugging.
309 #
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 ..\..
313
314
315 ### DEPENDENCIES ###
316
317 EMACS_ROOT = ..
318 SRC = .
319
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
328
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)\w32gui.h \
336 $(SRC)\intervals.h \
337 $(SRC)\composite.h \
338 $(SRC)\puresize.h \
339 $(SRC)\buffer.h \
340 $(SRC)\window.h \
341 $(SRC)\frame.h \
342 $(SRC)\blockinput.h \
343 $(SRC)\syssignal.h
344
345 $(BLD)\alloca.obj : \
346 $(SRC)\alloca.c \
347 $(EMACS_ROOT)\src\s\ms-w32.h \
348 $(EMACS_ROOT)\src\m\intel386.h \
349 $(EMACS_ROOT)\src\config.h \
350 $(SRC)\s\ms-w32.h \
351 $(SRC)\m\intel386.h \
352 $(SRC)\config.h \
353 $(SRC)\blockinput.h
354
355 $(BLD)\atimer.obj : \
356 $(SRC)\atimer.c \
357 $(EMACS_ROOT)\src\s\ms-w32.h \
358 $(EMACS_ROOT)\src\m\intel386.h \
359 $(EMACS_ROOT)\src\config.h \
360 $(SRC)\s\ms-w32.h \
361 $(SRC)\m\intel386.h \
362 $(SRC)\config.h \
363 $(SRC)\atimer.h \
364 $(SRC)\syssignal.h \
365 $(SRC)\systime.h \
366 $(SRC)\blockinput.h
367
368 $(BLD)\buffer.obj : \
369 $(SRC)\buffer.c \
370 $(EMACS_ROOT)\nt\inc\sys\param.h \
371 $(EMACS_ROOT)\src\s\ms-w32.h \
372 $(EMACS_ROOT)\src\m\intel386.h \
373 $(EMACS_ROOT)\src\config.h \
374 $(SRC)\dispextern.h \
375 $(SRC)\w32gui.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)\w32gui.h \
507 $(SRC)\xterm.h \
508 $(SRC)\vmstime.h \
509 $(SRC)\systime.h
510
511 $(BLD)\doc.obj : \
512 $(SRC)\doc.c \
513 $(EMACS_ROOT)\src\s\ms-w32.h \
514 $(EMACS_ROOT)\src\m\intel386.h \
515 $(EMACS_ROOT)\src\config.h \
516 $(EMACS_ROOT)\nt\inc\sys\file.h \
517 $(SRC)\buffer.h \
518 $(SRC)\keyboard.h
519
520 $(BLD)\doprnt.obj : \
521 $(SRC)\doprnt.c \
522 $(EMACS_ROOT)\src\s\ms-w32.h \
523 $(EMACS_ROOT)\src\m\intel386.h \
524 $(EMACS_ROOT)\src\config.h
525
526 $(BLD)\dosfns.obj : \
527 $(SRC)\dosfns.c \
528 $(EMACS_ROOT)\src\s\ms-w32.h \
529 $(EMACS_ROOT)\src\m\intel386.h \
530 $(EMACS_ROOT)\src\config.h \
531 $(SRC)\buffer.h \
532 $(SRC)\termchar.h \
533 $(SRC)\termhooks.h \
534 $(SRC)\frame.h \
535 $(SRC)\dosfns.h \
536 $(SRC)\msdos.h
537
538 $(BLD)\editfns.obj : \
539 $(SRC)\editfns.c \
540 $(EMACS_ROOT)\src\s\ms-w32.h \
541 $(EMACS_ROOT)\src\m\intel386.h \
542 $(EMACS_ROOT)\src\config.h \
543 $(SRC)\uaf.h \
544 $(SRC)\vms-pwd.h \
545 $(EMACS_ROOT)\nt\inc\pwd.h \
546 $(SRC)\dispextern.h \
547 $(SRC)\w32gui.h \
548 $(SRC)\intervals.h \
549 $(SRC)\composite.h \
550 $(SRC)\buffer.h \
551 $(SRC)\window.h \
552 $(SRC)\vmstime.h \
553 $(SRC)\systime.h
554
555 $(BLD)\emacs.obj : \
556 $(SRC)\emacs.c \
557 $(EMACS_ROOT)\src\s\ms-w32.h \
558 $(EMACS_ROOT)\src\m\intel386.h \
559 $(EMACS_ROOT)\src\config.h \
560 $(SRC)\commands.h \
561 $(SRC)\dispextern.h \
562 $(SRC)\w32gui.h \
563 $(SRC)\intervals.h \
564 $(SRC)\composite.h \
565 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
566 $(EMACS_ROOT)\nt\inc\sys\file.h \
567 $(SRC)\systty.h \
568 $(SRC)\syssignal.h \
569 $(SRC)\process.h
570
571 $(BLD)\eval.obj : \
572 $(SRC)\eval.c \
573 $(EMACS_ROOT)\src\s\ms-w32.h \
574 $(EMACS_ROOT)\src\m\intel386.h \
575 $(EMACS_ROOT)\src\config.h \
576 $(SRC)\blockinput.h \
577 $(SRC)\commands.h \
578 $(SRC)\keyboard.h
579
580 $(BLD)\fileio.obj : \
581 $(SRC)\fileio.c \
582 $(EMACS_ROOT)\src\s\ms-w32.h \
583 $(EMACS_ROOT)\src\m\intel386.h \
584 $(EMACS_ROOT)\src\config.h \
585 $(SRC)\uaf.h \
586 $(SRC)\vms-pwd.h \
587 $(EMACS_ROOT)\nt\inc\pwd.h \
588 $(SRC)\msdos.h \
589 $(EMACS_ROOT)\nt\inc\sys\param.h \
590 $(SRC)\vmsdir.h \
591 $(SRC)\dispextern.h \
592 $(SRC)\w32gui.h \
593 $(SRC)\intervals.h \
594 $(SRC)\composite.h \
595 $(SRC)\buffer.h \
596 $(SRC)\window.h \
597 $(EMACS_ROOT)\nt\inc\sys\file.h \
598 $(SRC)\vmstime.h \
599 $(SRC)\systime.h
600
601 $(BLD)\filelock.obj : \
602 $(SRC)\filelock.c \
603 $(EMACS_ROOT)\src\s\ms-w32.h \
604 $(EMACS_ROOT)\src\m\intel386.h \
605 $(EMACS_ROOT)\src\config.h \
606 $(SRC)\uaf.h \
607 $(SRC)\vms-pwd.h \
608 $(EMACS_ROOT)\nt\inc\pwd.h \
609 $(EMACS_ROOT)\nt\inc\sys\file.h \
610 $(EMACS_ROOT)\src\epaths.h \
611 $(SRC)\buffer.h \
612 $(SRC)\vmsdir.h \
613 $(SRC)\ndir.h
614
615 $(BLD)\filemode.obj : \
616 $(SRC)\filemode.c \
617 $(EMACS_ROOT)\src\s\ms-w32.h \
618 $(EMACS_ROOT)\src\m\intel386.h \
619 $(EMACS_ROOT)\src\config.h \
620 $(SRC)\s\ms-w32.h \
621 $(SRC)\m\intel386.h \
622 $(SRC)\config.h
623
624 $(BLD)\firstfile.obj : \
625 $(SRC)\firstfile.c \
626 $(EMACS_ROOT)\src\s\ms-w32.h \
627 $(EMACS_ROOT)\src\m\intel386.h \
628 $(EMACS_ROOT)\src\config.h
629
630 $(BLD)\floatfns.obj : \
631 $(SRC)\floatfns.c \
632 $(EMACS_ROOT)\src\s\ms-w32.h \
633 $(EMACS_ROOT)\src\m\intel386.h \
634 $(EMACS_ROOT)\src\config.h \
635 $(SRC)\syssignal.h
636
637 $(BLD)\fns.obj : \
638 $(SRC)\fns.c \
639 $(EMACS_ROOT)\src\s\ms-w32.h \
640 $(EMACS_ROOT)\src\m\intel386.h \
641 $(EMACS_ROOT)\src\config.h \
642 $(SRC)\commands.h \
643 $(SRC)\buffer.h \
644 $(SRC)\keyboard.h \
645 $(SRC)\dispextern.h \
646 $(SRC)\w32gui.h \
647 $(SRC)\intervals.h \
648 $(SRC)\composite.h
649
650 $(BLD)\frame.obj : \
651 $(SRC)\frame.c \
652 $(EMACS_ROOT)\src\s\ms-w32.h \
653 $(EMACS_ROOT)\src\m\intel386.h \
654 $(EMACS_ROOT)\src\config.h \
655 $(SRC)\frame.h \
656 $(SRC)\termhooks.h \
657 $(SRC)\window.h \
658 $(SRC)\buffer.h \
659 $(SRC)\commands.h \
660 $(SRC)\keyboard.h
661
662 $(BLD)\getloadavg.obj : \
663 $(SRC)\getloadavg.c \
664 $(EMACS_ROOT)\nt\inc\sys\param.h \
665 $(EMACS_ROOT)\src\s\ms-w32.h \
666 $(EMACS_ROOT)\src\m\intel386.h \
667 $(EMACS_ROOT)\src\config.h \
668 $(SRC)\s\ms-w32.h \
669 $(SRC)\m\intel386.h \
670 $(SRC)\config.h \
671 $(EMACS_ROOT)\nt\inc\sys\file.h
672
673 $(BLD)\gmalloc.obj : \
674 $(SRC)\gmalloc.c \
675 $(EMACS_ROOT)\src\s\ms-w32.h \
676 $(EMACS_ROOT)\src\m\intel386.h \
677 $(EMACS_ROOT)\src\config.h \
678 $(EMACS_ROOT)\nt\inc\sys\param.h \
679 $(SRC)\getpagesize.h
680 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
681
682 $(BLD)\hftctl.obj : \
683 $(SRC)\hftctl.c \
684 $(EMACS_ROOT)\src\s\ms-w32.h \
685 $(EMACS_ROOT)\src\m\intel386.h \
686 $(EMACS_ROOT)\src\config.h \
687 $(EMACS_ROOT)\nt\inc\sys\ioctl.h
688
689 $(BLD)\indent.obj : \
690 $(SRC)\indent.c \
691 $(EMACS_ROOT)\src\s\ms-w32.h \
692 $(EMACS_ROOT)\src\m\intel386.h \
693 $(EMACS_ROOT)\src\config.h \
694 $(SRC)\buffer.h \
695 $(SRC)\indent.h \
696 $(SRC)\frame.h \
697 $(SRC)\window.h \
698 $(SRC)\termchar.h \
699 $(SRC)\termopts.h \
700 $(SRC)\disptab.h \
701 $(SRC)\dispextern.h \
702 $(SRC)\w32gui.h \
703 $(SRC)\intervals.h \
704 $(SRC)\region-cache.h \
705 $(SRC)\composite.h
706
707 $(BLD)\insdel.obj : \
708 $(SRC)\insdel.c \
709 $(EMACS_ROOT)\src\s\ms-w32.h \
710 $(EMACS_ROOT)\src\m\intel386.h \
711 $(EMACS_ROOT)\src\config.h \
712 $(SRC)\dispextern.h \
713 $(SRC)\w32gui.h \
714 $(SRC)\intervals.h \
715 $(SRC)\composite.h \
716 $(SRC)\buffer.h \
717 $(SRC)\window.h \
718 $(SRC)\blockinput.h
719
720 $(BLD)\intervals.obj : \
721 $(SRC)\intervals.c \
722 $(EMACS_ROOT)\src\s\ms-w32.h \
723 $(EMACS_ROOT)\src\m\intel386.h \
724 $(EMACS_ROOT)\src\config.h \
725 $(SRC)\dispextern.h \
726 $(SRC)\w32gui.h \
727 $(SRC)\intervals.h \
728 $(SRC)\composite.h \
729 $(SRC)\keyboard.h \
730 $(SRC)\buffer.h \
731 $(SRC)\puresize.h
732
733 $(BLD)\keyboard.obj : \
734 $(SRC)\keyboard.c \
735 $(EMACS_ROOT)\src\s\ms-w32.h \
736 $(EMACS_ROOT)\src\m\intel386.h \
737 $(EMACS_ROOT)\src\config.h \
738 $(SRC)\termchar.h \
739 $(SRC)\termopts.h \
740 $(SRC)\termhooks.h \
741 $(SRC)\macros.h \
742 $(SRC)\frame.h \
743 $(SRC)\window.h \
744 $(SRC)\commands.h \
745 $(SRC)\buffer.h \
746 $(SRC)\disptab.h \
747 $(SRC)\keyboard.h \
748 $(SRC)\dispextern.h \
749 $(SRC)\intervals.h \
750 $(SRC)\composite.h \
751 $(SRC)\blockinput.h \
752 $(SRC)\msdos.h \
753 $(SRC)\syssignal.h \
754 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
755 $(EMACS_ROOT)\nt\inc\sys\file.h \
756 $(SRC)\systty.h \
757 $(SRC)\w32term.h \
758 $(SRC)\w32gui.h \
759 $(SRC)\xterm.h \
760 $(SRC)\vmstime.h \
761 $(SRC)\systime.h \
762 $(SRC)\atimer.h
763
764 $(BLD)\keymap.obj : \
765 $(SRC)\keymap.c \
766 $(EMACS_ROOT)\src\s\ms-w32.h \
767 $(EMACS_ROOT)\src\m\intel386.h \
768 $(EMACS_ROOT)\src\config.h \
769 $(SRC)\commands.h \
770 $(SRC)\buffer.h \
771 $(SRC)\keyboard.h \
772 $(SRC)\termhooks.h \
773 $(SRC)\blockinput.h
774
775 $(BLD)\lastfile.obj : \
776 $(SRC)\lastfile.c \
777 $(EMACS_ROOT)\src\s\ms-w32.h \
778 $(EMACS_ROOT)\src\m\intel386.h \
779 $(EMACS_ROOT)\src\config.h
780
781 $(BLD)\lread.obj : \
782 $(SRC)\lread.c \
783 $(EMACS_ROOT)\src\s\ms-w32.h \
784 $(EMACS_ROOT)\src\m\intel386.h \
785 $(EMACS_ROOT)\src\config.h \
786 $(EMACS_ROOT)\nt\inc\sys\file.h \
787 $(SRC)\buffer.h \
788 $(EMACS_ROOT)\src\epaths.h \
789 $(SRC)\commands.h \
790 $(SRC)\keyboard.h \
791 $(SRC)\termhooks.h \
792 $(SRC)\msdos.h
793
794 $(BLD)\macros.obj : \
795 $(SRC)\macros.c \
796 $(EMACS_ROOT)\src\s\ms-w32.h \
797 $(EMACS_ROOT)\src\m\intel386.h \
798 $(EMACS_ROOT)\src\config.h \
799 $(SRC)\macros.h \
800 $(SRC)\commands.h \
801 $(SRC)\buffer.h \
802 $(SRC)\window.h
803
804 $(BLD)\marker.obj : \
805 $(SRC)\marker.c \
806 $(EMACS_ROOT)\src\s\ms-w32.h \
807 $(EMACS_ROOT)\src\m\intel386.h \
808 $(EMACS_ROOT)\src\config.h \
809 $(SRC)\buffer.h
810
811 $(BLD)\minibuf.obj : \
812 $(SRC)\minibuf.c \
813 $(EMACS_ROOT)\src\s\ms-w32.h \
814 $(EMACS_ROOT)\src\m\intel386.h \
815 $(EMACS_ROOT)\src\config.h \
816 $(SRC)\commands.h \
817 $(SRC)\buffer.h \
818 $(SRC)\dispextern.h \
819 $(SRC)\w32gui.h \
820 $(SRC)\frame.h \
821 $(SRC)\window.h \
822 $(SRC)\syntax.h
823
824 $(BLD)\mocklisp.obj : \
825 $(SRC)\mocklisp.c \
826 $(EMACS_ROOT)\src\s\ms-w32.h \
827 $(EMACS_ROOT)\src\m\intel386.h \
828 $(EMACS_ROOT)\src\config.h \
829 $(SRC)\buffer.h
830
831 $(BLD)\w32.obj : \
832 $(SRC)\w32.c \
833 $(SRC)\w32.h \
834 $(SRC)\s\ms-w32.h \
835 $(SRC)\m\intel386.h \
836 $(SRC)\config.h \
837 $(EMACS_ROOT)\nt\inc\pwd.h \
838 $(SRC)\w32heap.h
839
840 $(BLD)\w32heap.obj : \
841 $(SRC)\w32heap.c \
842 $(SRC)\w32heap.h \
843 $(SRC)\s\ms-w32.h \
844 $(SRC)\m\intel386.h \
845 $(SRC)\config.h
846
847 $(BLD)\w32inevt.obj : \
848 $(SRC)\w32inevt.c \
849 $(SRC)\s\ms-w32.h \
850 $(SRC)\m\intel386.h \
851 $(SRC)\config.h \
852 $(SRC)\frame.h \
853 $(SRC)\blockinput.h \
854 $(SRC)\termhooks.h \
855 $(SRC)\w32heap.h \
856 $(SRC)\w32term.h \
857 $(SRC)\w32gui.h
858
859 $(BLD)\w32proc.obj : \
860 $(SRC)\w32proc.c \
861 $(SRC)\s\ms-w32.h \
862 $(SRC)\m\intel386.h \
863 $(SRC)\config.h \
864 $(SRC)\w32.h \
865 $(SRC)\w32heap.h \
866 $(SRC)\vmstime.h \
867 $(SRC)\systime.h
868
869 $(BLD)\w32console.obj : \
870 $(SRC)\w32console.c \
871 $(SRC)\s\ms-w32.h \
872 $(SRC)\m\intel386.h \
873 $(SRC)\config.h \
874 $(SRC)\frame.h \
875 $(SRC)\disptab.h \
876 $(SRC)\termhooks.h \
877 $(SRC)\w32inevt.h
878
879 $(BLD)\prefix-args.obj : \
880 $(SRC)\prefix-args.c
881
882 $(BLD)\print.obj : \
883 $(SRC)\print.c \
884 $(EMACS_ROOT)\src\s\ms-w32.h \
885 $(EMACS_ROOT)\src\m\intel386.h \
886 $(EMACS_ROOT)\src\config.h \
887 $(SRC)\buffer.h \
888 $(SRC)\frame.h \
889 $(SRC)\window.h \
890 $(SRC)\process.h \
891 $(SRC)\termchar.h \
892 $(SRC)\dispextern.h \
893 $(SRC)\w32gui.h \
894 $(SRC)\intervals.h \
895 $(SRC)\composite.h
896
897 $(BLD)\process.obj : \
898 $(SRC)\process.c \
899 $(EMACS_ROOT)\src\s\ms-w32.h \
900 $(EMACS_ROOT)\src\m\intel386.h \
901 $(EMACS_ROOT)\src\config.h \
902 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
903 $(EMACS_ROOT)\nt\inc\sys\file.h \
904 $(SRC)\systty.h \
905 $(SRC)\window.h \
906 $(SRC)\buffer.h \
907 $(SRC)\process.h \
908 $(SRC)\termhooks.h \
909 $(SRC)\commands.h \
910 $(SRC)\frame.h \
911 $(SRC)\syssignal.h \
912 $(SRC)\vmsproc.h \
913 $(SRC)\syswait.h \
914 $(SRC)\vmstime.h \
915 $(SRC)\systime.h \
916 $(SRC)\termopts.h \
917 $(SRC)\composite.h \
918 $(SRC)\atimer.h
919
920 $(BLD)\ralloc.obj : \
921 $(SRC)\ralloc.c \
922 $(EMACS_ROOT)\src\s\ms-w32.h \
923 $(EMACS_ROOT)\src\m\intel386.h \
924 $(EMACS_ROOT)\src\config.h \
925 $(SRC)\s\ms-w32.h \
926 $(SRC)\m\intel386.h \
927 $(SRC)\config.h \
928 $(EMACS_ROOT)\nt\inc\sys\param.h \
929 $(SRC)\getpagesize.h
930
931 $(BLD)\regex.obj : \
932 $(SRC)\regex.c \
933 $(EMACS_ROOT)\src\s\ms-w32.h \
934 $(EMACS_ROOT)\src\m\intel386.h \
935 $(EMACS_ROOT)\src\config.h \
936 $(SRC)\s\ms-w32.h \
937 $(SRC)\m\intel386.h \
938 $(SRC)\config.h \
939 $(SRC)\buffer.h \
940 $(SRC)\syntax.h \
941 $(SRC)\regex.h
942
943 $(BLD)\region-cache.obj : \
944 $(SRC)\region-cache.c \
945 $(EMACS_ROOT)\src\s\ms-w32.h \
946 $(EMACS_ROOT)\src\m\intel386.h \
947 $(EMACS_ROOT)\src\config.h \
948 $(SRC)\buffer.h \
949 $(SRC)\region-cache.h
950
951 $(BLD)\scroll.obj : \
952 $(SRC)\scroll.c \
953 $(EMACS_ROOT)\src\s\ms-w32.h \
954 $(EMACS_ROOT)\src\m\intel386.h \
955 $(EMACS_ROOT)\src\config.h \
956 $(SRC)\termchar.h \
957 $(SRC)\dispextern.h \
958 $(SRC)\w32gui.h \
959 $(SRC)\frame.h
960
961 $(BLD)\search.obj : \
962 $(SRC)\search.c \
963 $(EMACS_ROOT)\src\s\ms-w32.h \
964 $(EMACS_ROOT)\src\m\intel386.h \
965 $(EMACS_ROOT)\src\config.h \
966 $(SRC)\syntax.h \
967 $(SRC)\buffer.h \
968 $(SRC)\commands.h \
969 $(SRC)\blockinput.h \
970 $(SRC)\regex.h \
971 $(SRC)\region-cache.h \
972 $(SRC)\composite.h
973
974 $(BLD)\strftime.obj : \
975 $(SRC)\strftime.c \
976 $(EMACS_ROOT)\src\s\ms-w32.h \
977 $(EMACS_ROOT)\src\m\intel386.h \
978 $(EMACS_ROOT)\src\config.h
979
980 $(BLD)\sunfns.obj : \
981 $(SRC)\sunfns.c \
982 $(EMACS_ROOT)\src\s\ms-w32.h \
983 $(EMACS_ROOT)\src\m\intel386.h \
984 $(EMACS_ROOT)\src\config.h \
985 $(SRC)\window.h \
986 $(SRC)\buffer.h \
987 $(SRC)\termhooks.h
988
989 $(BLD)\syntax.obj : \
990 $(SRC)\syntax.c \
991 $(EMACS_ROOT)\src\s\ms-w32.h \
992 $(EMACS_ROOT)\src\m\intel386.h \
993 $(EMACS_ROOT)\src\config.h \
994 $(SRC)\commands.h \
995 $(SRC)\buffer.h \
996 $(SRC)\syntax.h \
997 $(SRC)\composite.h
998
999 $(BLD)\sysdep.obj : \
1000 $(SRC)\sysdep.c \
1001 $(EMACS_ROOT)\src\s\ms-w32.h \
1002 $(EMACS_ROOT)\src\m\intel386.h \
1003 $(EMACS_ROOT)\src\config.h \
1004 $(SRC)\blockinput.h \
1005 $(SRC)\dosfns.h \
1006 $(SRC)\msdos.h \
1007 $(EMACS_ROOT)\nt\inc\sys\param.h \
1008 $(EMACS_ROOT)\nt\inc\sys\file.h \
1009 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
1010 $(EMACS_ROOT)\nt\inc\sys\file.h \
1011 $(SRC)\systty.h \
1012 $(SRC)\vmsproc.h \
1013 $(SRC)\syswait.h \
1014 $(SRC)\frame.h \
1015 $(SRC)\window.h \
1016 $(SRC)\termhooks.h \
1017 $(SRC)\termchar.h \
1018 $(SRC)\termopts.h \
1019 $(SRC)\dispextern.h \
1020 $(SRC)\w32gui.h \
1021 $(SRC)\process.h \
1022 $(SRC)\vmsdir.h \
1023 $(SRC)\ndir.h \
1024 $(SRC)\syssignal.h \
1025 $(SRC)\vmstime.h \
1026 $(SRC)\systime.h \
1027 $(SRC)\uaf.h \
1028 $(SRC)\vms-pwd.h \
1029 $(EMACS_ROOT)\src\acldef.h \
1030 $(EMACS_ROOT)\src\chpdef.h
1031
1032 $(BLD)\term.obj : \
1033 $(SRC)\term.c \
1034 $(EMACS_ROOT)\src\s\ms-w32.h \
1035 $(EMACS_ROOT)\src\m\intel386.h \
1036 $(EMACS_ROOT)\src\config.h \
1037 $(SRC)\termchar.h \
1038 $(SRC)\termopts.h \
1039 $(SRC)\cm.h \
1040 $(SRC)\frame.h \
1041 $(SRC)\disptab.h \
1042 $(SRC)/dispextern.h \
1043 $(SRC)\termhooks.h \
1044 $(SRC)\keyboard.h
1045
1046 $(BLD)\termcap.obj : \
1047 $(SRC)\termcap.c \
1048 $(EMACS_ROOT)\src\s\ms-w32.h \
1049 $(EMACS_ROOT)\src\m\intel386.h \
1050 $(EMACS_ROOT)\src\config.h \
1051 $(EMACS_ROOT)\nt\inc\sys\file.h
1052
1053 $(BLD)\terminfo.obj : \
1054 $(SRC)\terminfo.c
1055
1056 $(BLD)\textprop.obj : \
1057 $(SRC)\textprop.c \
1058 $(EMACS_ROOT)\src\s\ms-w32.h \
1059 $(EMACS_ROOT)\src\m\intel386.h \
1060 $(EMACS_ROOT)\src\config.h \
1061 $(SRC)\dispextern.h \
1062 $(SRC)\w32gui.h \
1063 $(SRC)\intervals.h \
1064 $(SRC)\composite.h \
1065 $(SRC)\buffer.h \
1066 $(SRC)\window.h
1067
1068 $(BLD)\tparam.obj : \
1069 $(SRC)\tparam.c \
1070 $(EMACS_ROOT)\src\s\ms-w32.h \
1071 $(EMACS_ROOT)\src\m\intel386.h \
1072 $(EMACS_ROOT)\src\config.h
1073
1074 $(BLD)\undo.obj : \
1075 $(SRC)\undo.c \
1076 $(EMACS_ROOT)\src\s\ms-w32.h \
1077 $(EMACS_ROOT)\src\m\intel386.h \
1078 $(EMACS_ROOT)\src\config.h \
1079 $(SRC)\buffer.h \
1080 $(SRC)\commands.h
1081
1082 $(BLD)\unexw32.obj : \
1083 $(SRC)\unexw32.c \
1084 $(EMACS_ROOT)\src\s\ms-w32.h \
1085 $(EMACS_ROOT)\src\m\intel386.h \
1086 $(EMACS_ROOT)\src\config.h \
1087 $(SRC)\w32heap.h
1088
1089 $(BLD)\vm-limit.obj : \
1090 $(SRC)\vm-limit.c \
1091 $(EMACS_ROOT)\src\s\ms-w32.h \
1092 $(EMACS_ROOT)\src\m\intel386.h \
1093 $(EMACS_ROOT)\src\config.h \
1094 $(SRC)\mem-limits.h
1095
1096 $(BLD)\widget.obj : \
1097 $(SRC)\widget.c \
1098 $(EMACS_ROOT)\src\s\ms-w32.h \
1099 $(EMACS_ROOT)\src\m\intel386.h \
1100 $(EMACS_ROOT)\src\config.h \
1101 $(SRC)\xterm.h \
1102 $(SRC)\frame.h \
1103 $(SRC)\dispextern.h \
1104 $(SRC)\w32gui.h \
1105 $(SRC)\widget.h \
1106 $(SRC)\widgetprv.h
1107
1108 $(BLD)\window.obj : \
1109 $(SRC)\window.c \
1110 $(EMACS_ROOT)\src\s\ms-w32.h \
1111 $(EMACS_ROOT)\src\m\intel386.h \
1112 $(EMACS_ROOT)\src\config.h \
1113 $(SRC)\buffer.h \
1114 $(SRC)\frame.h \
1115 $(SRC)\window.h \
1116 $(SRC)\commands.h \
1117 $(SRC)\indent.h \
1118 $(SRC)\termchar.h \
1119 $(SRC)\disptab.h \
1120 $(SRC)\keyboard.h \
1121 $(SRC)\composite.h
1122
1123 $(BLD)\xdisp.obj : \
1124 $(SRC)\xdisp.c \
1125 $(EMACS_ROOT)\src\s\ms-w32.h \
1126 $(EMACS_ROOT)\src\m\intel386.h \
1127 $(EMACS_ROOT)\src\config.h \
1128 $(SRC)\frame.h \
1129 $(SRC)\window.h \
1130 $(SRC)\termchar.h \
1131 $(SRC)\buffer.h \
1132 $(SRC)\indent.h \
1133 $(SRC)\commands.h \
1134 $(SRC)\macros.h \
1135 $(SRC)\disptab.h \
1136 $(SRC)\termhooks.h \
1137 $(SRC)\dispextern.h \
1138 $(SRC)\w32gui.h \
1139 $(SRC)\intervals.h \
1140 $(SRC)\composite.h
1141
1142 $(BLD)\xfaces.obj: \
1143 $(EMACS_ROOT)\src\s\ms-w32.h \
1144 $(EMACS_ROOT)\src\m\intel386.h \
1145 $(EMACS_ROOT)\src\config.h \
1146 $(SRC)\xfaces.c \
1147 $(SRC)\charset.h \
1148 $(SRC)\fontset.h \
1149 $(SRC)\w32term.h \
1150 $(SRC)\w32gui.h \
1151 $(SRC)\buffer.h \
1152 $(SRC)\dispextern.h \
1153 $(SRC)\frame.h \
1154 $(SRC)\blockinput.h \
1155 $(SRC)\window.h \
1156 $(SRC)\intervals.h \
1157 $(SRC)\composite.h
1158
1159 $(BLD)\w32fns.obj: \
1160 $(EMACS_ROOT)\src\s\ms-w32.h \
1161 $(EMACS_ROOT)\src\m\intel386.h \
1162 $(EMACS_ROOT)\src\config.h \
1163 $(SRC)\w32fns.c \
1164 $(SRC)\x-list-font.c \
1165 $(SRC)\w32term.h \
1166 $(SRC)\w32gui.h \
1167 $(SRC)\frame.h \
1168 $(SRC)\window.h \
1169 $(SRC)\buffer.h \
1170 $(SRC)\charset.h \
1171 $(SRC)\coding.h \
1172 $(SRC)\dispextern.h \
1173 $(SRC)\keyboard.h \
1174 $(SRC)\blockinput.h \
1175 $(SRC)\epaths.h \
1176 $(SRC)\w32heap.h \
1177 $(SRC)\termhooks.h
1178
1179 $(BLD)\w32menu.obj: \
1180 $(EMACS_ROOT)\src\s\ms-w32.h \
1181 $(EMACS_ROOT)\src\m\intel386.h \
1182 $(EMACS_ROOT)\src\config.h \
1183 $(SRC)\w32menu.c \
1184 $(SRC)\termhooks.h \
1185 $(SRC)\frame.h \
1186 $(SRC)\window.h \
1187 $(SRC)\keyboard.h \
1188 $(SRC)\blockinput.h \
1189 $(SRC)\buffer.h \
1190 $(SRC)\charset.h \
1191 $(SRC)\coding.h
1192
1193 $(BLD)\w32term.obj: \
1194 $(EMACS_ROOT)\src\s\ms-w32.h \
1195 $(EMACS_ROOT)\src\m\intel386.h \
1196 $(EMACS_ROOT)\src\config.h \
1197 $(SRC)\w32term.c \
1198 $(SRC)\blockinput.h \
1199 $(SRC)\w32heap.h \
1200 $(SRC)\w32term.h \
1201 $(SRC)\w32gui.h \
1202 $(SRC)\systty.h \
1203 $(SRC)\systime.h \
1204 $(SRC)\frame.h \
1205 $(SRC)\dispextern.h \
1206 $(SRC)\termhooks.h \
1207 $(SRC)\termopts.h \
1208 $(SRC)\termchar.h \
1209 $(SRC)\gnu.h \
1210 $(SRC)\disptab.h \
1211 $(SRC)\buffer.h \
1212 $(SRC)\window.h \
1213 $(SRC)\keyboard.h \
1214 $(SRC)\intervals.h \
1215 $(SRC)\composite.h \
1216 $(SRC)\atimer.h
1217
1218 $(BLD)\w32select.obj: \
1219 $(EMACS_ROOT)\src\s\ms-w32.h \
1220 $(EMACS_ROOT)\src\m\intel386.h \
1221 $(EMACS_ROOT)\src\config.h \
1222 $(SRC)\w32select.c \
1223 $(SRC)\w32term.h \
1224 $(SRC)\w32gui.h \
1225 $(SRC)\dispextern.h \
1226 $(SRC)\frame.h \
1227 $(SRC)\blockinput.h
1228
1229 $(BLD)\w32reg.obj: \
1230 $(EMACS_ROOT)\src\s\ms-w32.h \
1231 $(EMACS_ROOT)\src\m\intel386.h \
1232 $(EMACS_ROOT)\src\config.h \
1233 $(SRC)\w32reg.c \
1234 $(SRC)\w32term.h \
1235 $(SRC)\w32gui.h \
1236 $(SRC)\blockinput.h
1237
1238 $(BLD)\w32xfns.obj: \
1239 $(EMACS_ROOT)\src\s\ms-w32.h \
1240 $(EMACS_ROOT)\src\m\intel386.h \
1241 $(EMACS_ROOT)\src\config.h \
1242 $(SRC)\w32xfns.c \
1243
1244 $(BLD)\w32bdf.obj: \
1245 $(EMACS_ROOT)\src/s\ms-w32.h \
1246 $(EMACS_ROOT)\src/m\intel386.h \
1247 $(EMACS_ROOT)\src/config.h \
1248 $(SRC)\w32bdf.c \
1249 $(SRC)\charset.h \
1250 $(SRC)\frame.h \
1251 $(SRC)\dispextern.h \
1252 $(SRC)\fontset.h \
1253 $(SRC)\blockinput.h \
1254 $(SRC)\w32gui.h \
1255 $(SRC)\w32term.h \
1256 $(SRC)\w32gui.h \
1257 $(SRC)\w32bdf.h \
1258 $(SRC)\w32.h \
1259 $(SRC)\frame.h \
1260 $(SRC)\blockinput.h