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