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