]> code.delx.au - gnu-emacs/blob - src/makefile.nt
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
[gnu-emacs] / src / makefile.nt
1 # Makefile for GNU Emacs on Windows NT
2 # Copyright (c) 1992, 1993, 1994 Free Software Foundation, Inc.
3 # Tim Fleehart (apollo@online.com)
4 # Geoff Voelker (voelker@cs.washington.edu)
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
20 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 #
22
23 #
24 # Sets up the system dependent macros.
25 #
26 !include ..\nt\makefile.def
27
28 #
29 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
30 # the emacs source tree.
31 #
32 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc -Zi
33
34 EMACS = $(BLD)\emacs.exe
35 TEMACS = $(BLD)\temacs.exe
36 TLIB = $(BLD)\temacs.lib
37 TOBJ = $(BLD)\emacs.obj
38
39 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x1000000 -base:0xD00000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:console -entry:_start
40
41 # -debug:PARTIAL -debugtype:COFF
42
43 #
44 # Split up the objects into two sets so that we don't run out of
45 # command line space when we link them into a library.
46 #
47 OBJ1 = $(BLD)\abbrev.obj \
48 $(BLD)\alloc.obj \
49 $(BLD)\alloca.obj \
50 $(BLD)\buffer.obj \
51 $(BLD)\bytecode.obj \
52 $(BLD)\callint.obj \
53 $(BLD)\callproc.obj \
54 $(BLD)\casefiddle.obj \
55 $(BLD)\cm.obj \
56 $(BLD)\cmds.obj \
57 $(BLD)\data.obj \
58 $(BLD)\dired.obj \
59 $(BLD)\dispnew.obj \
60 $(BLD)\doc.obj \
61 $(BLD)\doprnt.obj \
62 $(BLD)\editfns.obj \
63 $(BLD)\eval.obj \
64 $(BLD)\fileio.obj \
65 $(BLD)\filelock.obj \
66 $(BLD)\filemode.obj \
67 $(BLD)\fns.obj \
68 $(BLD)\indent.obj \
69 $(BLD)\insdel.obj \
70 $(BLD)\keyboard.obj \
71 $(BLD)\keymap.obj \
72 $(BLD)\lastfile.obj \
73 $(BLD)\lread.obj \
74 $(BLD)\macros.obj \
75 $(BLD)\marker.obj \
76 $(BLD)\minibuf.obj \
77 $(BLD)\xfaces.obj \
78 $(BLD)\mocklisp.obj
79
80 OBJ2 = $(BLD)\nt.obj \
81 $(BLD)\ntheap.obj \
82 $(BLD)\ntinevt.obj \
83 $(BLD)\ntproc.obj \
84 $(BLD)\ntterm.obj \
85 $(BLD)\print.obj \
86 $(BLD)\process.obj \
87 $(BLD)\regex.obj \
88 $(BLD)\scroll.obj \
89 $(BLD)\search.obj \
90 $(BLD)\syntax.obj \
91 $(BLD)\sysdep.obj \
92 $(BLD)\term.obj \
93 $(BLD)\termcap.obj \
94 $(BLD)\tparam.obj \
95 $(BLD)\undo.obj \
96 $(BLD)\unexnt.obj \
97 $(BLD)\window.obj \
98 $(BLD)\xdisp.obj \
99 $(BLD)\casetab.obj \
100 $(BLD)\floatfns.obj \
101 $(BLD)\frame.obj \
102 $(BLD)\gmalloc.obj \
103 $(BLD)\intervals.obj \
104 $(BLD)\ralloc.obj \
105 $(BLD)\textprop.obj \
106 $(BLD)\vm-limit.obj
107
108 LIBS = $(TLIB) \
109 $(SYS_LIB_DIR)\setargv.obj \
110 $(SYS_LIB_DIR)\kernel32.lib \
111 $(SYS_LIB_DIR)\advapi32.lib \
112 $(SYS_LIB_DIR)\libc.lib
113
114 #
115 # Build the executable and dump it.
116 #
117 all: $(BLD) $(EMACS)
118
119 #
120 # Headers we would preprocess if we could.
121 #
122 PREPARED_HEADERS = config.h paths.h
123 config.h: ..\nt\src\config.h
124 cp ..\nt\src\config.h config.h
125 paths.h: ..\nt\src\paths.h
126 cp ..\nt\src\paths.h paths.h
127
128 #
129 # The dumped executable
130 #
131 emacs: $(EMACS)
132 $(EMACS): $(PREPARED_HEADERS) $(TEMACS)
133 cd $(BLD)
134 temacs.exe -batch -l loadup dump
135 cd ..\..
136
137 #
138 # The undumped executable
139 #
140 temacs: $(BLD) $(TEMACS)
141 $(TEMACS): $(LIBS) $(TOBJ)
142 $(LINK) -out:$(TEMACS) $(LINK_FLAGS) $(TOBJ) $(LIBS)
143
144 #
145 # Build the library. Split up the build into two phases...otherwise we
146 # run out of command line space.
147 #
148 $(TLIB): $(OBJ1) $(OBJ2)
149 @- $(AR) -out:$(TLIB) $(OBJ1)
150 @- $(AR) -out:$(TLIB) $(TLIB) $(OBJ2)
151
152 #
153 # Object files.
154 #
155 .c{$(BLD)}.obj:
156 $(CC) $(CFLAGS) -Fo$@ $<
157
158 #
159 # Assuming INSTALL_DIR is defined, build and install emacs in it.
160 #
161 install: all
162 - mkdir $(INSTALL_DIR)\bin
163 $(CP) $(EMACS) $(INSTALL_DIR)\bin
164
165 #
166 # Maintenance
167 #
168 clean:; - del /q *~
169 - delnode /q deleted
170 - delnode /q obj
171
172 #
173 # These files are the ones that compile conditionally on CANNOT_DUMP...
174 # this target is mostly used for debugging.
175 #
176 cleandump:; cd $(BLD) && - 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
177
178
179 ### DEPENDENCIES ###
180
181 EMACS_ROOT = ..
182 SRC = .
183
184 $(BLD)\abbrev.obj : \
185 $(SRC)\abbrev.c \
186 $(EMACS_ROOT)\src\s\windowsnt.h \
187 $(EMACS_ROOT)\src\m\intel386.h \
188 $(EMACS_ROOT)\src\config.h \
189 $(SRC)\lisp.h \
190 $(SRC)\commands.h \
191 $(SRC)\buffer.h \
192 $(SRC)\window.h
193
194 $(BLD)\alloc.obj : \
195 $(SRC)\alloc.c \
196 $(EMACS_ROOT)\src\s\windowsnt.h \
197 $(EMACS_ROOT)\src\m\intel386.h \
198 $(EMACS_ROOT)\src\config.h \
199 $(SRC)\lisp.h \
200 $(SRC)\dispextern.h \
201 $(SRC)\intervals.h \
202 $(SRC)\puresize.h \
203 $(SRC)\buffer.h \
204 $(SRC)\window.h \
205 $(SRC)\frame.h \
206 $(SRC)\blockinput.h \
207 $(SRC)\syssignal.h
208
209 $(BLD)\alloca.obj : \
210 $(SRC)\alloca.c \
211 $(EMACS_ROOT)\src\s\windowsnt.h \
212 $(EMACS_ROOT)\src\m\intel386.h \
213 $(EMACS_ROOT)\src\config.h \
214 $(SRC)\s\windowsnt.h \
215 $(SRC)\m\intel386.h \
216 $(SRC)\config.h \
217 $(SRC)\blockinput.h
218
219 $(BLD)\buffer.obj : \
220 $(SRC)\buffer.c \
221 $(EMACS_ROOT)\nt\inc\sys\param.h \
222 $(EMACS_ROOT)\src\s\windowsnt.h \
223 $(EMACS_ROOT)\src\m\intel386.h \
224 $(EMACS_ROOT)\src\config.h \
225 $(SRC)\lisp.h \
226 $(SRC)\dispextern.h \
227 $(SRC)\intervals.h \
228 $(SRC)\window.h \
229 $(SRC)\commands.h \
230 $(SRC)\buffer.h \
231 $(SRC)\indent.h \
232 $(SRC)\blockinput.h
233
234 $(BLD)\bytecode.obj : \
235 $(SRC)\bytecode.c \
236 $(SRC)\lisp.h \
237 $(SRC)\buffer.h \
238 $(SRC)\syntax.h
239
240 $(BLD)\callint.obj : \
241 $(SRC)\callint.c \
242 $(SRC)\lisp.h \
243 $(SRC)\buffer.h \
244 $(SRC)\commands.h \
245 $(SRC)\keyboard.h \
246 $(SRC)\window.h \
247 $(SRC)\mocklisp.h
248
249 $(BLD)\callproc.obj : \
250 $(SRC)\callproc.c \
251 $(EMACS_ROOT)\src\s\windowsnt.h \
252 $(EMACS_ROOT)\src\m\intel386.h \
253 $(EMACS_ROOT)\src\config.h \
254 $(SRC)\msdos.h \
255 $(EMACS_ROOT)\nt\inc\sys\param.h \
256 $(SRC)\lisp.h \
257 $(SRC)\commands.h \
258 $(SRC)\buffer.h \
259 $(SRC)\process.h \
260 $(SRC)\syssignal.h \
261 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
262 $(EMACS_ROOT)\nt\inc\sys\file.h \
263 $(SRC)\systty.h
264
265 $(BLD)\casefiddle.obj : \
266 $(SRC)\casefiddle.c \
267 $(EMACS_ROOT)\src\s\windowsnt.h \
268 $(EMACS_ROOT)\src\m\intel386.h \
269 $(EMACS_ROOT)\src\config.h \
270 $(SRC)\lisp.h \
271 $(SRC)\buffer.h \
272 $(SRC)\commands.h \
273 $(SRC)\syntax.h
274 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
275
276 $(BLD)\casetab.obj : \
277 $(SRC)\casetab.c \
278 $(EMACS_ROOT)\src\s\windowsnt.h \
279 $(EMACS_ROOT)\src\m\intel386.h \
280 $(EMACS_ROOT)\src\config.h \
281 $(SRC)\lisp.h \
282 $(SRC)\buffer.h
283
284 $(BLD)\cm.obj : \
285 $(SRC)\cm.c \
286 $(EMACS_ROOT)\src\s\windowsnt.h \
287 $(EMACS_ROOT)\src\m\intel386.h \
288 $(EMACS_ROOT)\src\config.h \
289 $(SRC)\cm.h \
290 $(SRC)\termhooks.h
291
292 $(BLD)\cmds.obj : \
293 $(SRC)\cmds.c \
294 $(EMACS_ROOT)\src\s\windowsnt.h \
295 $(EMACS_ROOT)\src\m\intel386.h \
296 $(EMACS_ROOT)\src\config.h \
297 $(SRC)\lisp.h \
298 $(SRC)\commands.h \
299 $(SRC)\buffer.h \
300 $(SRC)\syntax.h
301
302 $(BLD)\data.obj : \
303 $(SRC)\data.c \
304 $(EMACS_ROOT)\src\s\windowsnt.h \
305 $(EMACS_ROOT)\src\m\intel386.h \
306 $(EMACS_ROOT)\src\config.h \
307 $(SRC)\lisp.h \
308 $(SRC)\puresize.h \
309 $(SRC)\buffer.h \
310 $(SRC)\syssignal.h
311
312 $(BLD)\dired.obj : \
313 $(SRC)\dired.c \
314 $(EMACS_ROOT)\src\s\windowsnt.h \
315 $(EMACS_ROOT)\src\m\intel386.h \
316 $(EMACS_ROOT)\src\config.h \
317 $(SRC)\vmsdir.h \
318 $(SRC)\ndir.h \
319 $(SRC)\lisp.h \
320 $(SRC)\buffer.h \
321 $(SRC)\commands.h \
322 $(SRC)\regex.h
323
324 $(BLD)\dispnew.obj : \
325 $(SRC)\dispnew.c \
326 $(EMACS_ROOT)\src\s\windowsnt.h \
327 $(EMACS_ROOT)\src\m\intel386.h \
328 $(EMACS_ROOT)\src\config.h \
329 $(SRC)\lisp.h \
330 $(SRC)\termchar.h \
331 $(SRC)\termopts.h \
332 $(SRC)\termhooks.h \
333 $(SRC)\cm.h \
334 $(SRC)\buffer.h \
335 $(SRC)\frame.h \
336 $(SRC)\window.h \
337 $(SRC)\commands.h \
338 $(SRC)\disptab.h \
339 $(SRC)\indent.h \
340 $(SRC)\dispextern.h \
341 $(SRC)\intervals.h \
342 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
343 $(EMACS_ROOT)\nt\inc\sys\file.h \
344 $(SRC)\systty.h \
345 $(SRC)\xterm.h \
346 $(SRC)\vmstime.h \
347 $(SRC)\systime.h
348
349 $(BLD)\doc.obj : \
350 $(SRC)\doc.c \
351 $(EMACS_ROOT)\src\s\windowsnt.h \
352 $(EMACS_ROOT)\src\m\intel386.h \
353 $(EMACS_ROOT)\src\config.h \
354 $(EMACS_ROOT)\nt\inc\sys\file.h \
355 $(SRC)\lisp.h \
356 $(SRC)\buffer.h \
357 $(SRC)\keyboard.h
358
359 $(BLD)\doprnt.obj : \
360 $(SRC)\doprnt.c \
361 $(EMACS_ROOT)\src\s\windowsnt.h \
362 $(EMACS_ROOT)\src\m\intel386.h \
363 $(EMACS_ROOT)\src\config.h
364
365 $(BLD)\dosfns.obj : \
366 $(SRC)\dosfns.c \
367 $(EMACS_ROOT)\src\s\windowsnt.h \
368 $(EMACS_ROOT)\src\m\intel386.h \
369 $(EMACS_ROOT)\src\config.h \
370 $(SRC)\lisp.h \
371 $(SRC)\buffer.h \
372 $(SRC)\termchar.h \
373 $(SRC)\termhooks.h \
374 $(SRC)\frame.h \
375 $(SRC)\dosfns.h \
376 $(SRC)\msdos.h
377
378 $(BLD)\editfns.obj : \
379 $(SRC)\editfns.c \
380 $(EMACS_ROOT)\src\s\windowsnt.h \
381 $(EMACS_ROOT)\src\m\intel386.h \
382 $(EMACS_ROOT)\src\config.h \
383 $(SRC)\uaf.h \
384 $(SRC)\vms-pwd.h \
385 $(EMACS_ROOT)\nt\inc\pwd.h \
386 $(SRC)\lisp.h \
387 $(SRC)\dispextern.h \
388 $(SRC)\intervals.h \
389 $(SRC)\buffer.h \
390 $(SRC)\window.h \
391 $(SRC)\vmstime.h \
392 $(SRC)\systime.h
393
394 $(BLD)\emacs.obj : \
395 $(SRC)\emacs.c \
396 $(EMACS_ROOT)\src\s\windowsnt.h \
397 $(EMACS_ROOT)\src\m\intel386.h \
398 $(EMACS_ROOT)\src\config.h \
399 $(SRC)\lisp.h \
400 $(SRC)\commands.h \
401 $(SRC)\dispextern.h \
402 $(SRC)\intervals.h \
403 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
404 $(EMACS_ROOT)\nt\inc\sys\file.h \
405 $(SRC)\systty.h \
406 $(SRC)\syssignal.h \
407 $(SRC)\process.h
408
409 $(BLD)\eval.obj : \
410 $(SRC)\eval.c \
411 $(EMACS_ROOT)\src\s\windowsnt.h \
412 $(EMACS_ROOT)\src\m\intel386.h \
413 $(EMACS_ROOT)\src\config.h \
414 $(SRC)\lisp.h \
415 $(SRC)\blockinput.h \
416 $(SRC)\commands.h \
417 $(SRC)\keyboard.h
418
419 $(BLD)\fileio.obj : \
420 $(SRC)\fileio.c \
421 $(EMACS_ROOT)\src\s\windowsnt.h \
422 $(EMACS_ROOT)\src\m\intel386.h \
423 $(EMACS_ROOT)\src\config.h \
424 $(SRC)\uaf.h \
425 $(SRC)\vms-pwd.h \
426 $(EMACS_ROOT)\nt\inc\pwd.h \
427 $(SRC)\msdos.h \
428 $(EMACS_ROOT)\nt\inc\sys\param.h \
429 $(SRC)\vmsdir.h \
430 $(SRC)\lisp.h \
431 $(SRC)\dispextern.h \
432 $(SRC)\intervals.h \
433 $(SRC)\buffer.h \
434 $(SRC)\window.h \
435 $(EMACS_ROOT)\nt\inc\sys\file.h \
436 $(SRC)\vmstime.h \
437 $(SRC)\systime.h
438
439 $(BLD)\filelock.obj : \
440 $(SRC)\filelock.c \
441 $(EMACS_ROOT)\src\s\windowsnt.h \
442 $(EMACS_ROOT)\src\m\intel386.h \
443 $(EMACS_ROOT)\src\config.h \
444 $(SRC)\uaf.h \
445 $(SRC)\vms-pwd.h \
446 $(EMACS_ROOT)\nt\inc\pwd.h \
447 $(EMACS_ROOT)\nt\inc\sys\file.h \
448 $(SRC)\lisp.h \
449 $(EMACS_ROOT)\src\paths.h \
450 $(SRC)\buffer.h \
451 $(SRC)\vmsdir.h \
452 $(SRC)\ndir.h
453
454 $(BLD)\filemode.obj : \
455 $(SRC)\filemode.c \
456 $(EMACS_ROOT)\src\s\windowsnt.h \
457 $(EMACS_ROOT)\src\m\intel386.h \
458 $(EMACS_ROOT)\src\config.h \
459 $(SRC)\s\windowsnt.h \
460 $(SRC)\m\intel386.h \
461 $(SRC)\config.h
462
463 $(BLD)\floatfns.obj : \
464 $(SRC)\floatfns.c \
465 $(EMACS_ROOT)\src\s\windowsnt.h \
466 $(EMACS_ROOT)\src\m\intel386.h \
467 $(EMACS_ROOT)\src\config.h \
468 $(SRC)\lisp.h \
469 $(SRC)\syssignal.h
470
471 $(BLD)\fns.obj : \
472 $(SRC)\fns.c \
473 $(EMACS_ROOT)\src\s\windowsnt.h \
474 $(EMACS_ROOT)\src\m\intel386.h \
475 $(EMACS_ROOT)\src\config.h \
476 $(SRC)\lisp.h \
477 $(SRC)\commands.h \
478 $(SRC)\buffer.h \
479 $(SRC)\keyboard.h \
480 $(SRC)\dispextern.h \
481 $(SRC)\intervals.h
482
483 $(BLD)\frame.obj : \
484 $(SRC)\frame.c \
485 $(EMACS_ROOT)\src\s\windowsnt.h \
486 $(EMACS_ROOT)\src\m\intel386.h \
487 $(EMACS_ROOT)\src\config.h \
488 $(SRC)\lisp.h \
489 $(SRC)\frame.h \
490 $(SRC)\termhooks.h \
491 $(SRC)\window.h \
492 $(SRC)\buffer.h \
493 $(SRC)\commands.h \
494 $(SRC)\keyboard.h
495
496 $(BLD)\getloadavg.obj : \
497 $(SRC)\getloadavg.c \
498 $(EMACS_ROOT)\nt\inc\sys\param.h \
499 $(EMACS_ROOT)\src\s\windowsnt.h \
500 $(EMACS_ROOT)\src\m\intel386.h \
501 $(EMACS_ROOT)\src\config.h \
502 $(SRC)\s\windowsnt.h \
503 $(SRC)\m\intel386.h \
504 $(SRC)\config.h \
505 $(EMACS_ROOT)\nt\inc\sys\file.h
506
507 $(BLD)\gmalloc.obj : \
508 $(SRC)\gmalloc.c \
509 $(EMACS_ROOT)\src\s\windowsnt.h \
510 $(EMACS_ROOT)\src\m\intel386.h \
511 $(EMACS_ROOT)\src\config.h \
512 $(EMACS_ROOT)\nt\inc\sys\param.h \
513 $(SRC)\getpagesize.h
514 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
515
516 $(BLD)\hftctl.obj : \
517 $(SRC)\hftctl.c \
518 $(EMACS_ROOT)\src\s\windowsnt.h \
519 $(EMACS_ROOT)\src\m\intel386.h \
520 $(EMACS_ROOT)\src\config.h \
521 $(EMACS_ROOT)\nt\inc\sys\ioctl.h
522
523 $(BLD)\indent.obj : \
524 $(SRC)\indent.c \
525 $(EMACS_ROOT)\src\s\windowsnt.h \
526 $(EMACS_ROOT)\src\m\intel386.h \
527 $(EMACS_ROOT)\src\config.h \
528 $(SRC)\lisp.h \
529 $(SRC)\buffer.h \
530 $(SRC)\indent.h \
531 $(SRC)\frame.h \
532 $(SRC)\window.h \
533 $(SRC)\termchar.h \
534 $(SRC)\termopts.h \
535 $(SRC)\disptab.h \
536 $(SRC)\dispextern.h \
537 $(SRC)\intervals.h
538
539 $(BLD)\insdel.obj : \
540 $(SRC)\insdel.c \
541 $(EMACS_ROOT)\src\s\windowsnt.h \
542 $(EMACS_ROOT)\src\m\intel386.h \
543 $(EMACS_ROOT)\src\config.h \
544 $(SRC)\lisp.h \
545 $(SRC)\dispextern.h \
546 $(SRC)\intervals.h \
547 $(SRC)\buffer.h \
548 $(SRC)\window.h \
549 $(SRC)\blockinput.h
550
551 $(BLD)\intervals.obj : \
552 $(SRC)\intervals.c \
553 $(EMACS_ROOT)\src\s\windowsnt.h \
554 $(EMACS_ROOT)\src\m\intel386.h \
555 $(EMACS_ROOT)\src\config.h \
556 $(SRC)\lisp.h \
557 $(SRC)\dispextern.h \
558 $(SRC)\intervals.h \
559 $(SRC)\buffer.h \
560 $(SRC)\puresize.h
561 $(CC) $(CFLAGS) -Fo$@ intervals.c
562
563 $(BLD)\keyboard.obj : \
564 $(SRC)\keyboard.c \
565 $(EMACS_ROOT)\src\s\windowsnt.h \
566 $(EMACS_ROOT)\src\m\intel386.h \
567 $(EMACS_ROOT)\src\config.h \
568 $(SRC)\termchar.h \
569 $(SRC)\termopts.h \
570 $(SRC)\lisp.h \
571 $(SRC)\termhooks.h \
572 $(SRC)\macros.h \
573 $(SRC)\frame.h \
574 $(SRC)\window.h \
575 $(SRC)\commands.h \
576 $(SRC)\buffer.h \
577 $(SRC)\disptab.h \
578 $(SRC)\keyboard.h \
579 $(SRC)\dispextern.h \
580 $(SRC)\intervals.h \
581 $(SRC)\blockinput.h \
582 $(SRC)\msdos.h \
583 $(SRC)\syssignal.h \
584 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
585 $(EMACS_ROOT)\nt\inc\sys\file.h \
586 $(SRC)\systty.h \
587 $(SRC)\xterm.h \
588 $(SRC)\vmstime.h \
589 $(SRC)\systime.h
590
591 $(BLD)\keymap.obj : \
592 $(SRC)\keymap.c \
593 $(EMACS_ROOT)\src\s\windowsnt.h \
594 $(EMACS_ROOT)\src\m\intel386.h \
595 $(EMACS_ROOT)\src\config.h \
596 $(SRC)\lisp.h \
597 $(SRC)\commands.h \
598 $(SRC)\buffer.h \
599 $(SRC)\keyboard.h \
600 $(SRC)\termhooks.h \
601 $(SRC)\blockinput.h
602
603 $(BLD)\lastfile.obj : \
604 $(SRC)\lastfile.c
605
606 $(BLD)\lread.obj : \
607 $(SRC)\lread.c \
608 $(EMACS_ROOT)\src\s\windowsnt.h \
609 $(EMACS_ROOT)\src\m\intel386.h \
610 $(EMACS_ROOT)\src\config.h \
611 $(EMACS_ROOT)\nt\inc\sys\file.h \
612 $(SRC)\lisp.h \
613 $(SRC)\buffer.h \
614 $(EMACS_ROOT)\src\paths.h \
615 $(SRC)\commands.h \
616 $(SRC)\keyboard.h \
617 $(SRC)\termhooks.h \
618 $(SRC)\msdos.h
619
620 $(BLD)\macros.obj : \
621 $(SRC)\macros.c \
622 $(EMACS_ROOT)\src\s\windowsnt.h \
623 $(EMACS_ROOT)\src\m\intel386.h \
624 $(EMACS_ROOT)\src\config.h \
625 $(SRC)\lisp.h \
626 $(SRC)\macros.h \
627 $(SRC)\commands.h \
628 $(SRC)\buffer.h \
629 $(SRC)\window.h
630
631 $(BLD)\marker.obj : \
632 $(SRC)\marker.c \
633 $(EMACS_ROOT)\src\s\windowsnt.h \
634 $(EMACS_ROOT)\src\m\intel386.h \
635 $(EMACS_ROOT)\src\config.h \
636 $(SRC)\lisp.h \
637 $(SRC)\buffer.h
638
639 $(BLD)\minibuf.obj : \
640 $(SRC)\minibuf.c \
641 $(EMACS_ROOT)\src\s\windowsnt.h \
642 $(EMACS_ROOT)\src\m\intel386.h \
643 $(EMACS_ROOT)\src\config.h \
644 $(SRC)\lisp.h \
645 $(SRC)\commands.h \
646 $(SRC)\buffer.h \
647 $(SRC)\dispextern.h \
648 $(SRC)\frame.h \
649 $(SRC)\window.h \
650 $(SRC)\syntax.h
651
652 $(BLD)\mocklisp.obj : \
653 $(SRC)\mocklisp.c \
654 $(EMACS_ROOT)\src\s\windowsnt.h \
655 $(EMACS_ROOT)\src\m\intel386.h \
656 $(EMACS_ROOT)\src\config.h \
657 $(SRC)\lisp.h \
658 $(SRC)\buffer.h
659
660 $(BLD)\nt.obj : \
661 $(SRC)\nt.c \
662 $(SRC)\s\windowsnt.h \
663 $(SRC)\m\intel386.h \
664 $(SRC)\config.h \
665 $(SRC)\lisp.h \
666 $(EMACS_ROOT)\nt\inc\pwd.h \
667 $(SRC)\ntheap.h
668
669 $(BLD)\ntheap.obj : \
670 $(SRC)\ntheap.c \
671 $(SRC)\ntheap.h
672
673 $(BLD)\ntinevt.obj : \
674 $(SRC)\ntinevt.c \
675 $(SRC)\s\windowsnt.h \
676 $(SRC)\m\intel386.h \
677 $(SRC)\config.h \
678 $(SRC)\lisp.h \
679 $(SRC)\frame.h \
680 $(SRC)\blockinput.h \
681 $(SRC)\termhooks.h
682
683 $(BLD)\ntproc.obj : \
684 $(SRC)\ntproc.c \
685 $(SRC)\s\windowsnt.h \
686 $(SRC)\m\intel386.h \
687 $(SRC)\config.h \
688 $(SRC)\lisp.h \
689 $(SRC)\nt.h \
690 $(SRC)\vmstime.h \
691 $(SRC)\systime.h
692
693 $(BLD)\ntterm.obj : \
694 $(SRC)\ntterm.c \
695 $(SRC)\s\windowsnt.h \
696 $(SRC)\m\intel386.h \
697 $(SRC)\config.h \
698 $(SRC)\lisp.h \
699 $(SRC)\frame.h \
700 $(SRC)\disptab.h \
701 $(SRC)\termhooks.h \
702 $(SRC)\ntinevt.h
703
704 $(BLD)\prefix-args.obj : \
705 $(SRC)\prefix-args.c
706
707 $(BLD)\print.obj : \
708 $(SRC)\print.c \
709 $(EMACS_ROOT)\src\s\windowsnt.h \
710 $(EMACS_ROOT)\src\m\intel386.h \
711 $(EMACS_ROOT)\src\config.h \
712 $(SRC)\lisp.h \
713 $(SRC)\buffer.h \
714 $(SRC)\frame.h \
715 $(SRC)\window.h \
716 $(SRC)\process.h \
717 $(SRC)\termchar.h \
718 $(SRC)\dispextern.h \
719 $(SRC)\intervals.h
720
721 $(BLD)\process.obj : \
722 $(SRC)\process.c \
723 $(EMACS_ROOT)\src\s\windowsnt.h \
724 $(EMACS_ROOT)\src\m\intel386.h \
725 $(EMACS_ROOT)\src\config.h \
726 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
727 $(EMACS_ROOT)\nt\inc\sys\file.h \
728 $(SRC)\systty.h \
729 $(SRC)\window.h \
730 $(SRC)\buffer.h \
731 $(SRC)\process.h \
732 $(SRC)\termhooks.h \
733 $(SRC)\commands.h \
734 $(SRC)\frame.h \
735 $(SRC)\syssignal.h \
736 $(SRC)\vmsproc.h \
737 $(SRC)\syswait.h \
738 $(SRC)\lisp.h \
739 $(SRC)\vmstime.h \
740 $(SRC)\systime.h \
741 $(SRC)\termopts.h
742
743 $(BLD)\ralloc.obj : \
744 $(SRC)\ralloc.c \
745 $(EMACS_ROOT)\src\s\windowsnt.h \
746 $(EMACS_ROOT)\src\m\intel386.h \
747 $(EMACS_ROOT)\src\config.h \
748 $(SRC)\lisp.h \
749 $(SRC)\s\windowsnt.h \
750 $(SRC)\m\intel386.h \
751 $(SRC)\config.h \
752 $(EMACS_ROOT)\nt\inc\sys\param.h \
753 $(SRC)\getpagesize.h
754
755 $(BLD)\regex.obj : \
756 $(SRC)\regex.c \
757 $(EMACS_ROOT)\src\s\windowsnt.h \
758 $(EMACS_ROOT)\src\m\intel386.h \
759 $(EMACS_ROOT)\src\config.h \
760 $(SRC)\s\windowsnt.h \
761 $(SRC)\m\intel386.h \
762 $(SRC)\config.h \
763 $(SRC)\lisp.h \
764 $(SRC)\buffer.h \
765 $(SRC)\syntax.h \
766 $(SRC)\regex.h
767
768 $(BLD)\scroll.obj : \
769 $(SRC)\scroll.c \
770 $(EMACS_ROOT)\src\s\windowsnt.h \
771 $(EMACS_ROOT)\src\m\intel386.h \
772 $(EMACS_ROOT)\src\config.h \
773 $(SRC)\termchar.h \
774 $(SRC)\lisp.h \
775 $(SRC)\dispextern.h \
776 $(SRC)\frame.h
777
778 $(BLD)\search.obj : \
779 $(SRC)\search.c \
780 $(EMACS_ROOT)\src\s\windowsnt.h \
781 $(EMACS_ROOT)\src\m\intel386.h \
782 $(EMACS_ROOT)\src\config.h \
783 $(SRC)\lisp.h \
784 $(SRC)\syntax.h \
785 $(SRC)\buffer.h \
786 $(SRC)\commands.h \
787 $(SRC)\blockinput.h \
788 $(SRC)\regex.h
789
790 $(BLD)\sunfns.obj : \
791 $(SRC)\sunfns.c \
792 $(EMACS_ROOT)\src\s\windowsnt.h \
793 $(EMACS_ROOT)\src\m\intel386.h \
794 $(EMACS_ROOT)\src\config.h \
795 $(SRC)\lisp.h \
796 $(SRC)\window.h \
797 $(SRC)\buffer.h \
798 $(SRC)\termhooks.h
799
800 $(BLD)\syntax.obj : \
801 $(SRC)\syntax.c \
802 $(EMACS_ROOT)\src\s\windowsnt.h \
803 $(EMACS_ROOT)\src\m\intel386.h \
804 $(EMACS_ROOT)\src\config.h \
805 $(SRC)\lisp.h \
806 $(SRC)\commands.h \
807 $(SRC)\buffer.h \
808 $(SRC)\syntax.h
809
810 $(BLD)\sysdep.obj : \
811 $(SRC)\sysdep.c \
812 $(EMACS_ROOT)\src\s\windowsnt.h \
813 $(EMACS_ROOT)\src\m\intel386.h \
814 $(EMACS_ROOT)\src\config.h \
815 $(SRC)\lisp.h \
816 $(SRC)\blockinput.h \
817 $(SRC)\dosfns.h \
818 $(SRC)\msdos.h \
819 $(EMACS_ROOT)\nt\inc\sys\param.h \
820 $(EMACS_ROOT)\nt\inc\sys\file.h \
821 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
822 $(EMACS_ROOT)\nt\inc\sys\file.h \
823 $(SRC)\systty.h \
824 $(SRC)\vmsproc.h \
825 $(SRC)\syswait.h \
826 $(SRC)\frame.h \
827 $(SRC)\window.h \
828 $(SRC)\termhooks.h \
829 $(SRC)\termchar.h \
830 $(SRC)\termopts.h \
831 $(SRC)\dispextern.h \
832 $(SRC)\process.h \
833 $(SRC)\vmsdir.h \
834 $(SRC)\ndir.h \
835 $(SRC)\syssignal.h \
836 $(SRC)\vmstime.h \
837 $(SRC)\systime.h \
838 $(SRC)\uaf.h \
839 $(SRC)\vms-pwd.h \
840 $(EMACS_ROOT)\src\acldef.h \
841 $(EMACS_ROOT)\src\chpdef.h
842
843 $(BLD)\term.obj : \
844 $(SRC)\term.c \
845 $(EMACS_ROOT)\src\s\windowsnt.h \
846 $(EMACS_ROOT)\src\m\intel386.h \
847 $(EMACS_ROOT)\src\config.h \
848 $(SRC)\termchar.h \
849 $(SRC)\termopts.h \
850 $(SRC)\cm.h \
851 $(SRC)\lisp.h \
852 $(SRC)\frame.h \
853 $(SRC)\disptab.h \
854 $(SRC)\termhooks.h \
855 $(SRC)\keyboard.h
856
857 $(BLD)\termcap.obj : \
858 $(SRC)\termcap.c \
859 $(EMACS_ROOT)\src\s\windowsnt.h \
860 $(EMACS_ROOT)\src\m\intel386.h \
861 $(EMACS_ROOT)\src\config.h \
862 $(EMACS_ROOT)\nt\inc\sys\file.h
863
864 $(BLD)\terminfo.obj : \
865 $(SRC)\terminfo.c
866
867 $(BLD)\textprop.obj : \
868 $(SRC)\textprop.c \
869 $(EMACS_ROOT)\src\s\windowsnt.h \
870 $(EMACS_ROOT)\src\m\intel386.h \
871 $(EMACS_ROOT)\src\config.h \
872 $(SRC)\lisp.h \
873 $(SRC)\dispextern.h \
874 $(SRC)\intervals.h \
875 $(SRC)\buffer.h \
876 $(SRC)\window.h
877
878 $(BLD)\tparam.obj : \
879 $(SRC)\tparam.c \
880 $(EMACS_ROOT)\src\s\windowsnt.h \
881 $(EMACS_ROOT)\src\m\intel386.h \
882 $(EMACS_ROOT)\src\config.h
883
884 $(BLD)\undo.obj : \
885 $(SRC)\undo.c \
886 $(EMACS_ROOT)\src\s\windowsnt.h \
887 $(EMACS_ROOT)\src\m\intel386.h \
888 $(EMACS_ROOT)\src\config.h \
889 $(SRC)\lisp.h \
890 $(SRC)\buffer.h \
891 $(SRC)\commands.h
892
893 $(BLD)\unexnt.obj : \
894 $(SRC)\unexnt.c \
895 $(SRC)\ntheap.h
896
897 $(BLD)\widget.obj : \
898 $(SRC)\widget.c \
899 $(EMACS_ROOT)\src\s\windowsnt.h \
900 $(EMACS_ROOT)\src\m\intel386.h \
901 $(EMACS_ROOT)\src\config.h \
902 $(SRC)\lisp.h \
903 $(SRC)\xterm.h \
904 $(SRC)\frame.h \
905 $(SRC)\dispextern.h \
906 $(SRC)\widget.h \
907 $(SRC)\widgetprv.h
908
909 $(BLD)\window.obj : \
910 $(SRC)\window.c \
911 $(EMACS_ROOT)\src\s\windowsnt.h \
912 $(EMACS_ROOT)\src\m\intel386.h \
913 $(EMACS_ROOT)\src\config.h \
914 $(SRC)\lisp.h \
915 $(SRC)\buffer.h \
916 $(SRC)\frame.h \
917 $(SRC)\window.h \
918 $(SRC)\commands.h \
919 $(SRC)\indent.h \
920 $(SRC)\termchar.h \
921 $(SRC)\disptab.h \
922 $(SRC)\keyboard.h
923
924 $(BLD)\xdisp.obj : \
925 $(SRC)\xdisp.c \
926 $(EMACS_ROOT)\src\s\windowsnt.h \
927 $(EMACS_ROOT)\src\m\intel386.h \
928 $(EMACS_ROOT)\src\config.h \
929 $(SRC)\lisp.h \
930 $(SRC)\frame.h \
931 $(SRC)\window.h \
932 $(SRC)\termchar.h \
933 $(SRC)\buffer.h \
934 $(SRC)\indent.h \
935 $(SRC)\commands.h \
936 $(SRC)\macros.h \
937 $(SRC)\disptab.h \
938 $(SRC)\termhooks.h \
939 $(SRC)\dispextern.h \
940 $(SRC)\intervals.h