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