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