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