Fixed calendar-string-spread to allow 0 or 1 string; this simplified several
[emacs.git] / src / makefile.nt
blob20805b5a084ce66b7e16d89ab9d47baec97a3a40
1 #  Makefile for GNU Emacs on Windows NT
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
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.  */
23
24 # Sets up the system dependent macros.
26 !include ..\nt\makefile.def
29 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
30 # the emacs source tree.
32 LOCAL_FLAGS     = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc
34 EMACS           = $(BLD)\emacs.exe
35 TEMACS          = $(BLD)\temacs.exe
36 TLIB1           = $(BLD)\temacs1.lib
37 TLIB2           = $(BLD)\temacs2.lib
38 TOBJ            = $(BLD)\emacs.obj
39 TRES            = $(BLD)\emacs.rbj
41 LINK_FLAGS      = $(ARCH_LDFLAGS) -stack:0x1000000 -base:0xD00000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:console -entry:_start 
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.
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)\mocklisp.obj
79 OBJ2 =  $(BLD)\nt.obj           \
80         $(BLD)\ntheap.obj       \
81         $(BLD)\ntinevt.obj      \
82         $(BLD)\ntproc.obj       \
83         $(BLD)\ntterm.obj       \
84         $(BLD)\print.obj        \
85         $(BLD)\process.obj      \
86         $(BLD)\regex.obj        \
87         $(BLD)\scroll.obj       \
88         $(BLD)\search.obj       \
89         $(BLD)\syntax.obj       \
90         $(BLD)\sysdep.obj       \
91         $(BLD)\term.obj         \
92         $(BLD)\termcap.obj      \
93         $(BLD)\tparam.obj       \
94         $(BLD)\undo.obj         \
95         $(BLD)\unexnt.obj       \
96         $(BLD)\window.obj       \
97         $(BLD)\xdisp.obj        \
98         $(BLD)\casetab.obj      \
99         $(BLD)\floatfns.obj     \
100         $(BLD)\frame.obj        \
101         $(BLD)\gmalloc.obj      \
102         $(BLD)\intervals.obj    \
103         $(BLD)\ralloc.obj       \
104         $(BLD)\textprop.obj     \
105         $(BLD)\vm-limit.obj     \
106         $(BLD)\region-cache.obj \
107         $(BLD)\strftime.obj
109 LIBS =  $(TLIB1)        \
110         $(TLIB2)        \
111         $(BASE_LIBS)    \
112         $(ADVAPI32)     \
113         user32.lib
116 # Build the executable and dump it.
118 all:            $(BLD) $(EMACS) 
121 # Headers we would preprocess if we could.
123 PREPARED_HEADERS = config.h paths.h
124 config.h:       ..\nt\$(CONFIG_H)
125                 $(CP) $** $@
126 paths.h:        ..\nt\paths.h
127                 $(CP) $** $@
130 # Make sure we have the DOC file in the right place.
132 DOC             = obj\etc\DOC-X
133 $(DOC):;        cd ..\lib-src 
134                 - del /q DOC-X
135                 $(MAKE) -f makefile.nt all
136                 cd ..\src
139 # The dumped executable
141 emacs:          $(EMACS)
142 $(EMACS):       $(PREPARED_HEADERS) $(DOC) $(TEMACS)
143 !if "$(OS_TYPE)" == "win95"
144                 move $(BLD)\temacs.exe $(BLD)\emacs.exe
145 !else
146                 cd $(BLD)
147                 temacs.exe -batch -l loadup dump
148                 cd ..\..
149 !endif
152 # The undumped executable
154 temacs:         $(TEMACS)
155 $(TEMACS):      $(BLD) $(TLIB1) $(TLIB2) $(TOBJ) $(TRES)
156                 $(LINK) -out:$(TEMACS) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
159 # The resource file.  NT 3.10 requires the use of cvtres; even though
160 # it is not necessary on later versions, it is still ok to use it.
162 $(TRES):        ..\nt\emacs.rc
163                 $(RC) -i..\nt -Fo$(BLD)\emacs.res $**
164                 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
167 # Build the library.  Split up the build into two phases...otherwise we 
168 # run out of command line space.
170 $(TLIB1):       $(OBJ1)
171                 @- $(AR) -out:$@ $**
172 $(TLIB2):       $(OBJ2)
173                 @- $(AR) -out:$@ $**
176 # Object files.
178 .c{$(BLD)}.obj:
179                 $(CC) $(CFLAGS) -Fo$@ $<
182 # Assuming INSTALL_DIR is defined, build and install emacs in it.
184 install:        all
185                 - mkdir $(INSTALL_DIR)\bin
186                 $(CP) $(EMACS) $(INSTALL_DIR)\bin
189 # Maintenance
191 clean:;         - del /q *~ *.pdb config.h
192                 - $(DEL_TREE) deleted
193                 - $(DEL_TREE) obj
196 # These files are the ones that compile conditionally on CANNOT_DUMP...
197 # this target is mostly used for debugging.
199 cleandump:;     cd $(BLD)
200                 - 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
201                 cd ..\..
204 ### DEPENDENCIES ###
206 EMACS_ROOT      = ..
207 SRC             = .
209 $(BLD)\abbrev.obj : \
210         $(SRC)\abbrev.c \
211         $(EMACS_ROOT)\src\s\windowsnt.h \
212         $(EMACS_ROOT)\src\m\intel386.h \
213         $(EMACS_ROOT)\src\config.h \
214         $(SRC)\lisp.h \
215         $(SRC)\commands.h \
216         $(SRC)\buffer.h \
217         $(SRC)\window.h
219 $(BLD)\alloc.obj : \
220         $(SRC)\alloc.c \
221         $(EMACS_ROOT)\src\s\windowsnt.h \
222         $(EMACS_ROOT)\src\m\intel386.h \
223         $(EMACS_ROOT)\src\config.h \
224         $(SRC)\lisp.h \
225         $(SRC)\dispextern.h \
226         $(SRC)\intervals.h \
227         $(SRC)\puresize.h \
228         $(SRC)\buffer.h \
229         $(SRC)\window.h \
230         $(SRC)\frame.h \
231         $(SRC)\blockinput.h \
232         $(SRC)\syssignal.h
234 $(BLD)\alloca.obj : \
235         $(SRC)\alloca.c \
236         $(EMACS_ROOT)\src\s\windowsnt.h \
237         $(EMACS_ROOT)\src\m\intel386.h \
238         $(EMACS_ROOT)\src\config.h \
239         $(SRC)\s\windowsnt.h \
240         $(SRC)\m\intel386.h \
241         $(SRC)\config.h \
242         $(SRC)\blockinput.h
244 $(BLD)\buffer.obj : \
245         $(SRC)\buffer.c \
246         $(EMACS_ROOT)\nt\inc\sys\param.h \
247         $(EMACS_ROOT)\src\s\windowsnt.h \
248         $(EMACS_ROOT)\src\m\intel386.h \
249         $(EMACS_ROOT)\src\config.h \
250         $(SRC)\lisp.h \
251         $(SRC)\dispextern.h \
252         $(SRC)\intervals.h \
253         $(SRC)\window.h \
254         $(SRC)\commands.h \
255         $(SRC)\buffer.h \
256         $(SRC)\indent.h \
257         $(SRC)\blockinput.h \
258         $(SRC)\region-cache.h
260 $(BLD)\bytecode.obj : \
261         $(SRC)\bytecode.c \
262         $(SRC)\lisp.h \
263         $(SRC)\buffer.h \
264         $(SRC)\syntax.h
266 $(BLD)\callint.obj : \
267         $(SRC)\callint.c \
268         $(SRC)\lisp.h \
269         $(SRC)\buffer.h \
270         $(SRC)\commands.h \
271         $(SRC)\keyboard.h \
272         $(SRC)\window.h \
273         $(SRC)\mocklisp.h
275 $(BLD)\callproc.obj : \
276         $(SRC)\callproc.c \
277         $(EMACS_ROOT)\src\s\windowsnt.h \
278         $(EMACS_ROOT)\src\m\intel386.h \
279         $(EMACS_ROOT)\src\config.h \
280         $(SRC)\msdos.h \
281         $(EMACS_ROOT)\nt\inc\sys\param.h \
282         $(SRC)\lisp.h \
283         $(SRC)\commands.h \
284         $(SRC)\buffer.h \
285         $(SRC)\process.h \
286         $(SRC)\syssignal.h \
287         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
288         $(EMACS_ROOT)\nt\inc\sys\file.h \
289         $(SRC)\systty.h
291 $(BLD)\casefiddle.obj : \
292         $(SRC)\casefiddle.c \
293         $(EMACS_ROOT)\src\s\windowsnt.h \
294         $(EMACS_ROOT)\src\m\intel386.h \
295         $(EMACS_ROOT)\src\config.h \
296         $(SRC)\lisp.h \
297         $(SRC)\buffer.h \
298         $(SRC)\commands.h \
299         $(SRC)\syntax.h
300         $(CC) $(CFLAGS) -Fo$@ casefiddle.c
302 $(BLD)\casetab.obj : \
303         $(SRC)\casetab.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)\buffer.h
310 $(BLD)\cm.obj : \
311         $(SRC)\cm.c \
312         $(EMACS_ROOT)\src\s\windowsnt.h \
313         $(EMACS_ROOT)\src\m\intel386.h \
314         $(EMACS_ROOT)\src\config.h \
315         $(SRC)\cm.h \
316         $(SRC)\termhooks.h
318 $(BLD)\cmds.obj : \
319         $(SRC)\cmds.c \
320         $(EMACS_ROOT)\src\s\windowsnt.h \
321         $(EMACS_ROOT)\src\m\intel386.h \
322         $(EMACS_ROOT)\src\config.h \
323         $(SRC)\lisp.h \
324         $(SRC)\commands.h \
325         $(SRC)\buffer.h \
326         $(SRC)\syntax.h
328 $(BLD)\data.obj : \
329         $(SRC)\data.c \
330         $(EMACS_ROOT)\src\s\windowsnt.h \
331         $(EMACS_ROOT)\src\m\intel386.h \
332         $(EMACS_ROOT)\src\config.h \
333         $(SRC)\lisp.h \
334         $(SRC)\puresize.h \
335         $(SRC)\buffer.h \
336         $(SRC)\syssignal.h
338 $(BLD)\dired.obj : \
339         $(SRC)\dired.c \
340         $(EMACS_ROOT)\src\s\windowsnt.h \
341         $(EMACS_ROOT)\src\m\intel386.h \
342         $(EMACS_ROOT)\src\config.h \
343         $(SRC)\vmsdir.h \
344         $(SRC)\ndir.h \
345         $(SRC)\lisp.h \
346         $(SRC)\buffer.h \
347         $(SRC)\commands.h \
348         $(SRC)\regex.h
350 $(BLD)\dispnew.obj : \
351         $(SRC)\dispnew.c \
352         $(EMACS_ROOT)\src\s\windowsnt.h \
353         $(EMACS_ROOT)\src\m\intel386.h \
354         $(EMACS_ROOT)\src\config.h \
355         $(SRC)\lisp.h \
356         $(SRC)\termchar.h \
357         $(SRC)\termopts.h \
358         $(SRC)\termhooks.h \
359         $(SRC)\cm.h \
360         $(SRC)\buffer.h \
361         $(SRC)\frame.h \
362         $(SRC)\window.h \
363         $(SRC)\commands.h \
364         $(SRC)\disptab.h \
365         $(SRC)\indent.h \
366         $(SRC)\dispextern.h \
367         $(SRC)\intervals.h \
368         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
369         $(EMACS_ROOT)\nt\inc\sys\file.h \
370         $(SRC)\systty.h \
371         $(SRC)\xterm.h \
372         $(SRC)\vmstime.h \
373         $(SRC)\systime.h
375 $(BLD)\doc.obj : \
376         $(SRC)\doc.c \
377         $(EMACS_ROOT)\src\s\windowsnt.h \
378         $(EMACS_ROOT)\src\m\intel386.h \
379         $(EMACS_ROOT)\src\config.h \
380         $(EMACS_ROOT)\nt\inc\sys\file.h \
381         $(SRC)\lisp.h \
382         $(SRC)\buffer.h \
383         $(SRC)\keyboard.h
385 $(BLD)\doprnt.obj : \
386         $(SRC)\doprnt.c \
387         $(EMACS_ROOT)\src\s\windowsnt.h \
388         $(EMACS_ROOT)\src\m\intel386.h \
389         $(EMACS_ROOT)\src\config.h
391 $(BLD)\dosfns.obj : \
392         $(SRC)\dosfns.c \
393         $(EMACS_ROOT)\src\s\windowsnt.h \
394         $(EMACS_ROOT)\src\m\intel386.h \
395         $(EMACS_ROOT)\src\config.h \
396         $(SRC)\lisp.h \
397         $(SRC)\buffer.h \
398         $(SRC)\termchar.h \
399         $(SRC)\termhooks.h \
400         $(SRC)\frame.h \
401         $(SRC)\dosfns.h \
402         $(SRC)\msdos.h
404 $(BLD)\editfns.obj : \
405         $(SRC)\editfns.c \
406         $(EMACS_ROOT)\src\s\windowsnt.h \
407         $(EMACS_ROOT)\src\m\intel386.h \
408         $(EMACS_ROOT)\src\config.h \
409         $(SRC)\uaf.h \
410         $(SRC)\vms-pwd.h \
411         $(EMACS_ROOT)\nt\inc\pwd.h \
412         $(SRC)\lisp.h \
413         $(SRC)\dispextern.h \
414         $(SRC)\intervals.h \
415         $(SRC)\buffer.h \
416         $(SRC)\window.h \
417         $(SRC)\vmstime.h \
418         $(SRC)\systime.h
420 $(BLD)\emacs.obj : \
421         $(SRC)\emacs.c \
422         $(EMACS_ROOT)\src\s\windowsnt.h \
423         $(EMACS_ROOT)\src\m\intel386.h \
424         $(EMACS_ROOT)\src\config.h \
425         $(SRC)\lisp.h \
426         $(SRC)\commands.h \
427         $(SRC)\dispextern.h \
428         $(SRC)\intervals.h \
429         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
430         $(EMACS_ROOT)\nt\inc\sys\file.h \
431         $(SRC)\systty.h \
432         $(SRC)\syssignal.h \
433         $(SRC)\process.h
435 $(BLD)\eval.obj : \
436         $(SRC)\eval.c \
437         $(EMACS_ROOT)\src\s\windowsnt.h \
438         $(EMACS_ROOT)\src\m\intel386.h \
439         $(EMACS_ROOT)\src\config.h \
440         $(SRC)\lisp.h \
441         $(SRC)\blockinput.h \
442         $(SRC)\commands.h \
443         $(SRC)\keyboard.h
445 $(BLD)\fileio.obj : \
446         $(SRC)\fileio.c \
447         $(EMACS_ROOT)\src\s\windowsnt.h \
448         $(EMACS_ROOT)\src\m\intel386.h \
449         $(EMACS_ROOT)\src\config.h \
450         $(SRC)\uaf.h \
451         $(SRC)\vms-pwd.h \
452         $(EMACS_ROOT)\nt\inc\pwd.h \
453         $(SRC)\msdos.h \
454         $(EMACS_ROOT)\nt\inc\sys\param.h \
455         $(SRC)\vmsdir.h \
456         $(SRC)\lisp.h \
457         $(SRC)\dispextern.h \
458         $(SRC)\intervals.h \
459         $(SRC)\buffer.h \
460         $(SRC)\window.h \
461         $(EMACS_ROOT)\nt\inc\sys\file.h \
462         $(SRC)\vmstime.h \
463         $(SRC)\systime.h
465 $(BLD)\filelock.obj : \
466         $(SRC)\filelock.c \
467         $(EMACS_ROOT)\src\s\windowsnt.h \
468         $(EMACS_ROOT)\src\m\intel386.h \
469         $(EMACS_ROOT)\src\config.h \
470         $(SRC)\uaf.h \
471         $(SRC)\vms-pwd.h \
472         $(EMACS_ROOT)\nt\inc\pwd.h \
473         $(EMACS_ROOT)\nt\inc\sys\file.h \
474         $(SRC)\lisp.h \
475         $(EMACS_ROOT)\src\paths.h \
476         $(SRC)\buffer.h \
477         $(SRC)\vmsdir.h \
478         $(SRC)\ndir.h
480 $(BLD)\filemode.obj : \
481         $(SRC)\filemode.c \
482         $(EMACS_ROOT)\src\s\windowsnt.h \
483         $(EMACS_ROOT)\src\m\intel386.h \
484         $(EMACS_ROOT)\src\config.h \
485         $(SRC)\s\windowsnt.h \
486         $(SRC)\m\intel386.h \
487         $(SRC)\config.h
489 $(BLD)\floatfns.obj : \
490         $(SRC)\floatfns.c \
491         $(EMACS_ROOT)\src\s\windowsnt.h \
492         $(EMACS_ROOT)\src\m\intel386.h \
493         $(EMACS_ROOT)\src\config.h \
494         $(SRC)\lisp.h \
495         $(SRC)\syssignal.h
497 $(BLD)\fns.obj : \
498         $(SRC)\fns.c \
499         $(EMACS_ROOT)\src\s\windowsnt.h \
500         $(EMACS_ROOT)\src\m\intel386.h \
501         $(EMACS_ROOT)\src\config.h \
502         $(SRC)\lisp.h \
503         $(SRC)\commands.h \
504         $(SRC)\buffer.h \
505         $(SRC)\keyboard.h \
506         $(SRC)\dispextern.h \
507         $(SRC)\intervals.h
509 $(BLD)\frame.obj : \
510         $(SRC)\frame.c \
511         $(EMACS_ROOT)\src\s\windowsnt.h \
512         $(EMACS_ROOT)\src\m\intel386.h \
513         $(EMACS_ROOT)\src\config.h \
514         $(SRC)\lisp.h \
515         $(SRC)\frame.h \
516         $(SRC)\termhooks.h \
517         $(SRC)\window.h \
518         $(SRC)\buffer.h \
519         $(SRC)\commands.h \
520         $(SRC)\keyboard.h
522 $(BLD)\getloadavg.obj : \
523         $(SRC)\getloadavg.c \
524         $(EMACS_ROOT)\nt\inc\sys\param.h \
525         $(EMACS_ROOT)\src\s\windowsnt.h \
526         $(EMACS_ROOT)\src\m\intel386.h \
527         $(EMACS_ROOT)\src\config.h \
528         $(SRC)\s\windowsnt.h \
529         $(SRC)\m\intel386.h \
530         $(SRC)\config.h \
531         $(EMACS_ROOT)\nt\inc\sys\file.h
533 $(BLD)\gmalloc.obj : \
534         $(SRC)\gmalloc.c \
535         $(EMACS_ROOT)\src\s\windowsnt.h \
536         $(EMACS_ROOT)\src\m\intel386.h \
537         $(EMACS_ROOT)\src\config.h \
538         $(EMACS_ROOT)\nt\inc\sys\param.h \
539         $(SRC)\getpagesize.h
540         $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
542 $(BLD)\hftctl.obj : \
543         $(SRC)\hftctl.c \
544         $(EMACS_ROOT)\src\s\windowsnt.h \
545         $(EMACS_ROOT)\src\m\intel386.h \
546         $(EMACS_ROOT)\src\config.h \
547         $(EMACS_ROOT)\nt\inc\sys\ioctl.h
549 $(BLD)\indent.obj : \
550         $(SRC)\indent.c \
551         $(EMACS_ROOT)\src\s\windowsnt.h \
552         $(EMACS_ROOT)\src\m\intel386.h \
553         $(EMACS_ROOT)\src\config.h \
554         $(SRC)\lisp.h \
555         $(SRC)\buffer.h \
556         $(SRC)\indent.h \
557         $(SRC)\frame.h \
558         $(SRC)\window.h \
559         $(SRC)\termchar.h \
560         $(SRC)\termopts.h \
561         $(SRC)\disptab.h \
562         $(SRC)\dispextern.h \
563         $(SRC)\intervals.h \
564         $(SRC)\region-cache.h
566 $(BLD)\insdel.obj : \
567         $(SRC)\insdel.c \
568         $(EMACS_ROOT)\src\s\windowsnt.h \
569         $(EMACS_ROOT)\src\m\intel386.h \
570         $(EMACS_ROOT)\src\config.h \
571         $(SRC)\lisp.h \
572         $(SRC)\dispextern.h \
573         $(SRC)\intervals.h \
574         $(SRC)\buffer.h \
575         $(SRC)\window.h \
576         $(SRC)\blockinput.h
578 $(BLD)\intervals.obj : \
579         $(SRC)\intervals.c \
580         $(EMACS_ROOT)\src\s\windowsnt.h \
581         $(EMACS_ROOT)\src\m\intel386.h \
582         $(EMACS_ROOT)\src\config.h \
583         $(SRC)\lisp.h \
584         $(SRC)\dispextern.h \
585         $(SRC)\intervals.h \
586         $(SRC)\buffer.h \
587         $(SRC)\puresize.h
588         $(CC) $(CFLAGS) -Fo$@ intervals.c
590 $(BLD)\keyboard.obj : \
591         $(SRC)\keyboard.c \
592         $(EMACS_ROOT)\src\s\windowsnt.h \
593         $(EMACS_ROOT)\src\m\intel386.h \
594         $(EMACS_ROOT)\src\config.h \
595         $(SRC)\termchar.h \
596         $(SRC)\termopts.h \
597         $(SRC)\lisp.h \
598         $(SRC)\termhooks.h \
599         $(SRC)\macros.h \
600         $(SRC)\frame.h \
601         $(SRC)\window.h \
602         $(SRC)\commands.h \
603         $(SRC)\buffer.h \
604         $(SRC)\disptab.h \
605         $(SRC)\keyboard.h \
606         $(SRC)\dispextern.h \
607         $(SRC)\intervals.h \
608         $(SRC)\blockinput.h \
609         $(SRC)\msdos.h \
610         $(SRC)\syssignal.h \
611         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
612         $(EMACS_ROOT)\nt\inc\sys\file.h \
613         $(SRC)\systty.h \
614         $(SRC)\xterm.h \
615         $(SRC)\vmstime.h \
616         $(SRC)\systime.h
618 $(BLD)\keymap.obj : \
619         $(SRC)\keymap.c \
620         $(EMACS_ROOT)\src\s\windowsnt.h \
621         $(EMACS_ROOT)\src\m\intel386.h \
622         $(EMACS_ROOT)\src\config.h \
623         $(SRC)\lisp.h \
624         $(SRC)\commands.h \
625         $(SRC)\buffer.h \
626         $(SRC)\keyboard.h \
627         $(SRC)\termhooks.h \
628         $(SRC)\blockinput.h
630 $(BLD)\lastfile.obj : \
631         $(SRC)\lastfile.c
633 $(BLD)\lread.obj : \
634         $(SRC)\lread.c \
635         $(EMACS_ROOT)\src\s\windowsnt.h \
636         $(EMACS_ROOT)\src\m\intel386.h \
637         $(EMACS_ROOT)\src\config.h \
638         $(EMACS_ROOT)\nt\inc\sys\file.h \
639         $(SRC)\lisp.h \
640         $(SRC)\buffer.h \
641         $(EMACS_ROOT)\src\paths.h \
642         $(SRC)\commands.h \
643         $(SRC)\keyboard.h \
644         $(SRC)\termhooks.h \
645         $(SRC)\msdos.h
647 $(BLD)\macros.obj : \
648         $(SRC)\macros.c \
649         $(EMACS_ROOT)\src\s\windowsnt.h \
650         $(EMACS_ROOT)\src\m\intel386.h \
651         $(EMACS_ROOT)\src\config.h \
652         $(SRC)\lisp.h \
653         $(SRC)\macros.h \
654         $(SRC)\commands.h \
655         $(SRC)\buffer.h \
656         $(SRC)\window.h
658 $(BLD)\marker.obj : \
659         $(SRC)\marker.c \
660         $(EMACS_ROOT)\src\s\windowsnt.h \
661         $(EMACS_ROOT)\src\m\intel386.h \
662         $(EMACS_ROOT)\src\config.h \
663         $(SRC)\lisp.h \
664         $(SRC)\buffer.h
666 $(BLD)\minibuf.obj : \
667         $(SRC)\minibuf.c \
668         $(EMACS_ROOT)\src\s\windowsnt.h \
669         $(EMACS_ROOT)\src\m\intel386.h \
670         $(EMACS_ROOT)\src\config.h \
671         $(SRC)\lisp.h \
672         $(SRC)\commands.h \
673         $(SRC)\buffer.h \
674         $(SRC)\dispextern.h \
675         $(SRC)\frame.h \
676         $(SRC)\window.h \
677         $(SRC)\syntax.h
679 $(BLD)\mocklisp.obj : \
680         $(SRC)\mocklisp.c \
681         $(EMACS_ROOT)\src\s\windowsnt.h \
682         $(EMACS_ROOT)\src\m\intel386.h \
683         $(EMACS_ROOT)\src\config.h \
684         $(SRC)\lisp.h \
685         $(SRC)\buffer.h
687 $(BLD)\nt.obj : \
688         $(SRC)\nt.c \
689         $(SRC)\s\windowsnt.h \
690         $(SRC)\m\intel386.h \
691         $(SRC)\config.h \
692         $(SRC)\lisp.h \
693         $(EMACS_ROOT)\nt\inc\pwd.h \
694         $(SRC)\ntheap.h
696 $(BLD)\ntheap.obj : \
697         $(SRC)\ntheap.c \
698         $(SRC)\ntheap.h
700 $(BLD)\ntinevt.obj : \
701         $(SRC)\ntinevt.c \
702         $(SRC)\s\windowsnt.h \
703         $(SRC)\m\intel386.h \
704         $(SRC)\config.h \
705         $(SRC)\lisp.h \
706         $(SRC)\frame.h \
707         $(SRC)\blockinput.h \
708         $(SRC)\termhooks.h
710 $(BLD)\ntproc.obj : \
711         $(SRC)\ntproc.c \
712         $(SRC)\s\windowsnt.h \
713         $(SRC)\m\intel386.h \
714         $(SRC)\config.h \
715         $(SRC)\lisp.h \
716         $(SRC)\nt.h \
717         $(SRC)\vmstime.h \
718         $(SRC)\systime.h
720 $(BLD)\ntterm.obj : \
721         $(SRC)\ntterm.c \
722         $(SRC)\s\windowsnt.h \
723         $(SRC)\m\intel386.h \
724         $(SRC)\config.h \
725         $(SRC)\lisp.h \
726         $(SRC)\frame.h \
727         $(SRC)\disptab.h \
728         $(SRC)\termhooks.h \
729         $(SRC)\ntinevt.h
731 $(BLD)\prefix-args.obj : \
732         $(SRC)\prefix-args.c
734 $(BLD)\print.obj : \
735         $(SRC)\print.c \
736         $(EMACS_ROOT)\src\s\windowsnt.h \
737         $(EMACS_ROOT)\src\m\intel386.h \
738         $(EMACS_ROOT)\src\config.h \
739         $(SRC)\lisp.h \
740         $(SRC)\buffer.h \
741         $(SRC)\frame.h \
742         $(SRC)\window.h \
743         $(SRC)\process.h \
744         $(SRC)\termchar.h \
745         $(SRC)\dispextern.h \
746         $(SRC)\intervals.h
748 $(BLD)\process.obj : \
749         $(SRC)\process.c \
750         $(EMACS_ROOT)\src\s\windowsnt.h \
751         $(EMACS_ROOT)\src\m\intel386.h \
752         $(EMACS_ROOT)\src\config.h \
753         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
754         $(EMACS_ROOT)\nt\inc\sys\file.h \
755         $(SRC)\systty.h \
756         $(SRC)\window.h \
757         $(SRC)\buffer.h \
758         $(SRC)\process.h \
759         $(SRC)\termhooks.h \
760         $(SRC)\commands.h \
761         $(SRC)\frame.h \
762         $(SRC)\syssignal.h \
763         $(SRC)\vmsproc.h \
764         $(SRC)\syswait.h \
765         $(SRC)\lisp.h \
766         $(SRC)\vmstime.h \
767         $(SRC)\systime.h \
768         $(SRC)\termopts.h
770 $(BLD)\ralloc.obj : \
771         $(SRC)\ralloc.c \
772         $(EMACS_ROOT)\src\s\windowsnt.h \
773         $(EMACS_ROOT)\src\m\intel386.h \
774         $(EMACS_ROOT)\src\config.h \
775         $(SRC)\lisp.h \
776         $(SRC)\s\windowsnt.h \
777         $(SRC)\m\intel386.h \
778         $(SRC)\config.h \
779         $(EMACS_ROOT)\nt\inc\sys\param.h \
780         $(SRC)\getpagesize.h
782 $(BLD)\regex.obj : \
783         $(SRC)\regex.c \
784         $(EMACS_ROOT)\src\s\windowsnt.h \
785         $(EMACS_ROOT)\src\m\intel386.h \
786         $(EMACS_ROOT)\src\config.h \
787         $(SRC)\s\windowsnt.h \
788         $(SRC)\m\intel386.h \
789         $(SRC)\config.h \
790         $(SRC)\lisp.h \
791         $(SRC)\buffer.h \
792         $(SRC)\syntax.h \
793         $(SRC)\regex.h
795 $(BLD)\region-cache.obj : \
796         $(SRC)\region-cache.c \
797         $(EMACS_ROOT)\src\s\windowsnt.h \
798         $(EMACS_ROOT)\src\m\intel386.h \
799         $(EMACS_ROOT)\src\config.h \
800         $(SRC)\lisp.h \
801         $(SRC)\buffer.h \
802         $(SRC)\region-cache.h
804 $(BLD)\scroll.obj : \
805         $(SRC)\scroll.c \
806         $(EMACS_ROOT)\src\s\windowsnt.h \
807         $(EMACS_ROOT)\src\m\intel386.h \
808         $(EMACS_ROOT)\src\config.h \
809         $(SRC)\termchar.h \
810         $(SRC)\lisp.h \
811         $(SRC)\dispextern.h \
812         $(SRC)\frame.h
814 $(BLD)\search.obj : \
815         $(SRC)\search.c \
816         $(EMACS_ROOT)\src\s\windowsnt.h \
817         $(EMACS_ROOT)\src\m\intel386.h \
818         $(EMACS_ROOT)\src\config.h \
819         $(SRC)\lisp.h \
820         $(SRC)\syntax.h \
821         $(SRC)\buffer.h \
822         $(SRC)\commands.h \
823         $(SRC)\blockinput.h \
824         $(SRC)\regex.h \
825         $(SRC)\region-cache.h
827 $(BLD)\strftime.obj : \
828         $(SRC)\strftime.c \
829         $(EMACS_ROOT)\src\s\windowsnt.h \
830         $(EMACS_ROOT)\src\m\intel386.h \
831         $(EMACS_ROOT)\src\config.h
832         $(CC) $(CFLAGS) -Dstrftime=emacs_strftime -Fo$@ strftime.c
834 $(BLD)\sunfns.obj : \
835         $(SRC)\sunfns.c \
836         $(EMACS_ROOT)\src\s\windowsnt.h \
837         $(EMACS_ROOT)\src\m\intel386.h \
838         $(EMACS_ROOT)\src\config.h \
839         $(SRC)\lisp.h \
840         $(SRC)\window.h \
841         $(SRC)\buffer.h \
842         $(SRC)\termhooks.h
844 $(BLD)\syntax.obj : \
845         $(SRC)\syntax.c \
846         $(EMACS_ROOT)\src\s\windowsnt.h \
847         $(EMACS_ROOT)\src\m\intel386.h \
848         $(EMACS_ROOT)\src\config.h \
849         $(SRC)\lisp.h \
850         $(SRC)\commands.h \
851         $(SRC)\buffer.h \
852         $(SRC)\syntax.h
854 $(BLD)\sysdep.obj : \
855         $(SRC)\sysdep.c \
856         $(EMACS_ROOT)\src\s\windowsnt.h \
857         $(EMACS_ROOT)\src\m\intel386.h \
858         $(EMACS_ROOT)\src\config.h \
859         $(SRC)\lisp.h \
860         $(SRC)\blockinput.h \
861         $(SRC)\dosfns.h \
862         $(SRC)\msdos.h \
863         $(EMACS_ROOT)\nt\inc\sys\param.h \
864         $(EMACS_ROOT)\nt\inc\sys\file.h \
865         $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
866         $(EMACS_ROOT)\nt\inc\sys\file.h \
867         $(SRC)\systty.h \
868         $(SRC)\vmsproc.h \
869         $(SRC)\syswait.h \
870         $(SRC)\frame.h \
871         $(SRC)\window.h \
872         $(SRC)\termhooks.h \
873         $(SRC)\termchar.h \
874         $(SRC)\termopts.h \
875         $(SRC)\dispextern.h \
876         $(SRC)\process.h \
877         $(SRC)\vmsdir.h \
878         $(SRC)\ndir.h \
879         $(SRC)\syssignal.h \
880         $(SRC)\vmstime.h \
881         $(SRC)\systime.h \
882         $(SRC)\uaf.h \
883         $(SRC)\vms-pwd.h \
884         $(EMACS_ROOT)\src\acldef.h \
885         $(EMACS_ROOT)\src\chpdef.h
887 $(BLD)\term.obj : \
888         $(SRC)\term.c \
889         $(EMACS_ROOT)\src\s\windowsnt.h \
890         $(EMACS_ROOT)\src\m\intel386.h \
891         $(EMACS_ROOT)\src\config.h \
892         $(SRC)\termchar.h \
893         $(SRC)\termopts.h \
894         $(SRC)\cm.h \
895         $(SRC)\lisp.h \
896         $(SRC)\frame.h \
897         $(SRC)\disptab.h \
898         $(SRC)\termhooks.h \
899         $(SRC)\keyboard.h
901 $(BLD)\termcap.obj : \
902         $(SRC)\termcap.c \
903         $(EMACS_ROOT)\src\s\windowsnt.h \
904         $(EMACS_ROOT)\src\m\intel386.h \
905         $(EMACS_ROOT)\src\config.h \
906         $(EMACS_ROOT)\nt\inc\sys\file.h
908 $(BLD)\terminfo.obj : \
909         $(SRC)\terminfo.c
911 $(BLD)\textprop.obj : \
912         $(SRC)\textprop.c \
913         $(EMACS_ROOT)\src\s\windowsnt.h \
914         $(EMACS_ROOT)\src\m\intel386.h \
915         $(EMACS_ROOT)\src\config.h \
916         $(SRC)\lisp.h \
917         $(SRC)\dispextern.h \
918         $(SRC)\intervals.h \
919         $(SRC)\buffer.h \
920         $(SRC)\window.h
922 $(BLD)\tparam.obj : \
923         $(SRC)\tparam.c \
924         $(EMACS_ROOT)\src\s\windowsnt.h \
925         $(EMACS_ROOT)\src\m\intel386.h \
926         $(EMACS_ROOT)\src\config.h
928 $(BLD)\undo.obj : \
929         $(SRC)\undo.c \
930         $(EMACS_ROOT)\src\s\windowsnt.h \
931         $(EMACS_ROOT)\src\m\intel386.h \
932         $(EMACS_ROOT)\src\config.h \
933         $(SRC)\lisp.h \
934         $(SRC)\buffer.h \
935         $(SRC)\commands.h
937 $(BLD)\unexnt.obj : \
938         $(SRC)\unexnt.c \
939         $(SRC)\ntheap.h
941 $(BLD)\vm-limit.obj : \
942         $(SRC)\vm-limit.c \
943         $(EMACS_ROOT)\src\s\windowsnt.h \
944         $(EMACS_ROOT)\src\m\intel386.h \
945         $(EMACS_ROOT)\src\config.h \
946         $(SRC)\mem-limits.h     
948 $(BLD)\widget.obj : \
949         $(SRC)\widget.c \
950         $(EMACS_ROOT)\src\s\windowsnt.h \
951         $(EMACS_ROOT)\src\m\intel386.h \
952         $(EMACS_ROOT)\src\config.h \
953         $(SRC)\lisp.h \
954         $(SRC)\xterm.h \
955         $(SRC)\frame.h \
956         $(SRC)\dispextern.h \
957         $(SRC)\widget.h \
958         $(SRC)\widgetprv.h
960 $(BLD)\window.obj : \
961         $(SRC)\window.c \
962         $(EMACS_ROOT)\src\s\windowsnt.h \
963         $(EMACS_ROOT)\src\m\intel386.h \
964         $(EMACS_ROOT)\src\config.h \
965         $(SRC)\lisp.h \
966         $(SRC)\buffer.h \
967         $(SRC)\frame.h \
968         $(SRC)\window.h \
969         $(SRC)\commands.h \
970         $(SRC)\indent.h \
971         $(SRC)\termchar.h \
972         $(SRC)\disptab.h \
973         $(SRC)\keyboard.h
975 $(BLD)\xdisp.obj : \
976         $(SRC)\xdisp.c \
977         $(EMACS_ROOT)\src\s\windowsnt.h \
978         $(EMACS_ROOT)\src\m\intel386.h \
979         $(EMACS_ROOT)\src\config.h \
980         $(SRC)\lisp.h \
981         $(SRC)\frame.h \
982         $(SRC)\window.h \
983         $(SRC)\termchar.h \
984         $(SRC)\buffer.h \
985         $(SRC)\indent.h \
986         $(SRC)\commands.h \
987         $(SRC)\macros.h \
988         $(SRC)\disptab.h \
989         $(SRC)\termhooks.h \
990         $(SRC)\dispextern.h \
991         $(SRC)\intervals.h