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