(XSETTYPE): Remove.
[emacs.git] / src / makefile.w32-in
blobc8e9addff6362808ba88ff0ef9ce36378d0352f7
1 #  Makefile for GNU Emacs on the Microsoft W32 API.
2 #  Copyright (c) 2000-2001 Free Software Foundation, Inc.
4 #  This file is part of GNU Emacs.
6 #  GNU Emacs is free software; you can redistribute it and/or modify
7 #  it under the terms of the GNU General Public License as published by
8 #  the Free Software Foundation; either version 2, or (at your option)
9 #  any later version.
11 #  GNU Emacs is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU General Public License for more details.
16 #  You should have received a copy of the GNU General Public License
17 #  along with GNU Emacs; see the file COPYING.  If not, write to the
18 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 #  Boston, MA 02111-1307, USA.
22 ALL = emacs
24 .PHONY: $(ALL)
26 # Set EMACSLOADPATH correctly (in case already defined in environment).
27 EMACSLOADPATH=$(CURDIR)/../lisp
30 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
31 # the emacs source tree.
33 LOCAL_FLAGS     = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
35 EMACS           = $(BLD)/emacs.exe
36 TEMACS          = $(BLD)/temacs.exe
37 TEMACS_TMP      = $(BLD)/temacs.bin
38 TLIB0           = $(BLD)/temacs0.$(A)
39 TLIB1           = $(BLD)/temacs1.$(A)
40 TLIBW32         = $(BLD)/temacw32.$(A)
41 TOBJ            = $(BLD)/firstfile.$(O)
42 TRES            = $(BLD)/emacs.res
43 TLASTLIB        = $(BLD)/lastfile.$(A)
45 FULL_LINK_FLAGS      = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
48 # Split up the objects into two sets so that we don't run out of
49 # command line space when we link them into a library.
51 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
52 # as the "main" object file when linking.
54 OBJ0 =  $(BLD)/emacs.$(O)
56 OBJ1 =  $(BLD)/abbrev.$(O)                      \
57         $(BLD)/alloc.$(O)                       \
58         $(BLD)/atimer.$(O)                      \
59         $(BLD)/buffer.$(O)                      \
60         $(BLD)/bytecode.$(O)                    \
61         $(BLD)/callint.$(O)                     \
62         $(BLD)/callproc.$(O)                    \
63         $(BLD)/casefiddle.$(O)                  \
64         $(BLD)/cm.$(O)                          \
65         $(BLD)/cmds.$(O)                        \
66         $(BLD)/data.$(O)                        \
67         $(BLD)/dired.$(O)                       \
68         $(BLD)/dispnew.$(O)                     \
69         $(BLD)/doc.$(O)                         \
70         $(BLD)/doprnt.$(O)                      \
71         $(BLD)/editfns.$(O)                     \
72         $(BLD)/eval.$(O)                        \
73         $(BLD)/fileio.$(O)                      \
74         $(BLD)/filelock.$(O)                    \
75         $(BLD)/filemode.$(O)                    \
76         $(BLD)/fns.$(O)                         \
77         $(BLD)/indent.$(O)                      \
78         $(BLD)/insdel.$(O)                      \
79         $(BLD)/keyboard.$(O)                    \
80         $(BLD)/keymap.$(O)                      \
81         $(BLD)/lread.$(O)                       \
82         $(BLD)/macros.$(O)                      \
83         $(BLD)/marker.$(O)                      \
84         $(BLD)/md5.$(O)                         \
85         $(BLD)/minibuf.$(O)                     \
86         $(BLD)/w32.$(O)                         \
87         $(BLD)/w32heap.$(O)                     \
88         $(BLD)/w32inevt.$(O)                    \
89         $(BLD)/w32proc.$(O)                     \
90         $(BLD)/w32console.$(O)                  \
91         $(BLD)/print.$(O)                       \
92         $(BLD)/process.$(O)                     \
93         $(BLD)/regex.$(O)                       \
94         $(BLD)/scroll.$(O)                      \
95         $(BLD)/search.$(O)                      \
96         $(BLD)/sound.$(O)                       \
97         $(BLD)/syntax.$(O)                      \
98         $(BLD)/sysdep.$(O)                      \
99         $(BLD)/term.$(O)                        \
100         $(BLD)/termcap.$(O)                     \
101         $(BLD)/tparam.$(O)                      \
102         $(BLD)/undo.$(O)                        \
103         $(BLD)/unexw32.$(O)                     \
104         $(BLD)/window.$(O)                      \
105         $(BLD)/xdisp.$(O)                       \
106         $(BLD)/casetab.$(O)                     \
107         $(BLD)/floatfns.$(O)                    \
108         $(BLD)/frame.$(O)                       \
109         $(BLD)/gmalloc.$(O)                     \
110         $(BLD)/intervals.$(O)                   \
111         $(BLD)/composite.$(O)                   \
112         $(BLD)/ralloc.$(O)                      \
113         $(BLD)/textprop.$(O)                    \
114         $(BLD)/vm-limit.$(O)                    \
115         $(BLD)/region-cache.$(O)                \
116         $(BLD)/strftime.$(O)                    \
117         $(BLD)/charset.$(O)                     \
118         $(BLD)/coding.$(O)                      \
119         $(BLD)/category.$(O)                    \
120         $(BLD)/ccl.$(O)                         \
121         $(BLD)/fontset.$(O)
123 WIN32OBJ = $(BLD)/w32term.$(O)                  \
124            $(BLD)/w32xfns.$(O)                  \
125            $(BLD)/w32fns.$(O)                   \
126            $(BLD)/xfaces.$(O)                   \
127            $(BLD)/w32select.$(O)                \
128            $(BLD)/w32menu.$(O)                  \
129            $(BLD)/w32reg.$(O)                   \
130            $(BLD)/w32bdf.$(O)
132 LIBS =  $(TLIB0)        \
133         $(TLIB1)        \
134         $(TLIBW32)      \
135         $(TLASTLIB)     \
136         $(WINMM)    \
137         $(ADVAPI32)     \
138         $(GDI32)        \
139         $(COMDLG32)     \
140         $(USER32)       \
141         $(MPR)          \
142         $(SHELL32)      \
143         $(libc)
146 # Build the executable and dump it.
148 all:            $(ALL)
151 # The dumped executable
153 emacs:          $(BLD) $(EMACS)
154 $(EMACS):       $(DOC) $(TEMACS)
155         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
156         -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
159 # The undumped executable
160 # Note the extra post-link step to insert a static preload heap section.
161 # If preload runs out of memory, increase the last argument to addsection
162 # (it is the preload heap size in MB).
164 temacs:         $(BLD) $(TEMACS)
165 $(TEMACS):      $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
166         $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
167         "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
169 bootstrap: bootstrap-emacs
172 # Build a temacs with a sufficiently large PURESIZE to load the
173 # Lisp files from loadup.el in source form.
175 bootstrap-temacs:
176         $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
179 # Dump an Emacs executable named bootstrap-emacs containing the
180 # files from loadup.el in source form.
182 bootstrap-emacs: bootstrap-temacs
183         "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
184         - mkdir "../bin"
185         $(CP) $(EMACS) ../bin
188 # Force recompile of files that depend on PURESIZE
190 bootstrap-clean:
191         - $(DEL) $(BLD)/alloc.$(O)
192         - $(DEL) $(BLD)/data.$(O)
193         - $(DEL) $(BLD)/intervals.$(O)
194         - $(DEL) $(BLD)/keyboard.$(O)
195         - $(DEL) $(BLD)/keymap.$(O)
198 # The resource file.  NT 3.10 requires the use of cvtres; even though
199 # it is not necessary on later versions, it is still ok to use it.
201 $(TRES): ../nt/emacs.rc
202         $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
205 # Build the library.  Split up the build into two phases...otherwise we
206 # run out of command line space.
208 $(TLIB0):       $(OBJ0)
209         - $(DEL) $@
210         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
211 $(TLIB1):       $(OBJ1)
212         - $(DEL) $@
213         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
214 $(TLIBW32):     $(WIN32OBJ)
215         - $(DEL) $@
216         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
219 # Place lastfile.$(O) in its own library so that it can be loaded after
220 # the source libraries but before any system libraries.  Doing so defines
221 # the end of Emacs' data section portably across compilers and systems.
223 $(TLASTLIB):    $(BLD)/lastfile.$(O)
224         - $(DEL) $@
225         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
228 # Assuming INSTALL_DIR is defined, build and install emacs in it.
230 install:        $(ALL)
231         - mkdir "$(INSTALL_DIR)/bin"
232         $(CP) $(EMACS) $(INSTALL_DIR)/bin
235 # Maintenance
237 clean:
238         - $(DEL) *~ "s/*~" "m/*~"
239         - $(DEL) $(COMPILER_TEMP_FILES)
240         - $(DEL_TREE) $(OBJDIR)
242 distclean:      clean
243         - $(DEL) config.h epaths.h
245 cleanall:       clean
246         - $(DEL_TREE) obj
247         - $(DEL_TREE) obj-spd
248         - $(DEL_TREE) oo
249         - $(DEL_TREE) oo-spd
251 ### DEPENDENCIES ###
253 EMACS_ROOT      = ..
254 SRC             = .
256 $(BLD)/abbrev.$(O) : \
257         $(SRC)/abbrev.c \
258         $(EMACS_ROOT)/src/s/ms-w32.h \
259         $(EMACS_ROOT)/src/m/intel386.h \
260         $(EMACS_ROOT)/src/config.h \
261         $(SRC)/buffer.h \
262         $(SRC)/charset.h \
263         $(SRC)/commands.h \
264         $(SRC)/dispextern.h \
265         $(SRC)/syntax.h \
266         $(SRC)/w32bdf.h \
267         $(SRC)/w32gui.h \
268         $(SRC)/window.h
270 $(BLD)/alloc.$(O) : \
271         $(SRC)/alloc.c \
272         $(EMACS_ROOT)/src/s/ms-w32.h \
273         $(EMACS_ROOT)/src/m/intel386.h \
274         $(EMACS_ROOT)/src/config.h \
275         $(SRC)/blockinput.h \
276         $(SRC)/buffer.h \
277         $(SRC)/charset.h \
278         $(SRC)/composite.h \
279         $(SRC)/dispextern.h \
280         $(SRC)/frame.h \
281         $(SRC)/intervals.h \
282         $(SRC)/keyboard.h \
283         $(SRC)/process.h \
284         $(SRC)/puresize.h \
285         $(SRC)/syssignal.h \
286         $(SRC)/w32bdf.h \
287         $(SRC)/w32gui.h \
288         $(SRC)/window.h
290 $(BLD)/atimer.$(O) : \
291         $(SRC)/atimer.c \
292         $(EMACS_ROOT)/src/s/ms-w32.h \
293         $(EMACS_ROOT)/src/m/intel386.h \
294         $(EMACS_ROOT)/src/config.h \
295         $(SRC)/s/ms-w32.h \
296         $(SRC)/m/intel386.h \
297         $(SRC)/config.h \
298         $(SRC)/atimer.h \
299         $(SRC)/blockinput.h \
300         $(SRC)/syssignal.h \
301         $(SRC)/systime.h
303 $(BLD)/buffer.$(O) : \
304         $(SRC)/buffer.c \
305         $(EMACS_ROOT)/nt/inc/sys/param.h \
306         $(EMACS_ROOT)/src/s/ms-w32.h \
307         $(EMACS_ROOT)/src/m/intel386.h \
308         $(EMACS_ROOT)/src/config.h \
309         $(SRC)/blockinput.h \
310         $(SRC)/buffer.h \
311         $(SRC)/charset.h \
312         $(SRC)/commands.h \
313         $(SRC)/composite.h \
314         $(SRC)/dispextern.h \
315         $(SRC)/frame.h \
316         $(SRC)/indent.h \
317         $(SRC)/intervals.h \
318         $(SRC)/keyboard.h \
319         $(SRC)/keymap.h \
320         $(SRC)/region-cache.h \
321         $(SRC)/w32bdf.h \
322         $(SRC)/w32gui.h \
323         $(SRC)/window.h
325 $(BLD)/bytecode.$(O) : \
326         $(SRC)/bytecode.c \
327         $(EMACS_ROOT)/src/s/ms-w32.h \
328         $(EMACS_ROOT)/src/m/intel386.h \
329         $(EMACS_ROOT)/src/config.h \
330         $(SRC)/buffer.h \
331         $(SRC)/charset.h \
332         $(SRC)/syntax.h \
333         $(SRC)/window.h
335 $(BLD)/callint.$(O) : \
336         $(SRC)/callint.c \
337         $(EMACS_ROOT)/src/s/ms-w32.h \
338         $(EMACS_ROOT)/src/m/intel386.h \
339         $(EMACS_ROOT)/src/config.h \
340         $(SRC)/buffer.h \
341         $(SRC)/commands.h \
342         $(SRC)/dispextern.h \
343         $(SRC)/keyboard.h \
344         $(SRC)/keymap.h \
345         $(SRC)/w32bdf.h \
346         $(SRC)/w32gui.h \
347         $(SRC)/window.h
349 $(BLD)/callproc.$(O) : \
350         $(SRC)/callproc.c \
351         $(EMACS_ROOT)/src/s/ms-w32.h \
352         $(EMACS_ROOT)/src/m/intel386.h \
353         $(EMACS_ROOT)/src/config.h \
354         $(EMACS_ROOT)/nt/inc/sys/param.h \
355         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
356         $(EMACS_ROOT)/nt/inc/sys/file.h \
357         $(SRC)/buffer.h \
358         $(SRC)/ccl.h \
359         $(SRC)/charset.h \
360         $(SRC)/coding.h \
361         $(SRC)/commands.h \
362         $(SRC)/composite.h \
363         $(SRC)/epaths.h \
364         $(SRC)/process.h \
365         $(SRC)/syssignal.h \
366         $(SRC)/systty.h \
367         $(SRC)/w32.h
369 $(BLD)/casefiddle.$(O) : \
370         $(SRC)/casefiddle.c \
371         $(EMACS_ROOT)/src/s/ms-w32.h \
372         $(EMACS_ROOT)/src/m/intel386.h \
373         $(EMACS_ROOT)/src/config.h \
374         $(SRC)/buffer.h \
375         $(SRC)/charset.h \
376         $(SRC)/commands.h \
377         $(SRC)/composite.h \
378         $(SRC)/keymap.h \
379         $(SRC)/syntax.h
381 $(BLD)/casetab.$(O) : \
382         $(SRC)/casetab.c \
383         $(EMACS_ROOT)/src/s/ms-w32.h \
384         $(EMACS_ROOT)/src/m/intel386.h \
385         $(EMACS_ROOT)/src/config.h \
386         $(SRC)/buffer.h \
387         $(SRC)/charset.h
389 $(BLD)/category.$(O) : \
390         $(SRC)/category.c \
391         $(EMACS_ROOT)/src/s/ms-w32.h \
392         $(EMACS_ROOT)/src/m/intel386.h \
393         $(EMACS_ROOT)/src/config.h \
394         $(SRC)/buffer.h \
395         $(SRC)/category.h \
396         $(SRC)/charset.h \
397         $(SRC)/keymap.h
399 $(BLD)/ccl.$(O) : \
400         $(SRC)/ccl.c \
401         $(EMACS_ROOT)/src/s/ms-w32.h \
402         $(EMACS_ROOT)/src/m/intel386.h \
403         $(EMACS_ROOT)/src/config.h \
404         $(SRC)/ccl.h \
405         $(SRC)/charset.h \
406         $(SRC)/coding.h
408 $(BLD)/charset.$(O) : \
409         $(SRC)/charset.c \
410         $(EMACS_ROOT)/src/s/ms-w32.h \
411         $(EMACS_ROOT)/src/m/intel386.h \
412         $(EMACS_ROOT)/src/config.h \
413         $(SRC)/buffer.h \
414         $(SRC)/ccl.h \
415         $(SRC)/charset.h \
416         $(SRC)/coding.h \
417         $(SRC)/composite.h \
418         $(SRC)/disptab.h
420 $(BLD)/cm.$(O) : \
421         $(SRC)/cm.c \
422         $(EMACS_ROOT)/src/s/ms-w32.h \
423         $(EMACS_ROOT)/src/m/intel386.h \
424         $(EMACS_ROOT)/src/config.h \
425         $(SRC)/cm.h \
426         $(SRC)/termhooks.h
428 $(BLD)/cmds.$(O) : \
429         $(SRC)/cmds.c \
430         $(EMACS_ROOT)/src/s/ms-w32.h \
431         $(EMACS_ROOT)/src/m/intel386.h \
432         $(EMACS_ROOT)/src/config.h \
433         $(SRC)/buffer.h \
434         $(SRC)/charset.h \
435         $(SRC)/commands.h \
436         $(SRC)/dispextern.h \
437         $(SRC)/keyboard.h \
438         $(SRC)/keymap.h \
439         $(SRC)/syntax.h \
440         $(SRC)/w32bdf.h \
441         $(SRC)/w32gui.h \
442         $(SRC)/window.h
444 $(BLD)/coding.$(O) : \
445         $(SRC)/coding.c \
446         $(EMACS_ROOT)/src/s/ms-w32.h \
447         $(EMACS_ROOT)/src/m/intel386.h \
448         $(EMACS_ROOT)/src/config.h \
449         $(SRC)/buffer.h \
450         $(SRC)/ccl.h \
451         $(SRC)/charset.h \
452         $(SRC)/coding.h \
453         $(SRC)/composite.h \
454         $(SRC)/dispextern.h \
455         $(SRC)/intervals.h \
456         $(SRC)/w32bdf.h \
457         $(SRC)/w32gui.h \
458         $(SRC)/window.h
460 $(BLD)/composite.$(O) : \
461         $(SRC)/composite.c \
462         $(EMACS_ROOT)/src/s/ms-w32.h \
463         $(EMACS_ROOT)/src/m/intel386.h \
464         $(EMACS_ROOT)/src/config.h \
465         $(SRC)/buffer.h \
466         $(SRC)/charset.h \
467         $(SRC)/composite.h \
468         $(SRC)/dispextern.h \
469         $(SRC)/intervals.h \
470         $(SRC)/w32bdf.h \
471         $(SRC)/w32gui.h
473 $(BLD)/data.$(O) : \
474         $(SRC)/data.c \
475         $(EMACS_ROOT)/src/s/ms-w32.h \
476         $(EMACS_ROOT)/src/m/intel386.h \
477         $(EMACS_ROOT)/src/config.h \
478         $(SRC)/buffer.h \
479         $(SRC)/charset.h \
480         $(SRC)/frame.h \
481         $(SRC)/keyboard.h \
482         $(SRC)/puresize.h \
483         $(SRC)/syssignal.h
485 $(BLD)/dired.$(O) : \
486         $(SRC)/dired.c \
487         $(EMACS_ROOT)/src/s/ms-w32.h \
488         $(EMACS_ROOT)/src/m/intel386.h \
489         $(EMACS_ROOT)/src/config.h \
490         $(SRC)/buffer.h \
491         $(SRC)/ccl.h \
492         $(SRC)/charset.h \
493         $(SRC)/coding.h \
494         $(SRC)/commands.h \
495         $(SRC)/ndir.h \
496         $(SRC)/regex.h \
497         $(SRC)/systime.h
499 $(BLD)/dispnew.$(O) : \
500         $(SRC)/dispnew.c \
501         $(EMACS_ROOT)/src/s/ms-w32.h \
502         $(EMACS_ROOT)/src/m/intel386.h \
503         $(EMACS_ROOT)/src/config.h \
504         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
505         $(EMACS_ROOT)/nt/inc/sys/file.h \
506         $(SRC)/atimer.h \
507         $(SRC)/blockinput.h \
508         $(SRC)/buffer.h \
509         $(SRC)/charset.h \
510         $(SRC)/cm.h \
511         $(SRC)/commands.h \
512         $(SRC)/composite.h \
513         $(SRC)/dispextern.h \
514         $(SRC)/disptab.h \
515         $(SRC)/frame.h \
516         $(SRC)/indent.h \
517         $(SRC)/intervals.h \
518         $(SRC)/keyboard.h \
519         $(SRC)/process.h \
520         $(SRC)/syssignal.h \
521         $(SRC)/systime.h \
522         $(SRC)/termchar.h \
523         $(SRC)/termhooks.h \
524         $(SRC)/termopts.h \
525         $(SRC)/w32bdf.h \
526         $(SRC)/w32gui.h \
527         $(SRC)/w32term.h \
528         $(SRC)/window.h
530 $(BLD)/doc.$(O) : \
531         $(SRC)/doc.c \
532         $(EMACS_ROOT)/src/s/ms-w32.h \
533         $(EMACS_ROOT)/src/m/intel386.h \
534         $(EMACS_ROOT)/src/config.h \
535         $(EMACS_ROOT)/nt/inc/sys/file.h \
536         $(SRC)/buffer.h \
537         $(SRC)/charset.h \
538         $(SRC)/keyboard.h \
539         $(SRC)/keymap.h
541 $(BLD)/doprnt.$(O) : \
542         $(SRC)/doprnt.c \
543         $(EMACS_ROOT)/src/s/ms-w32.h \
544         $(EMACS_ROOT)/src/m/intel386.h \
545         $(EMACS_ROOT)/src/config.h \
546         $(SRC)/charset.c
548 $(BLD)/editfns.$(O) : \
549         $(SRC)/editfns.c \
550         $(EMACS_ROOT)/src/s/ms-w32.h \
551         $(EMACS_ROOT)/src/m/intel386.h \
552         $(EMACS_ROOT)/src/config.h \
553         $(EMACS_ROOT)/nt/inc/pwd.h \
554         $(SRC)/buffer.h \
555         $(SRC)/ccl.h \
556         $(SRC)/charset.h \
557         $(SRC)/coding.h \
558         $(SRC)/composite.h \
559         $(SRC)/dispextern.h \
560         $(SRC)/frame.h \
561         $(SRC)/intervals.h \
562         $(SRC)/systime.h \
563         $(SRC)/w32bdf.h \
564         $(SRC)/w32gui.h \
565         $(SRC)/window.h
567 $(BLD)/emacs.$(O) : \
568         $(SRC)/emacs.c \
569         $(EMACS_ROOT)/src/s/ms-w32.h \
570         $(EMACS_ROOT)/src/m/intel386.h \
571         $(EMACS_ROOT)/src/config.h \
572         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
573         $(EMACS_ROOT)/nt/inc/sys/file.h \
574         $(SRC)/atimer.h \
575         $(SRC)/blockinput.h \
576         $(SRC)/buffer.h \
577         $(SRC)/commands.h \
578         $(SRC)/composite.h \
579         $(SRC)/dispextern.h \
580         $(SRC)/intervals.h \
581         $(SRC)/keyboard.h \
582         $(SRC)/keymap.h \
583         $(SRC)/process.h \
584         $(SRC)/syssignal.h \
585         $(SRC)/systime.h \
586         $(SRC)/systty.h \
587         $(SRC)/termhooks.h \
588         $(SRC)/w32bdf.h \
589         $(SRC)/w32gui.h \
590         $(SRC)/window.h
592 $(BLD)/eval.$(O) : \
593         $(SRC)/eval.c \
594         $(EMACS_ROOT)/src/s/ms-w32.h \
595         $(EMACS_ROOT)/src/m/intel386.h \
596         $(EMACS_ROOT)/src/config.h \
597         $(SRC)/atimer.h \
598         $(SRC)/blockinput.h \
599         $(SRC)/commands.h \
600         $(SRC)/dispextern.h \
601         $(SRC)/keyboard.h \
602         $(SRC)/systime.h \
603         $(SRC)/w32bdf.h \
604         $(SRC)/w32gui.h
606 $(BLD)/fileio.$(O) : \
607         $(SRC)/fileio.c \
608         $(EMACS_ROOT)/src/s/ms-w32.h \
609         $(EMACS_ROOT)/src/m/intel386.h \
610         $(EMACS_ROOT)/src/config.h \
611         $(EMACS_ROOT)/nt/inc/pwd.h \
612         $(EMACS_ROOT)/nt/inc/sys/param.h \
613         $(EMACS_ROOT)/nt/inc/sys/file.h \
614         $(SRC)/buffer.h \
615         $(SRC)/ccl.h \
616         $(SRC)/charset.h \
617         $(SRC)/coding.h \
618         $(SRC)/commands.h \
619         $(SRC)/composite.h \
620         $(SRC)/dispextern.h \
621         $(SRC)/intervals.h \
622         $(SRC)/systime.h \
623         $(SRC)/w32bdf.h \
624         $(SRC)/w32gui.h \
625         $(SRC)/window.h
627 $(BLD)/filelock.$(O) : \
628         $(SRC)/filelock.c \
629         $(EMACS_ROOT)/src/s/ms-w32.h \
630         $(EMACS_ROOT)/src/m/intel386.h \
631         $(EMACS_ROOT)/src/config.h \
632         $(EMACS_ROOT)/nt/inc/pwd.h \
633         $(EMACS_ROOT)/nt/inc/sys/file.h \
634         $(EMACS_ROOT)/src/epaths.h \
635         $(SRC)/buffer.h \
636         $(SRC)/ccl.h \
637         $(SRC)/charset.h \
638         $(SRC)/coding.h \
639         $(SRC)/systime.h
641 $(BLD)/filemode.$(O) : \
642         $(SRC)/filemode.c \
643         $(EMACS_ROOT)/src/s/ms-w32.h \
644         $(EMACS_ROOT)/src/m/intel386.h \
645         $(EMACS_ROOT)/src/config.h \
646         $(SRC)/s/ms-w32.h \
647         $(SRC)/m/intel386.h \
648         $(SRC)/config.h
650 $(BLD)/firstfile.$(O) : \
651         $(SRC)/firstfile.c \
652         $(EMACS_ROOT)/src/s/ms-w32.h \
653         $(EMACS_ROOT)/src/m/intel386.h \
654         $(EMACS_ROOT)/src/config.h
656 $(BLD)/floatfns.$(O) : \
657         $(SRC)/floatfns.c \
658         $(EMACS_ROOT)/src/s/ms-w32.h \
659         $(EMACS_ROOT)/src/m/intel386.h \
660         $(EMACS_ROOT)/src/config.h \
661         $(SRC)/syssignal.h
663 $(BLD)/fns.$(O) : \
664         $(SRC)/fns.c \
665         $(EMACS_ROOT)/src/s/ms-w32.h \
666         $(EMACS_ROOT)/src/m/intel386.h \
667         $(EMACS_ROOT)/src/config.h \
668         $(SRC)/atimer.h \
669         $(SRC)/blockinput.h \
670         $(SRC)/buffer.h \
671         $(SRC)/ccl.h \
672         $(SRC)/charset.h \
673         $(SRC)/coding.h \
674         $(SRC)/commands.h \
675         $(SRC)/composite.h \
676         $(SRC)/dispextern.h \
677         $(SRC)/frame.h \
678         $(SRC)/intervals.h \
679         $(SRC)/keyboard.h \
680         $(SRC)/keymap.h \
681         $(SRC)/md5.h \
682         $(SRC)/systime.h \
683         $(SRC)/w32bdf.h \
684         $(SRC)/w32gui.h \
685         $(SRC)/window.h
687 $(BLD)/fontset.$(O) : \
688         $(SRC)/fontset.c \
689         $(EMACS_ROOT)/src/s/ms-w32.h \
690         $(EMACS_ROOT)/src/m/intel386.h \
691         $(EMACS_ROOT)/src/config.h \
692         $(SRC)/buffer.h \
693         $(SRC)/ccl.h \
694         $(SRC)/charset.h \
695         $(SRC)/dispextern.h \
696         $(SRC)/fontset.h \
697         $(SRC)/frame.h \
698         $(SRC)/keyboard.h \
699         $(SRC)/w32bdf.h \
700         $(SRC)/w32gui.h \
701         $(SRC)/window.h
703 $(BLD)/frame.$(O) : \
704         $(SRC)/frame.c \
705         $(EMACS_ROOT)/src/s/ms-w32.h \
706         $(EMACS_ROOT)/src/m/intel386.h \
707         $(EMACS_ROOT)/src/config.h \
708         $(SRC)/atimer.h \
709         $(SRC)/blockinput.h \
710         $(SRC)/buffer.h \
711         $(SRC)/charset.h \
712         $(SRC)/commands.h \
713         $(SRC)/dispextern.h \
714         $(SRC)/fontset.h \
715         $(SRC)/frame.h \
716         $(SRC)/keyboard.h \
717         $(SRC)/systime.h \
718         $(SRC)/termhooks.h \
719         $(SRC)/w32bdf.h \
720         $(SRC)/w32gui.h \
721         $(SRC)/w32term.h \
722         $(SRC)/window.h
724 $(BLD)/gmalloc.$(O) : \
725         $(SRC)/gmalloc.c \
726         $(EMACS_ROOT)/src/s/ms-w32.h \
727         $(EMACS_ROOT)/src/m/intel386.h \
728         $(EMACS_ROOT)/src/config.h \
729         $(EMACS_ROOT)/nt/inc/sys/param.h \
730         $(SRC)/getpagesize.h
732 $(BLD)/indent.$(O) : \
733         $(SRC)/indent.c \
734         $(EMACS_ROOT)/src/s/ms-w32.h \
735         $(EMACS_ROOT)/src/m/intel386.h \
736         $(EMACS_ROOT)/src/config.h \
737         $(SRC)/buffer.h \
738         $(SRC)/category.h \
739         $(SRC)/charset.h \
740         $(SRC)/composite.h \
741         $(SRC)/dispextern.h \
742         $(SRC)/disptab.h \
743         $(SRC)/frame.h \
744         $(SRC)/indent.h \
745         $(SRC)/intervals.h \
746         $(SRC)/keyboard.h \
747         $(SRC)/region-cache.h \
748         $(SRC)/termchar.h \
749         $(SRC)/termopts.h \
750         $(SRC)/w32bdf.h \
751         $(SRC)/w32gui.h \
752         $(SRC)/window.h
754 $(BLD)/insdel.$(O) : \
755         $(SRC)/insdel.c \
756         $(EMACS_ROOT)/src/s/ms-w32.h \
757         $(EMACS_ROOT)/src/m/intel386.h \
758         $(EMACS_ROOT)/src/config.h \
759         $(SRC)/atimer.h \
760         $(SRC)/blockinput.h \
761         $(SRC)/buffer.h \
762         $(SRC)/charset.h \
763         $(SRC)/composite.h \
764         $(SRC)/dispextern.h \
765         $(SRC)/intervals.h \
766         $(SRC)/region-cache.h \
767         $(SRC)/systime.h \
768         $(SRC)/w32bdf.h \
769         $(SRC)/w32gui.h \
770         $(SRC)/window.h
772 $(BLD)/intervals.$(O) : \
773         $(SRC)/intervals.c \
774         $(EMACS_ROOT)/src/s/ms-w32.h \
775         $(EMACS_ROOT)/src/m/intel386.h \
776         $(EMACS_ROOT)/src/config.h \
777         $(SRC)/buffer.h \
778         $(SRC)/composite.h \
779         $(SRC)/dispextern.h \
780         $(SRC)/intervals.h \
781         $(SRC)/keyboard.h \
782         $(SRC)/keymap.h \
783         $(SRC)/puresize.h \
784         $(SRC)/w32bdf.h \
785         $(SRC)/w32gui.h
787 $(BLD)/keyboard.$(O) : \
788         $(SRC)/keyboard.c \
789         $(EMACS_ROOT)/src/s/ms-w32.h \
790         $(EMACS_ROOT)/src/m/intel386.h \
791         $(EMACS_ROOT)/src/config.h \
792         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
793         $(EMACS_ROOT)/nt/inc/sys/file.h \
794         $(SRC)/atimer.h \
795         $(SRC)/blockinput.h \
796         $(SRC)/buffer.h \
797         $(SRC)/charset.h \
798         $(SRC)/commands.h \
799         $(SRC)/composite.h \
800         $(SRC)/dispextern.h \
801         $(SRC)/disptab.h \
802         $(SRC)/frame.h \
803         $(SRC)/intervals.h \
804         $(SRC)/keyboard.h \
805         $(SRC)/keymap.h \
806         $(SRC)/macros.h \
807         $(SRC)/puresize.h \
808         $(SRC)/syntax.h \
809         $(SRC)/syssignal.h \
810         $(SRC)/systime.h \
811         $(SRC)/systty.h \
812         $(SRC)/termchar.h \
813         $(SRC)/termhooks.h \
814         $(SRC)/termopts.h \
815         $(SRC)/w32bdf.h \
816         $(SRC)/w32gui.h \
817         $(SRC)/w32term.h \
818         $(SRC)/window.h
820 $(BLD)/keymap.$(O) : \
821         $(SRC)/keymap.c \
822         $(EMACS_ROOT)/src/s/ms-w32.h \
823         $(EMACS_ROOT)/src/m/intel386.h \
824         $(EMACS_ROOT)/src/config.h \
825         $(SRC)/atimer.h \
826         $(SRC)/blockinput.h \
827         $(SRC)/buffer.h \
828         $(SRC)/charset.h \
829         $(SRC)/commands.h \
830         $(SRC)/composite.h \
831         $(SRC)/dispextern.h \
832         $(SRC)/intervals.h \
833         $(SRC)/keyboard.h \
834         $(SRC)/keymap.h \
835         $(SRC)/puresize.h \
836         $(SRC)/systime.h \
837         $(SRC)/termhooks.h \
838         $(SRC)/w32bdf.h \
839         $(SRC)/w32gui.h
841 $(BLD)/lastfile.$(O) : \
842         $(SRC)/lastfile.c \
843         $(EMACS_ROOT)/src/s/ms-w32.h \
844         $(EMACS_ROOT)/src/m/intel386.h \
845         $(EMACS_ROOT)/src/config.h
847 $(BLD)/lread.$(O) : \
848         $(SRC)/lread.c \
849         $(EMACS_ROOT)/src/s/ms-w32.h \
850         $(EMACS_ROOT)/src/m/intel386.h \
851         $(EMACS_ROOT)/src/config.h \
852         $(EMACS_ROOT)/nt/inc/sys/file.h \
853         $(EMACS_ROOT)/src/epaths.h \
854         $(SRC)/buffer.h \
855         $(SRC)/ccl.h \
856         $(SRC)/charset.h \
857         $(SRC)/coding.h \
858         $(SRC)/commands.h \
859         $(SRC)/composite.h \
860         $(SRC)/dispextern.h \
861         $(SRC)/intervals.h \
862         $(SRC)/keyboard.h \
863         $(SRC)/termhooks.h \
864         $(SRC)/w32bdf.h \
865         $(SRC)/w32gui.h
867 $(BLD)/macros.$(O) : \
868         $(SRC)/macros.c \
869         $(EMACS_ROOT)/src/s/ms-w32.h \
870         $(EMACS_ROOT)/src/m/intel386.h \
871         $(EMACS_ROOT)/src/config.h \
872         $(SRC)/buffer.h \
873         $(SRC)/commands.h \
874         $(SRC)/dispextern.h \
875         $(SRC)/keyboard.h \
876         $(SRC)/macros.h \
877         $(SRC)/w32bdf.h \
878         $(SRC)/w32gui.h \
879         $(SRC)/window.h
881 $(BLD)/marker.$(O) : \
882         $(SRC)/marker.c \
883         $(EMACS_ROOT)/src/s/ms-w32.h \
884         $(EMACS_ROOT)/src/m/intel386.h \
885         $(EMACS_ROOT)/src/config.h \
886         $(SRC)/buffer.h \
887         $(SRC)/charset.h
889 $(BLD)/md5.$(O) : \
890         $(SRC)/md5.c \
891         $(SRC)/md5.h
893 $(BLD)/minibuf.$(O) : \
894         $(SRC)/minibuf.c \
895         $(EMACS_ROOT)/src/s/ms-w32.h \
896         $(EMACS_ROOT)/src/m/intel386.h \
897         $(EMACS_ROOT)/src/config.h \
898         $(SRC)/buffer.h \
899         $(SRC)/charset.h \
900         $(SRC)/commands.h \
901         $(SRC)/composite.h \
902         $(SRC)/dispextern.h \
903         $(SRC)/frame.h \
904         $(SRC)/intervals.h \
905         $(SRC)/keyboard.h \
906         $(SRC)/keymap.h \
907         $(SRC)/syntax.h \
908         $(SRC)/w32bdf.h \
909         $(SRC)/w32gui.h \
910         $(SRC)/window.h
912 $(BLD)/w32.$(O) : \
913         $(SRC)/w32.c \
914         $(EMACS_ROOT)/nt/inc/pwd.h \
915         $(SRC)/s/ms-w32.h \
916         $(SRC)/m/intel386.h \
917         $(SRC)/config.h \
918         $(SRC)/ndir.h \
919         $(SRC)/systime.h \
920         $(SRC)/w32.h \
921         $(SRC)/w32heap.h
923 $(BLD)/w32heap.$(O) : \
924         $(SRC)/w32heap.c \
925         $(SRC)/s/ms-w32.h \
926         $(SRC)/m/intel386.h \
927         $(SRC)/config.h \
928         $(SRC)/w32heap.h
930 $(BLD)/w32inevt.$(O) : \
931         $(SRC)/w32inevt.c \
932         $(SRC)/s/ms-w32.h \
933         $(SRC)/m/intel386.h \
934         $(SRC)/config.h \
935         $(SRC)/atimer.h \
936         $(SRC)/blockinput.h \
937         $(SRC)/frame.h \
938         $(SRC)/keyboard.h \
939         $(SRC)/systime.h \
940         $(SRC)/termhooks.h \
941         $(SRC)/w32bdf.h \
942         $(SRC)/w32gui.h \
943         $(SRC)/w32heap.h \
944         $(SRC)/w32term.h
946 $(BLD)/w32proc.$(O) : \
947         $(SRC)/w32proc.c \
948         $(SRC)/s/ms-w32.h \
949         $(SRC)/m/intel386.h \
950         $(SRC)/config.h \
951         $(SRC)/process.h \
952         $(SRC)/syssignal.h \
953         $(SRC)/systime.h \
954         $(SRC)/syswait.h \
955         $(SRC)/w32.h \
956         $(SRC)/w32bdf.h \
957         $(SRC)/w32gui.h \
958         $(SRC)/w32heap.h \
959         $(SRC)/w32term.h
961 $(BLD)/w32console.$(O) : \
962         $(SRC)/w32console.c \
963         $(SRC)/s/ms-w32.h \
964         $(SRC)/m/intel386.h \
965         $(SRC)/ccl.h \
966         $(SRC)/charset.h \
967         $(SRC)/coding.h \
968         $(SRC)/config.h \
969         $(SRC)/dispextern.h \
970         $(SRC)/disptab.h \
971         $(SRC)/frame.h \
972         $(SRC)/termhooks.h \
973         $(SRC)/w32bdf.h \
974         $(SRC)/w32gui.h \
975         $(SRC)/w32inevt.h
977 $(BLD)/print.$(O) : \
978         $(SRC)/print.c \
979         $(EMACS_ROOT)/src/s/ms-w32.h \
980         $(EMACS_ROOT)/src/m/intel386.h \
981         $(EMACS_ROOT)/src/config.h \
982         $(SRC)/buffer.h \
983         $(SRC)/charset.h \
984         $(SRC)/composite.h \
985         $(SRC)/dispextern.h \
986         $(SRC)/frame.h \
987         $(SRC)/intervals.h \
988         $(SRC)/keyboard.h \
989         $(SRC)/process.h \
990         $(SRC)/termchar.h \
991         $(SRC)/w32bdf.h \
992         $(SRC)/w32gui.h \
993         $(SRC)/window.h
995 $(BLD)/process.$(O) : \
996         $(SRC)/process.c \
997         $(EMACS_ROOT)/src/s/ms-w32.h \
998         $(EMACS_ROOT)/src/m/intel386.h \
999         $(EMACS_ROOT)/src/config.h \
1000         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1001         $(EMACS_ROOT)/nt/inc/sys/file.h \
1002         $(SRC)/atimer.h \
1003         $(SRC)/blockinput.h \
1004         $(SRC)/buffer.h \
1005         $(SRC)/ccl.h \
1006         $(SRC)/charset.h \
1007         $(SRC)/coding.h \
1008         $(SRC)/commands.h \
1009         $(SRC)/composite.h \
1010         $(SRC)/dispextern.h \
1011         $(SRC)/frame.h \
1012         $(SRC)/keyboard.h \
1013         $(SRC)/process.h \
1014         $(SRC)/sysselect.h \
1015         $(SRC)/syssignal.h \
1016         $(SRC)/systime.h \
1017         $(SRC)/systty.h \
1018         $(SRC)/syswait.h \
1019         $(SRC)/termhooks.h \
1020         $(SRC)/termopts.h \
1021         $(SRC)/w32bdf.h \
1022         $(SRC)/w32gui.h \
1023         $(SRC)/window.h
1025 $(BLD)/ralloc.$(O) : \
1026         $(SRC)/ralloc.c \
1027         $(EMACS_ROOT)/src/s/ms-w32.h \
1028         $(EMACS_ROOT)/src/m/intel386.h \
1029         $(EMACS_ROOT)/src/config.h \
1030         $(EMACS_ROOT)/nt/inc/sys/param.h \
1031         $(SRC)/s/ms-w32.h \
1032         $(SRC)/m/intel386.h \
1033         $(SRC)/config.h \
1034         $(SRC)/getpagesize.h
1036 $(BLD)/regex.$(O) : \
1037         $(SRC)/regex.c \
1038         $(EMACS_ROOT)/src/s/ms-w32.h \
1039         $(EMACS_ROOT)/src/m/intel386.h \
1040         $(EMACS_ROOT)/src/config.h \
1041         $(SRC)/s/ms-w32.h \
1042         $(SRC)/m/intel386.h \
1043         $(SRC)/buffer.h \
1044         $(SRC)/category.h \
1045         $(SRC)/charset.h \
1046         $(SRC)/config.h \
1047         $(SRC)/regex.h \
1048         $(SRC)/syntax.h
1050 $(BLD)/region-cache.$(O) : \
1051         $(SRC)/region-cache.c \
1052         $(EMACS_ROOT)/src/s/ms-w32.h \
1053         $(EMACS_ROOT)/src/m/intel386.h \
1054         $(EMACS_ROOT)/src/config.h \
1055         $(SRC)/buffer.h \
1056         $(SRC)/region-cache.h
1058 $(BLD)/scroll.$(O) : \
1059         $(SRC)/scroll.c \
1060         $(EMACS_ROOT)/src/s/ms-w32.h \
1061         $(EMACS_ROOT)/src/m/intel386.h \
1062         $(EMACS_ROOT)/src/config.h \
1063         $(SRC)/dispextern.h \
1064         $(SRC)/frame.h \
1065         $(SRC)/keyboard.h \
1066         $(SRC)/termchar.h \
1067         $(SRC)/w32bdf.h \
1068         $(SRC)/w32gui.h \
1069         $(SRC)/window.h
1071 $(BLD)/search.$(O) : \
1072         $(SRC)/search.c \
1073         $(EMACS_ROOT)/src/s/ms-w32.h \
1074         $(EMACS_ROOT)/src/m/intel386.h \
1075         $(EMACS_ROOT)/src/config.h \
1076         $(SRC)/atimer.h \
1077         $(SRC)/blockinput.h \
1078         $(SRC)/buffer.h \
1079         $(SRC)/category.h \
1080         $(SRC)/charset.h \
1081         $(SRC)/commands.h \
1082         $(SRC)/composite.h \
1083         $(SRC)/dispextern.h \
1084         $(SRC)/intervals.h \
1085         $(SRC)/regex.h \
1086         $(SRC)/region-cache.h \
1087         $(SRC)/syntax.h \
1088         $(SRC)/systime.h \
1089         $(SRC)/w32bdf.h \
1090         $(SRC)/w32gui.h
1092 $(BLD)/sound.$(O) : \
1093         $(SRC)/sound.c \
1094         $(SRC)/lisp.h \
1095         $(SRC)/dispextern.h \
1096         $(SRC)/atimer.h \
1097         $(SRC)/syssignal.h
1099 $(BLD)/strftime.$(O) : \
1100         $(SRC)/strftime.c \
1101         $(EMACS_ROOT)/src/s/ms-w32.h \
1102         $(EMACS_ROOT)/src/m/intel386.h \
1103         $(EMACS_ROOT)/src/config.h
1105 $(BLD)/syntax.$(O) : \
1106         $(SRC)/syntax.c \
1107         $(EMACS_ROOT)/src/s/ms-w32.h \
1108         $(EMACS_ROOT)/src/m/intel386.h \
1109         $(EMACS_ROOT)/src/config.h \
1110         $(SRC)/buffer.h \
1111         $(SRC)/category.h \
1112         $(SRC)/charset.h \
1113         $(SRC)/commands.h \
1114         $(SRC)/composite.h \
1115         $(SRC)/dispextern.h \
1116         $(SRC)/intervals.h \
1117         $(SRC)/keymap.h \
1118         $(SRC)/syntax.h \
1119         $(SRC)/w32bdf.h \
1120         $(SRC)/w32gui.h
1122 $(BLD)/sysdep.$(O) : \
1123         $(SRC)/sysdep.c \
1124         $(EMACS_ROOT)/src/s/ms-w32.h \
1125         $(EMACS_ROOT)/src/m/intel386.h \
1126         $(EMACS_ROOT)/src/config.h \
1127         $(EMACS_ROOT)/nt/inc/sys/param.h \
1128         $(EMACS_ROOT)/nt/inc/sys/file.h \
1129         $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1130         $(EMACS_ROOT)/nt/inc/sys/file.h \
1131         $(SRC)/atimer.h \
1132         $(SRC)/blockinput.h \
1133         $(SRC)/dispextern.h \
1134         $(SRC)/frame.h \
1135         $(SRC)/keyboard.h \
1136         $(SRC)/ndir.h \
1137         $(SRC)/process.h \
1138         $(SRC)/sysselect.h \
1139         $(SRC)/syssignal.h \
1140         $(SRC)/systime.h \
1141         $(SRC)/systty.h \
1142         $(SRC)/syswait.h \
1143         $(SRC)/termchar.h \
1144         $(SRC)/termhooks.h \
1145         $(SRC)/termopts.h \
1146         $(SRC)/w32bdf.h \
1147         $(SRC)/w32gui.h \
1148         $(SRC)/window.h
1150 $(BLD)/term.$(O) : \
1151         $(SRC)/term.c \
1152         $(EMACS_ROOT)/src/s/ms-w32.h \
1153         $(EMACS_ROOT)/src/m/intel386.h \
1154         $(EMACS_ROOT)/src/config.h \
1155         $(SRC)/ccl.h \
1156         $(SRC)/charset.h \
1157         $(SRC)/cm.h \
1158         $(SRC)/coding.h \
1159         $(SRC)/dispextern.h \
1160         $(SRC)/disptab.h \
1161         $(SRC)/frame.h \
1162         $(SRC)/keyboard.h \
1163         $(SRC)/keymap.h \
1164         $(SRC)/termchar.h \
1165         $(SRC)/termhooks.h \
1166         $(SRC)/termopts.h \
1167         $(SRC)/w32bdf.h \
1168         $(SRC)/w32gui.h \
1169         $(SRC)/window.h
1171 $(BLD)/termcap.$(O) : \
1172         $(SRC)/termcap.c \
1173         $(EMACS_ROOT)/src/s/ms-w32.h \
1174         $(EMACS_ROOT)/src/m/intel386.h \
1175         $(EMACS_ROOT)/src/config.h \
1176         $(EMACS_ROOT)/nt/inc/sys/file.h
1178 $(BLD)/textprop.$(O) : \
1179         $(SRC)/textprop.c \
1180         $(EMACS_ROOT)/src/s/ms-w32.h \
1181         $(EMACS_ROOT)/src/m/intel386.h \
1182         $(EMACS_ROOT)/src/config.h \
1183         $(SRC)/buffer.h \
1184         $(SRC)/composite.h \
1185         $(SRC)/dispextern.h \
1186         $(SRC)/intervals.h \
1187         $(SRC)/w32bdf.h \
1188         $(SRC)/w32gui.h \
1189         $(SRC)/window.h
1191 $(BLD)/tparam.$(O) : \
1192         $(SRC)/tparam.c \
1193         $(EMACS_ROOT)/src/s/ms-w32.h \
1194         $(EMACS_ROOT)/src/m/intel386.h \
1195         $(EMACS_ROOT)/src/config.h
1197 $(BLD)/undo.$(O) : \
1198         $(SRC)/undo.c \
1199         $(EMACS_ROOT)/src/s/ms-w32.h \
1200         $(EMACS_ROOT)/src/m/intel386.h \
1201         $(EMACS_ROOT)/src/config.h \
1202         $(SRC)/buffer.h \
1203         $(SRC)/commands.h
1205 $(BLD)/unexw32.$(O) : \
1206         $(SRC)/unexw32.c \
1207         $(EMACS_ROOT)/src/s/ms-w32.h \
1208         $(EMACS_ROOT)/src/m/intel386.h \
1209         $(EMACS_ROOT)/src/config.h \
1210         $(SRC)/w32heap.h
1212 $(BLD)/vm-limit.$(O) : \
1213         $(SRC)/vm-limit.c \
1214         $(EMACS_ROOT)/src/s/ms-w32.h \
1215         $(EMACS_ROOT)/src/m/intel386.h \
1216         $(EMACS_ROOT)/src/config.h \
1217         $(SRC)/mem-limits.h
1219 $(BLD)/window.$(O) : \
1220         $(SRC)/window.c \
1221         $(EMACS_ROOT)/src/s/ms-w32.h \
1222         $(EMACS_ROOT)/src/m/intel386.h \
1223         $(EMACS_ROOT)/src/config.h \
1224         $(SRC)/atimer.h \
1225         $(SRC)/blockinput.h \
1226         $(SRC)/buffer.h \
1227         $(SRC)/commands.h \
1228         $(SRC)/composite.h \
1229         $(SRC)/dispextern.h \
1230         $(SRC)/disptab.h \
1231         $(SRC)/frame.h \
1232         $(SRC)/indent.h \
1233         $(SRC)/intervals.h \
1234         $(SRC)/keyboard.h \
1235         $(SRC)/keymap.h \
1236         $(SRC)/systime.h \
1237         $(SRC)/termchar.h \
1238         $(SRC)/w32bdf.h \
1239         $(SRC)/w32gui.h \
1240         $(SRC)/w32term.h \
1241         $(SRC)/window.h
1243 $(BLD)/xdisp.$(O) : \
1244         $(SRC)/xdisp.c \
1245         $(EMACS_ROOT)/src/s/ms-w32.h \
1246         $(EMACS_ROOT)/src/m/intel386.h \
1247         $(EMACS_ROOT)/src/config.h \
1248         $(SRC)/atimer.h \
1249         $(SRC)/blockinput.h \
1250         $(SRC)/buffer.h \
1251         $(SRC)/ccl.h \
1252         $(SRC)/charset.h \
1253         $(SRC)/coding.h \
1254         $(SRC)/commands.h \
1255         $(SRC)/composite.h \
1256         $(SRC)/dispextern.h \
1257         $(SRC)/disptab.h \
1258         $(SRC)/fontset.h \
1259         $(SRC)/frame.h \
1260         $(SRC)/indent.h \
1261         $(SRC)/intervals.h \
1262         $(SRC)/keyboard.h \
1263         $(SRC)/keymap.h \
1264         $(SRC)/macros.h \
1265         $(SRC)/process.h \
1266         $(SRC)/region-cache.h \
1267         $(SRC)/systime.h \
1268         $(SRC)/termchar.h \
1269         $(SRC)/termhooks.h \
1270         $(SRC)/w32bdf.h \
1271         $(SRC)/w32gui.h \
1272         $(SRC)/w32term.h \
1273         $(SRC)/window.h
1275 $(BLD)/xfaces.$(O): \
1276         $(SRC)/xfaces.c \
1277         $(EMACS_ROOT)/src/s/ms-w32.h \
1278         $(EMACS_ROOT)/src/m/intel386.h \
1279         $(EMACS_ROOT)/src/config.h \
1280         $(SRC)/atimer.h \
1281         $(SRC)/blockinput.h \
1282         $(SRC)/buffer.h \
1283         $(SRC)/charset.h \
1284         $(SRC)/composite.h \
1285         $(SRC)/dispextern.h \
1286         $(SRC)/fontset.h \
1287         $(SRC)/frame.h \
1288         $(SRC)/intervals.h \
1289         $(SRC)/keyboard.h \
1290         $(SRC)/systime.h \
1291         $(SRC)/w32bdf.h \
1292         $(SRC)/w32gui.h \
1293         $(SRC)/w32term.h \
1294         $(SRC)/window.h
1296 $(BLD)/w32fns.$(O): \
1297         $(SRC)/w32fns.c \
1298         $(EMACS_ROOT)/src/s/ms-w32.h \
1299         $(EMACS_ROOT)/src/m/intel386.h \
1300         $(EMACS_ROOT)/src/config.h \
1301         $(SRC)/atimer.h \
1302         $(SRC)/blockinput.h \
1303         $(SRC)/buffer.h \
1304         $(SRC)/ccl.h \
1305         $(SRC)/charset.h \
1306         $(SRC)/coding.h \
1307         $(SRC)/composite.h \
1308         $(SRC)/dispextern.h \
1309         $(SRC)/epaths.h \
1310         $(SRC)/fontset.h \
1311         $(SRC)/frame.h \
1312         $(SRC)/intervals.h \
1313         $(SRC)/keyboard.h \
1314         $(SRC)/systime.h \
1315         $(SRC)/termhooks.h \
1316         $(SRC)/w32bdf.h \
1317         $(SRC)/w32gui.h \
1318         $(SRC)/w32heap.h \
1319         $(SRC)/w32term.h \
1320         $(SRC)/window.h
1322 $(BLD)/w32menu.$(O): \
1323         $(SRC)/w32menu.c \
1324         $(EMACS_ROOT)/src/s/ms-w32.h \
1325         $(EMACS_ROOT)/src/m/intel386.h \
1326         $(EMACS_ROOT)/src/config.h \
1327         $(SRC)/atimer.h \
1328         $(SRC)/blockinput.h \
1329         $(SRC)/buffer.h \
1330         $(SRC)/charset.h \
1331         $(SRC)/coding.h \
1332         $(SRC)/dispextern.h \
1333         $(SRC)/frame.h \
1334         $(SRC)/keyboard.h \
1335         $(SRC)/keymap.h \
1336         $(SRC)/systime.h \
1337         $(SRC)/termhooks.h \
1338         $(SRC)/w32bdf.h \
1339         $(SRC)/w32gui.h \
1340         $(SRC)/w32term.h \
1341         $(SRC)/window.h
1343 $(BLD)/w32term.$(O): \
1344         $(SRC)/w32term.c \
1345         $(EMACS_ROOT)/src/s/ms-w32.h \
1346         $(EMACS_ROOT)/src/m/intel386.h \
1347         $(EMACS_ROOT)/src/config.h \
1348         $(SRC)/atimer.h \
1349         $(SRC)/blockinput.h \
1350         $(SRC)/buffer.h \
1351         $(SRC)/ccl.h \
1352         $(SRC)/charset.h \
1353         $(SRC)/coding.h \
1354         $(SRC)/composite.h \
1355         $(SRC)/dispextern.h \
1356         $(SRC)/disptab.h \
1357         $(SRC)/fontset.h \
1358         $(SRC)/frame.h \
1359         $(SRC)/gnu.h \
1360         $(SRC)/intervals.h \
1361         $(SRC)/keyboard.h \
1362         $(SRC)/keymap.h \
1363         $(SRC)/systime.h \
1364         $(SRC)/systty.h \
1365         $(SRC)/termchar.h \
1366         $(SRC)/termhooks.h \
1367         $(SRC)/termopts.h \
1368         $(SRC)/w32bdf.h \
1369         $(SRC)/w32gui.h \
1370         $(SRC)/w32heap.h \
1371         $(SRC)/w32term.h \
1372         $(SRC)/window.h
1374 $(BLD)/w32select.$(O): \
1375         $(SRC)/w32select.c \
1376         $(EMACS_ROOT)/src/s/ms-w32.h \
1377         $(EMACS_ROOT)/src/m/intel386.h \
1378         $(EMACS_ROOT)/src/config.h \
1379         $(SRC)/atimer.h \
1380         $(SRC)/blockinput.h \
1381         $(SRC)/buffer.h \
1382         $(SRC)/ccl.h \
1383         $(SRC)/charset.h \
1384         $(SRC)/coding.h \
1385         $(SRC)/composite.h \
1386         $(SRC)/dispextern.h \
1387         $(SRC)/frame.h \
1388         $(SRC)/keyboard.h \
1389         $(SRC)/systime.h \
1390         $(SRC)/w32bdf.h \
1391         $(SRC)/w32gui.h \
1392         $(SRC)/w32term.h
1394 $(BLD)/w32reg.$(O): \
1395         $(SRC)/w32reg.c \
1396         $(EMACS_ROOT)/src/s/ms-w32.h \
1397         $(EMACS_ROOT)/src/m/intel386.h \
1398         $(EMACS_ROOT)/src/config.h \
1399         $(SRC)/atimer.h \
1400         $(SRC)/blockinput.h \
1401         $(SRC)/systime.h \
1402         $(SRC)/w32bdf.h \
1403         $(SRC)/w32gui.h \
1404         $(SRC)/w32term.h
1406 $(BLD)/w32xfns.$(O): \
1407         $(SRC)/w32xfns.c \
1408         $(EMACS_ROOT)/src/s/ms-w32.h \
1409         $(EMACS_ROOT)/src/m/intel386.h \
1410         $(EMACS_ROOT)/src/config.h \
1411         $(SRC)/atimer.h \
1412         $(SRC)/blockinput.h \
1413         $(SRC)/charset.h \
1414         $(SRC)/fontset.h \
1415         $(SRC)/frame.h \
1416         $(SRC)/keyboard.h \
1417         $(SRC)/systime.h \
1418         $(SRC)/w32bdf.h \
1419         $(SRC)/w32gui.h \
1420         $(SRC)/w32term.h
1422 $(BLD)/w32bdf.$(O): \
1423         $(SRC)/w32bdf.c \
1424         $(EMACS_ROOT)/src/s/ms-w32.h \
1425         $(EMACS_ROOT)/src/m/intel386.h \
1426         $(EMACS_ROOT)/src/config.h \
1427         $(SRC)/atimer.h \
1428         $(SRC)/blockinput.h \
1429         $(SRC)/charset.h \
1430         $(SRC)/dispextern.h \
1431         $(SRC)/fontset.h \
1432         $(SRC)/frame.h \
1433         $(SRC)/keyboard.h \
1434         $(SRC)/systime.h \
1435         $(SRC)/w32bdf.h \
1436         $(SRC)/w32gui.h \
1437         $(SRC)/w32term.h
1439 # arch-tag: 9fd7aba8-f826-4111-b3c0-497a8e7db9a0