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