Fix the MS-Windows build broken by 2011-01-17T19:01:01Z!eggert@cs.ucla.edu and emacs...
[bpt/emacs.git] / src / makefile.w32-in
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000-2011 Free Software Foundation, Inc.
3
4 # This file is part of GNU Emacs.
5
6 # GNU Emacs is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
18
19
20 ALL = emacs
21
22 .PHONY: $(ALL)
23
24 # Set EMACSLOADPATH correctly (in case already defined in environment).
25 EMACSLOADPATH=$(CURDIR)/../lisp
26
27 #
28 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
29 # the emacs source tree.
30 #
31 LOCAL_FLAGS = -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
32
33 SRC = .
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 TLIB2 = $(BLD)/temacs2.$(A)
40 TOBJ = $(BLD)/firstfile.$(O)
41 TRES = $(BLD)/emacs.res
42 TLASTLIB = $(BLD)/lastfile.$(A)
43 GNULIB = ../lib/$(BLD)/libgnu.$(A)
44
45 DOC = $(OBJDIR)/etc/DOC-X
46
47 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
48
49 #
50 # Split up the objects into two sets so that we don't run out of
51 # command line space when we link them into a library.
52 #
53 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
54 # as the "main" object file when linking.
55 #
56 OBJ0 = $(BLD)/emacs.$(O)
57
58 OBJ1 = $(BLD)/alloc.$(O) \
59 $(BLD)/atimer.$(O) \
60 $(BLD)/buffer.$(O) \
61 $(BLD)/bytecode.$(O) \
62 $(BLD)/callint.$(O) \
63 $(BLD)/callproc.$(O) \
64 $(BLD)/casefiddle.$(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
99 OBJ2 = $(BLD)/sysdep.$(O) \
100 $(BLD)/term.$(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)/bidi.$(O) \
118 $(BLD)/charset.$(O) \
119 $(BLD)/character.$(O) \
120 $(BLD)/chartab.$(O) \
121 $(BLD)/coding.$(O) \
122 $(BLD)/category.$(O) \
123 $(BLD)/ccl.$(O) \
124 $(BLD)/font.$(O) \
125 $(BLD)/fontset.$(O) \
126 $(BLD)/fringe.$(O) \
127 $(BLD)/image.$(O) \
128 $(BLD)/terminal.$(O) \
129 $(BLD)/menu.$(O) \
130 $(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)/w32font.$(O) \
138 $(BLD)/w32uniscribe.$(O)
139
140 LIBS = $(TLIB0) \
141 $(TLIB1) \
142 $(TLIB2) \
143 $(TLASTLIB) \
144 $(GNULIB) \
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" -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) $(TLIB2) $(TLASTLIB) $(TOBJ) $(TRES) \
179 ../nt/$(BLD)/addsection.exe $(GNULIB)
180 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
181 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
182
183 # These omit firstfile.${O}, but there's no documentation in there
184 # anyways.
185 buildobj.h: $(SRC)/makefile.w32-in
186 $(MAKE) $(MFLAGS) make-buildobj-$(SHELLTYPE)
187
188 # Cannot have blanks between the backslash and the redirection
189 # characters, because CMD's `echo' will put them in buildobj.h.
190 make-buildobj-CMD:
191 echo #define BUILDOBJ ^"\> buildobj.h
192 echo $(OBJ0) \>> buildobj.h
193 echo $(OBJ1) \>> buildobj.h
194 echo $(OBJ2) \>> buildobj.h
195 echo ^">> buildobj.h
196
197 # "
198 # The above line is here to countermand the single quote
199 # on the last "echo" command above, wrt font-lock.
200 make-buildobj-SH:
201 echo '#define BUILDOBJ $(DQUOTE)\' > buildobj.h
202 echo $(OBJ0) '\' >> buildobj.h
203 echo $(OBJ1) '\' >> buildobj.h
204 echo $(OBJ2) '\' >> buildobj.h
205 echo '$(DQUOTE)' >> buildobj.h
206
207 bootstrap: bootstrap-emacs
208
209 #
210 # Build a temacs with a sufficiently large PURESIZE to load the
211 # Lisp files from loadup.el in source form.
212 #
213 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
214 # this can break with GNU Make 3.81 and later if sh.exe is used.
215 bootstrap-temacs:
216 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
217
218 #
219 # Dump an Emacs executable named bootstrap-emacs containing the
220 # files from loadup.el in source form.
221 #
222 bootstrap-emacs: bootstrap-temacs
223 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
224 - mkdir "../bin"
225 $(CP) $(EMACS) ../bin
226
227 #
228 # Force recompile of files that depend on PURESIZE
229 #
230 bootstrap-clean:
231 - $(DEL) $(BLD)/alloc.$(O)
232 - $(DEL) $(BLD)/data.$(O)
233 - $(DEL) $(BLD)/intervals.$(O)
234 - $(DEL) $(BLD)/keyboard.$(O)
235 - $(DEL) $(BLD)/keymap.$(O)
236
237 #
238 # The resource file. NT 3.10 requires the use of cvtres; even though
239 # it is not necessary on later versions, it is still ok to use it.
240 #
241 $(TRES): ../nt/emacs.rc stamp_BLD
242 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
243
244 #
245 # Build the library. Split up the build into two phases...otherwise we
246 # run out of command line space.
247 #
248 $(TLIB0): $(OBJ0)
249 - $(DEL) $@
250 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
251 $(TLIB1): $(OBJ1)
252 - $(DEL) $@
253 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
254 $(TLIB2): $(OBJ2)
255 - $(DEL) $@
256 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
257
258 #
259 # Place lastfile.$(O) in its own library so that it can be loaded after
260 # the source libraries but before any system libraries. Doing so defines
261 # the end of Emacs' data section portably across compilers and systems.
262 #
263 $(TLASTLIB): $(BLD)/lastfile.$(O)
264 - $(DEL) $@
265 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
266
267 #
268 # Assuming INSTALL_DIR is defined, build and install emacs in it.
269 #
270 install: $(ALL)
271 - mkdir "$(INSTALL_DIR)/bin"
272 $(CP) $(EMACS) $(INSTALL_DIR)/bin
273
274 #
275 # Maintenance
276 #
277 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
278 # remove precious files if it happens to match their short 8+3 aliases.
279 clean:
280 - $(DEL) "s/*.h~" "m/*.h~"
281 - $(DEL) $(COMPILER_TEMP_FILES)
282 - $(DEL_TREE) $(OBJDIR)
283 - $(DEL) stamp_BLD
284 - $(DEL) buildobj.h
285
286 distclean: cleanall
287 - $(DEL) config.h epaths.h Makefile
288
289 maintainer-clean: distclean
290 - $(DEL) TAGS
291
292 cleanall: clean
293 - $(DEL_TREE) obj
294 - $(DEL_TREE) obj-spd
295 - $(DEL_TREE) oo
296 - $(DEL_TREE) oo-spd
297
298 ## Arrange to make a tags table TAGS-LISP for ../lisp,
299 ## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
300 ##
301 ## This works only with GNU Make.
302
303 TAGS: $(OBJ0) $(OBJ1) $(OBJ2)
304 $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE)
305
306 TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2)
307 $(MAKE) $(MFLAGS) TAGS-LISP-$(MAKETYPE)
308
309 TAGS-gmake:
310 ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \
311 --regex=@../nt/emacs-src.tags \
312 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ0))
313 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
314 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1))
315 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
316 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2)) \
317 $(CURDIR)/*.h
318
319 TAGS-nmake:
320 echo This target is not supported with NMake
321 exit -1
322
323 frc:
324 TAGS-LISP-gmake: frc
325 $(MAKE) $(MFLAGS) -C ../lisp TAGS-LISP DEST=../src
326
327 TAGS-LISP-nmake:
328 echo This target is not supported with NMake
329 exit -1
330
331 ../nt/TAGS: frc
332 $(MAKE) $(MFLAGS) nt-TAGS-$(MAKETYPE)
333
334 nt-TAGS-gmake:
335 $(MAKE) $(MFLAGS) -C ../nt TAGS
336
337 nt-TAGS-nmake:
338 echo This target is not supported with NMake
339 exit -1
340
341 full-tags: TAGS TAGS-LISP ../nt/TAGS
342 .PHONY: full-tags
343
344 ### DEPENDENCIES ###
345
346 EMACS_ROOT = ..
347 CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
348 $(EMACS_ROOT)/src/m/intel386.h \
349 $(EMACS_ROOT)/src/config.h \
350 $(EMACS_ROOT)/nt/inc/sys/stat.h
351
352 $(BLD)/alloc.$(O) : \
353 $(SRC)/alloc.c \
354 $(CONFIG_H) \
355 $(EMACS_ROOT)/nt/inc/unistd.h \
356 $(EMACS_ROOT)/nt/inc/sys/time.h \
357 $(SRC)/lisp.h \
358 $(SRC)/atimer.h \
359 $(SRC)/blockinput.h \
360 $(SRC)/buffer.h \
361 $(SRC)/character.h \
362 $(SRC)/coding.h \
363 $(SRC)/composite.h \
364 $(SRC)/dispextern.h \
365 $(SRC)/frame.h \
366 $(SRC)/intervals.h \
367 $(SRC)/keyboard.h \
368 $(SRC)/process.h \
369 $(SRC)/puresize.h \
370 $(SRC)/syssignal.h \
371 $(SRC)/systime.h \
372 $(SRC)/termhooks.h \
373 $(SRC)/w32.h \
374 $(SRC)/w32gui.h \
375 $(SRC)/window.h
376
377 $(BLD)/atimer.$(O) : \
378 $(SRC)/atimer.c \
379 $(CONFIG_H) \
380 $(EMACS_ROOT)/nt/inc/unistd.h \
381 $(EMACS_ROOT)/nt/inc/sys/time.h \
382 $(SRC)/lisp.h \
383 $(SRC)/atimer.h \
384 $(SRC)/blockinput.h \
385 $(SRC)/syssignal.h \
386 $(SRC)/systime.h
387
388 $(BLD)/bidi.$(O) : \
389 $(SRC)/bidi.c \
390 $(CONFIG_H) \
391 $(SRC)/lisp.h \
392 $(SRC)/bidimirror.h \
393 $(SRC)/biditype.h \
394 $(SRC)/buffer.h \
395 $(SRC)/character.h \
396 $(SRC)/dispextern.h \
397 $(SRC)/w32gui.h
398
399 $(BLD)/buffer.$(O) : \
400 $(SRC)/buffer.c \
401 $(CONFIG_H) \
402 $(EMACS_ROOT)/nt/inc/unistd.h \
403 $(EMACS_ROOT)/nt/inc/sys/param.h \
404 $(EMACS_ROOT)/nt/inc/sys/time.h \
405 $(SRC)/lisp.h \
406 $(SRC)/atimer.h \
407 $(SRC)/blockinput.h \
408 $(SRC)/buffer.h \
409 $(SRC)/character.h \
410 $(SRC)/coding.h \
411 $(SRC)/commands.h \
412 $(SRC)/composite.h \
413 $(SRC)/dispextern.h \
414 $(SRC)/frame.h \
415 $(SRC)/indent.h \
416 $(SRC)/intervals.h \
417 $(SRC)/keyboard.h \
418 $(SRC)/keymap.h \
419 $(SRC)/region-cache.h \
420 $(SRC)/systime.h \
421 $(SRC)/w32gui.h \
422 $(SRC)/window.h
423
424 $(BLD)/bytecode.$(O) : \
425 $(SRC)/bytecode.c \
426 $(CONFIG_H) \
427 $(SRC)/lisp.h \
428 $(SRC)/buffer.h \
429 $(SRC)/character.h \
430 $(SRC)/dispextern.h \
431 $(SRC)/syntax.h \
432 $(SRC)/w32gui.h \
433 $(SRC)/window.h
434
435 $(BLD)/callint.$(O) : \
436 $(SRC)/callint.c \
437 $(CONFIG_H) \
438 $(EMACS_ROOT)/nt/inc/sys/time.h \
439 $(SRC)/lisp.h \
440 $(SRC)/buffer.h \
441 $(SRC)/coding.h \
442 $(SRC)/commands.h \
443 $(SRC)/composite.h \
444 $(SRC)/dispextern.h \
445 $(SRC)/keyboard.h \
446 $(SRC)/keymap.h \
447 $(SRC)/systime.h \
448 $(SRC)/w32gui.h \
449 $(SRC)/window.h
450
451 $(BLD)/callproc.$(O) : \
452 $(SRC)/callproc.c \
453 $(CONFIG_H) \
454 $(EMACS_ROOT)/nt/inc/unistd.h \
455 $(EMACS_ROOT)/nt/inc/sys/file.h \
456 $(EMACS_ROOT)/nt/inc/sys/time.h \
457 $(SRC)/lisp.h \
458 $(SRC)/atimer.h \
459 $(SRC)/blockinput.h \
460 $(SRC)/buffer.h \
461 $(SRC)/ccl.h \
462 $(SRC)/character.h \
463 $(SRC)/coding.h \
464 $(SRC)/commands.h \
465 $(SRC)/composite.h \
466 $(SRC)/dispextern.h \
467 $(SRC)/epaths.h \
468 $(SRC)/frame.h \
469 $(SRC)/process.h \
470 $(SRC)/syssignal.h \
471 $(SRC)/systime.h \
472 $(SRC)/systty.h \
473 $(SRC)/termhooks.h \
474 $(SRC)/w32.h \
475 $(SRC)/w32gui.h
476
477 $(BLD)/casefiddle.$(O) : \
478 $(SRC)/casefiddle.c \
479 $(CONFIG_H) \
480 $(SRC)/lisp.h \
481 $(SRC)/buffer.h \
482 $(SRC)/character.h \
483 $(SRC)/commands.h \
484 $(SRC)/composite.h \
485 $(SRC)/keymap.h \
486 $(SRC)/syntax.h
487
488 $(BLD)/casetab.$(O) : \
489 $(SRC)/casetab.c \
490 $(CONFIG_H) \
491 $(SRC)/lisp.h \
492 $(SRC)/buffer.h \
493 $(SRC)/character.h
494
495 $(BLD)/category.$(O) : \
496 $(SRC)/category.c \
497 $(CONFIG_H) \
498 $(SRC)/lisp.h \
499 $(SRC)/buffer.h \
500 $(SRC)/category.h \
501 $(SRC)/character.h \
502 $(SRC)/charset.h \
503 $(SRC)/keymap.h
504
505 $(BLD)/ccl.$(O) : \
506 $(SRC)/ccl.c \
507 $(CONFIG_H) \
508 $(SRC)/lisp.h \
509 $(SRC)/ccl.h \
510 $(SRC)/character.h \
511 $(SRC)/charset.h \
512 $(SRC)/coding.h \
513 $(SRC)/composite.h
514
515 $(BLD)/character.$(O) : \
516 $(SRC)/character.c \
517 $(CONFIG_H) \
518 $(SRC)/lisp.h \
519 $(SRC)/buffer.h \
520 $(SRC)/character.h \
521 $(SRC)/charset.h \
522 $(SRC)/composite.h \
523 $(SRC)/disptab.h
524
525 $(BLD)/charset.$(O) : \
526 $(SRC)/charset.c \
527 $(CONFIG_H) \
528 $(EMACS_ROOT)/nt/inc/unistd.h \
529 $(SRC)/lisp.h \
530 $(SRC)/buffer.h \
531 $(SRC)/character.h \
532 $(SRC)/charset.h \
533 $(SRC)/coding.h \
534 $(SRC)/composite.h \
535 $(SRC)/disptab.h
536
537 $(BLD)/chartab.$(O) : \
538 $(SRC)/chartab.c \
539 $(CONFIG_H) \
540 $(SRC)/lisp.h \
541 $(SRC)/ccl.h \
542 $(SRC)/character.h \
543 $(SRC)/charset.h
544
545 $(BLD)/cmds.$(O) : \
546 $(SRC)/cmds.c \
547 $(CONFIG_H) \
548 $(EMACS_ROOT)/nt/inc/sys/time.h \
549 $(SRC)/lisp.h \
550 $(SRC)/buffer.h \
551 $(SRC)/character.h \
552 $(SRC)/coding.h \
553 $(SRC)/commands.h \
554 $(SRC)/composite.h \
555 $(SRC)/dispextern.h \
556 $(SRC)/frame.h \
557 $(SRC)/keyboard.h \
558 $(SRC)/keymap.h \
559 $(SRC)/syntax.h \
560 $(SRC)/systime.h \
561 $(SRC)/w32gui.h \
562 $(SRC)/window.h
563
564 $(BLD)/coding.$(O) : \
565 $(SRC)/coding.c \
566 $(CONFIG_H) \
567 $(SRC)/lisp.h \
568 $(SRC)/buffer.h \
569 $(SRC)/ccl.h \
570 $(SRC)/character.h \
571 $(SRC)/charset.h \
572 $(SRC)/coding.h \
573 $(SRC)/composite.h \
574 $(SRC)/dispextern.h \
575 $(SRC)/frame.h \
576 $(SRC)/termhooks.h \
577 $(SRC)/w32gui.h \
578 $(SRC)/window.h
579
580 $(BLD)/composite.$(O) : \
581 $(SRC)/composite.c \
582 $(CONFIG_H) \
583 $(SRC)/lisp.h \
584 $(SRC)/buffer.h \
585 $(SRC)/ccl.h \
586 $(SRC)/character.h \
587 $(SRC)/coding.h \
588 $(SRC)/composite.h \
589 $(SRC)/dispextern.h \
590 $(SRC)/font.h \
591 $(SRC)/frame.h \
592 $(SRC)/intervals.h \
593 $(SRC)/termhooks.h \
594 $(SRC)/w32gui.h \
595 $(SRC)/window.h
596
597 $(BLD)/data.$(O) : \
598 $(SRC)/data.c \
599 $(CONFIG_H) \
600 $(EMACS_ROOT)/nt/inc/sys/time.h \
601 $(SRC)/lisp.h \
602 $(SRC)/buffer.h \
603 $(SRC)/ccl.h \
604 $(SRC)/character.h \
605 $(SRC)/coding.h \
606 $(SRC)/composite.h \
607 $(SRC)/dispextern.h \
608 $(SRC)/font.h \
609 $(SRC)/frame.h \
610 $(SRC)/keyboard.h \
611 $(SRC)/puresize.h \
612 $(SRC)/syssignal.h \
613 $(SRC)/systime.h \
614 $(SRC)/termhooks.h \
615 $(SRC)/w32gui.h
616
617 $(BLD)/dired.$(O) : \
618 $(SRC)/dired.c \
619 $(CONFIG_H) \
620 $(EMACS_ROOT)/nt/inc/grp.h \
621 $(EMACS_ROOT)/nt/inc/pwd.h \
622 $(EMACS_ROOT)/nt/inc/unistd.h \
623 $(EMACS_ROOT)/nt/inc/sys/dir.h \
624 $(EMACS_ROOT)/nt/inc/sys/time.h \
625 $(SRC)/lisp.h \
626 $(SRC)/atimer.h \
627 $(SRC)/blockinput.h \
628 $(SRC)/buffer.h \
629 $(SRC)/character.h \
630 $(SRC)/charset.h \
631 $(SRC)/coding.h \
632 $(SRC)/commands.h \
633 $(SRC)/composite.h \
634 $(SRC)/ndir.h \
635 $(SRC)/regex.h \
636 $(SRC)/systime.h
637
638 $(BLD)/dispnew.$(O) : \
639 $(SRC)/dispnew.c \
640 $(CONFIG_H) \
641 $(EMACS_ROOT)/nt/inc/unistd.h \
642 $(EMACS_ROOT)/nt/inc/sys/time.h \
643 $(SRC)/lisp.h \
644 $(SRC)/atimer.h \
645 $(SRC)/blockinput.h \
646 $(SRC)/buffer.h \
647 $(SRC)/character.h \
648 $(SRC)/cm.h \
649 $(SRC)/coding.h \
650 $(SRC)/commands.h \
651 $(SRC)/composite.h \
652 $(SRC)/dispextern.h \
653 $(SRC)/disptab.h \
654 $(SRC)/frame.h \
655 $(SRC)/indent.h \
656 $(SRC)/intervals.h \
657 $(SRC)/keyboard.h \
658 $(SRC)/process.h \
659 $(SRC)/syssignal.h \
660 $(SRC)/systime.h \
661 $(SRC)/termchar.h \
662 $(SRC)/termhooks.h \
663 $(SRC)/termopts.h \
664 $(SRC)/w32gui.h \
665 $(SRC)/w32term.h \
666 $(SRC)/window.h
667
668 $(BLD)/doc.$(O) : \
669 $(SRC)/doc.c \
670 $(CONFIG_H) \
671 buildobj.h \
672 $(EMACS_ROOT)/nt/inc/unistd.h \
673 $(EMACS_ROOT)/nt/inc/sys/file.h \
674 $(EMACS_ROOT)/nt/inc/sys/time.h \
675 $(SRC)/lisp.h \
676 $(SRC)/buffer.h \
677 $(SRC)/character.h \
678 $(SRC)/coding.h \
679 $(SRC)/composite.h \
680 $(SRC)/keyboard.h \
681 $(SRC)/keymap.h \
682 $(SRC)/systime.h
683
684 $(BLD)/doprnt.$(O) : \
685 $(SRC)/doprnt.c \
686 $(CONFIG_H) \
687 $(EMACS_ROOT)/nt/inc/unistd.h \
688 $(SRC)/lisp.h \
689 $(SRC)/character.h
690
691 $(BLD)/editfns.$(O) : \
692 $(SRC)/editfns.c \
693 $(CONFIG_H) \
694 $(EMACS_ROOT)/nt/inc/pwd.h \
695 $(EMACS_ROOT)/nt/inc/unistd.h \
696 $(EMACS_ROOT)/nt/inc/sys/time.h \
697 $(SRC)/lisp.h \
698 $(SRC)/atimer.h \
699 $(SRC)/blockinput.h \
700 $(SRC)/buffer.h \
701 $(SRC)/character.h \
702 $(SRC)/coding.h \
703 $(SRC)/composite.h \
704 $(SRC)/dispextern.h \
705 $(SRC)/frame.h \
706 $(SRC)/intervals.h \
707 $(SRC)/systime.h \
708 $(SRC)/w32gui.h \
709 $(SRC)/window.h
710
711 $(BLD)/emacs.$(O) : \
712 $(SRC)/emacs.c \
713 $(CONFIG_H) \
714 $(EMACS_ROOT)/nt/inc/unistd.h \
715 $(EMACS_ROOT)/nt/inc/sys/file.h \
716 $(EMACS_ROOT)/nt/inc/sys/time.h \
717 $(SRC)/lisp.h \
718 $(SRC)/atimer.h \
719 $(SRC)/blockinput.h \
720 $(SRC)/buffer.h \
721 $(SRC)/coding.h \
722 $(SRC)/commands.h \
723 $(SRC)/composite.h \
724 $(SRC)/dispextern.h \
725 $(SRC)/frame.h \
726 $(SRC)/intervals.h \
727 $(SRC)/keyboard.h \
728 $(SRC)/keymap.h \
729 $(SRC)/process.h \
730 $(SRC)/syssignal.h \
731 $(SRC)/systime.h \
732 $(SRC)/systty.h \
733 $(SRC)/termhooks.h \
734 $(SRC)/w32.h \
735 $(SRC)/w32gui.h \
736 $(SRC)/w32heap.h \
737 $(SRC)/window.h
738
739 $(BLD)/eval.$(O) : \
740 $(SRC)/eval.c \
741 $(CONFIG_H) \
742 $(EMACS_ROOT)/nt/inc/sys/time.h \
743 $(SRC)/lisp.h \
744 $(SRC)/atimer.h \
745 $(SRC)/blockinput.h \
746 $(SRC)/coding.h \
747 $(SRC)/commands.h \
748 $(SRC)/composite.h \
749 $(SRC)/dispextern.h \
750 $(SRC)/frame.h \
751 $(SRC)/keyboard.h \
752 $(SRC)/systime.h \
753 $(SRC)/w32gui.h
754
755 $(BLD)/fileio.$(O) : \
756 $(SRC)/fileio.c \
757 $(CONFIG_H) \
758 $(EMACS_ROOT)/nt/inc/pwd.h \
759 $(EMACS_ROOT)/nt/inc/unistd.h \
760 $(EMACS_ROOT)/nt/inc/sys/time.h \
761 $(SRC)/lisp.h \
762 $(SRC)/atimer.h \
763 $(SRC)/blockinput.h \
764 $(SRC)/buffer.h \
765 $(SRC)/character.h \
766 $(SRC)/coding.h \
767 $(SRC)/commands.h \
768 $(SRC)/composite.h \
769 $(SRC)/dispextern.h \
770 $(SRC)/frame.h \
771 $(SRC)/intervals.h \
772 $(SRC)/systime.h \
773 $(SRC)/w32gui.h \
774 $(SRC)/window.h
775
776 $(BLD)/filelock.$(O) : \
777 $(SRC)/filelock.c \
778 $(CONFIG_H) \
779 $(EMACS_ROOT)/nt/inc/pwd.h \
780 $(EMACS_ROOT)/nt/inc/unistd.h \
781 $(EMACS_ROOT)/nt/inc/sys/file.h \
782 $(EMACS_ROOT)/nt/inc/sys/time.h \
783 $(SRC)/lisp.h \
784 $(SRC)/buffer.h \
785 $(SRC)/character.h \
786 $(SRC)/coding.h \
787 $(SRC)/composite.h \
788 $(SRC)/systime.h
789
790 $(BLD)/filemode.$(O) : \
791 $(SRC)/filemode.c \
792 $(CONFIG_H)
793
794 $(BLD)/firstfile.$(O) : \
795 $(SRC)/firstfile.c \
796 $(CONFIG_H)
797
798 $(BLD)/floatfns.$(O) : \
799 $(SRC)/floatfns.c \
800 $(CONFIG_H) \
801 $(SRC)/lisp.h \
802 $(SRC)/syssignal.h
803
804 $(BLD)/fns.$(O) : \
805 $(SRC)/fns.c \
806 $(CONFIG_H) \
807 $(EMACS_ROOT)/nt/inc/langinfo.h \
808 $(EMACS_ROOT)/nt/inc/nl_types.h \
809 $(EMACS_ROOT)/nt/inc/unistd.h \
810 $(EMACS_ROOT)/nt/inc/sys/time.h \
811 $(SRC)/lisp.h \
812 $(SRC)/atimer.h \
813 $(SRC)/blockinput.h \
814 $(SRC)/buffer.h \
815 $(SRC)/character.h \
816 $(SRC)/coding.h \
817 $(SRC)/commands.h \
818 $(SRC)/composite.h \
819 $(SRC)/dispextern.h \
820 $(SRC)/frame.h \
821 $(SRC)/intervals.h \
822 $(SRC)/keyboard.h \
823 $(SRC)/keymap.h \
824 $(SRC)/md5.h \
825 $(SRC)/systime.h \
826 $(SRC)/w32gui.h \
827 $(SRC)/window.h
828
829 $(BLD)/font.$(O) : \
830 $(SRC)/font.c \
831 $(CONFIG_H) \
832 $(SRC)/lisp.h \
833 $(SRC)/buffer.h \
834 $(SRC)/ccl.h \
835 $(SRC)/character.h \
836 $(SRC)/charset.h \
837 $(SRC)/composite.h \
838 $(SRC)/dispextern.h \
839 $(SRC)/font.h \
840 $(SRC)/fontset.h \
841 $(SRC)/frame.h \
842 $(SRC)/w32gui.h \
843 $(SRC)/w32term.h \
844 $(SRC)/window.h
845
846 $(BLD)/fontset.$(O) : \
847 $(SRC)/fontset.c \
848 $(CONFIG_H) \
849 $(EMACS_ROOT)/nt/inc/sys/time.h \
850 $(SRC)/lisp.h \
851 $(SRC)/atimer.h \
852 $(SRC)/blockinput.h \
853 $(SRC)/buffer.h \
854 $(SRC)/ccl.h \
855 $(SRC)/character.h \
856 $(SRC)/charset.h \
857 $(SRC)/coding.h \
858 $(SRC)/composite.h \
859 $(SRC)/dispextern.h \
860 $(SRC)/font.h \
861 $(SRC)/fontset.h \
862 $(SRC)/frame.h \
863 $(SRC)/intervals.h \
864 $(SRC)/keyboard.h \
865 $(SRC)/systime.h \
866 $(SRC)/termhooks.h \
867 $(SRC)/w32gui.h \
868 $(SRC)/w32term.h \
869 $(SRC)/window.h
870
871 $(BLD)/frame.$(O) : \
872 $(SRC)/frame.c \
873 $(CONFIG_H) \
874 $(EMACS_ROOT)/nt/inc/sys/time.h \
875 $(SRC)/lisp.h \
876 $(SRC)/atimer.h \
877 $(SRC)/blockinput.h \
878 $(SRC)/buffer.h \
879 $(SRC)/ccl.h \
880 $(SRC)/character.h \
881 $(SRC)/coding.h \
882 $(SRC)/commands.h \
883 $(SRC)/composite.h \
884 $(SRC)/dispextern.h \
885 $(SRC)/font.h \
886 $(SRC)/fontset.h \
887 $(SRC)/frame.h \
888 $(SRC)/keyboard.h \
889 $(SRC)/systime.h \
890 $(SRC)/termchar.h \
891 $(SRC)/termhooks.h \
892 $(SRC)/w32gui.h \
893 $(SRC)/w32term.h \
894 $(SRC)/window.h
895
896 $(BLD)/fringe.$(O) : \
897 $(SRC)/fringe.c \
898 $(CONFIG_H) \
899 $(EMACS_ROOT)/nt/inc/sys/time.h \
900 $(SRC)/lisp.h \
901 $(SRC)/atimer.h \
902 $(SRC)/blockinput.h \
903 $(SRC)/buffer.h \
904 $(SRC)/dispextern.h \
905 $(SRC)/frame.h \
906 $(SRC)/systime.h \
907 $(SRC)/termhooks.h \
908 $(SRC)/w32gui.h \
909 $(SRC)/window.h
910
911 $(BLD)/gmalloc.$(O) : \
912 $(SRC)/gmalloc.c \
913 $(CONFIG_H) \
914 $(EMACS_ROOT)/nt/inc/unistd.h \
915 $(SRC)/getpagesize.h
916
917 $(BLD)/image.$(O) : \
918 $(SRC)/image.c \
919 $(CONFIG_H) \
920 $(EMACS_ROOT)/nt/inc/unistd.h \
921 $(EMACS_ROOT)/nt/inc/sys/time.h \
922 $(SRC)/lisp.h \
923 $(SRC)/atimer.h \
924 $(SRC)/blockinput.h \
925 $(SRC)/ccl.h \
926 $(SRC)/character.h \
927 $(SRC)/coding.h \
928 $(SRC)/composite.h \
929 $(SRC)/dispextern.h \
930 $(SRC)/epaths.h \
931 $(SRC)/font.h \
932 $(SRC)/frame.h \
933 $(SRC)/systime.h \
934 $(SRC)/termhooks.h \
935 $(SRC)/w32gui.h \
936 $(SRC)/w32term.h \
937 $(SRC)/window.h
938
939 $(BLD)/indent.$(O) : \
940 $(SRC)/indent.c \
941 $(CONFIG_H) \
942 $(EMACS_ROOT)/nt/inc/sys/time.h \
943 $(SRC)/lisp.h \
944 $(SRC)/buffer.h \
945 $(SRC)/category.h \
946 $(SRC)/character.h \
947 $(SRC)/coding.h \
948 $(SRC)/composite.h \
949 $(SRC)/dispextern.h \
950 $(SRC)/disptab.h \
951 $(SRC)/frame.h \
952 $(SRC)/indent.h \
953 $(SRC)/intervals.h \
954 $(SRC)/keyboard.h \
955 $(SRC)/region-cache.h \
956 $(SRC)/systime.h \
957 $(SRC)/termchar.h \
958 $(SRC)/termopts.h \
959 $(SRC)/w32gui.h \
960 $(SRC)/window.h
961
962 $(BLD)/insdel.$(O) : \
963 $(SRC)/insdel.c \
964 $(CONFIG_H) \
965 $(EMACS_ROOT)/nt/inc/sys/time.h \
966 $(SRC)/lisp.h \
967 $(SRC)/atimer.h \
968 $(SRC)/blockinput.h \
969 $(SRC)/buffer.h \
970 $(SRC)/character.h \
971 $(SRC)/composite.h \
972 $(SRC)/dispextern.h \
973 $(SRC)/intervals.h \
974 $(SRC)/region-cache.h \
975 $(SRC)/systime.h \
976 $(SRC)/w32gui.h \
977 $(SRC)/window.h
978
979 $(BLD)/intervals.$(O) : \
980 $(SRC)/intervals.c \
981 $(CONFIG_H) \
982 $(EMACS_ROOT)/nt/inc/sys/time.h \
983 $(SRC)/lisp.h \
984 $(SRC)/buffer.h \
985 $(SRC)/coding.h \
986 $(SRC)/composite.h \
987 $(SRC)/dispextern.h \
988 $(SRC)/intervals.h \
989 $(SRC)/keyboard.h \
990 $(SRC)/keymap.h \
991 $(SRC)/puresize.h \
992 $(SRC)/systime.h \
993 $(SRC)/w32gui.h
994
995 $(BLD)/keyboard.$(O) : \
996 $(SRC)/keyboard.c \
997 $(CONFIG_H) \
998 $(EMACS_ROOT)/nt/inc/unistd.h \
999 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1000 $(EMACS_ROOT)/nt/inc/sys/time.h \
1001 $(SRC)/lisp.h \
1002 $(SRC)/atimer.h \
1003 $(SRC)/blockinput.h \
1004 $(SRC)/buffer.h \
1005 $(SRC)/character.h \
1006 $(SRC)/coding.h \
1007 $(SRC)/commands.h \
1008 $(SRC)/composite.h \
1009 $(SRC)/dispextern.h \
1010 $(SRC)/disptab.h \
1011 $(SRC)/frame.h \
1012 $(SRC)/intervals.h \
1013 $(SRC)/keyboard.h \
1014 $(SRC)/keymap.h \
1015 $(SRC)/macros.h \
1016 $(SRC)/process.h \
1017 $(SRC)/puresize.h \
1018 $(SRC)/syntax.h \
1019 $(SRC)/syssignal.h \
1020 $(SRC)/systime.h \
1021 $(SRC)/termchar.h \
1022 $(SRC)/termhooks.h \
1023 $(SRC)/termopts.h \
1024 $(SRC)/w32gui.h \
1025 $(SRC)/w32term.h \
1026 $(SRC)/window.h
1027
1028 $(BLD)/keymap.$(O) : \
1029 $(SRC)/keymap.c \
1030 $(CONFIG_H) \
1031 $(EMACS_ROOT)/nt/inc/sys/time.h \
1032 $(SRC)/lisp.h \
1033 $(SRC)/atimer.h \
1034 $(SRC)/blockinput.h \
1035 $(SRC)/buffer.h \
1036 $(SRC)/character.h \
1037 $(SRC)/charset.h \
1038 $(SRC)/coding.h \
1039 $(SRC)/commands.h \
1040 $(SRC)/composite.h \
1041 $(SRC)/dispextern.h \
1042 $(SRC)/frame.h \
1043 $(SRC)/intervals.h \
1044 $(SRC)/keyboard.h \
1045 $(SRC)/keymap.h \
1046 $(SRC)/puresize.h \
1047 $(SRC)/systime.h \
1048 $(SRC)/termhooks.h \
1049 $(SRC)/w32gui.h \
1050 $(SRC)/window.h
1051
1052 $(BLD)/lastfile.$(O) : \
1053 $(SRC)/lastfile.c \
1054 $(CONFIG_H)
1055
1056 $(BLD)/lread.$(O) : \
1057 $(SRC)/lread.c \
1058 $(CONFIG_H) \
1059 $(EMACS_ROOT)/nt/inc/unistd.h \
1060 $(EMACS_ROOT)/nt/inc/sys/file.h \
1061 $(EMACS_ROOT)/nt/inc/sys/time.h \
1062 $(SRC)/lisp.h \
1063 $(SRC)/atimer.h \
1064 $(SRC)/blockinput.h \
1065 $(SRC)/buffer.h \
1066 $(SRC)/character.h \
1067 $(SRC)/charset.h \
1068 $(SRC)/coding.h \
1069 $(SRC)/commands.h \
1070 $(SRC)/composite.h \
1071 $(SRC)/dispextern.h \
1072 $(SRC)/epaths.h \
1073 $(SRC)/frame.h \
1074 $(SRC)/intervals.h \
1075 $(SRC)/keyboard.h \
1076 $(SRC)/systime.h \
1077 $(SRC)/termhooks.h \
1078 $(SRC)/w32gui.h
1079
1080 $(BLD)/macros.$(O) : \
1081 $(SRC)/macros.c \
1082 $(CONFIG_H) \
1083 $(EMACS_ROOT)/nt/inc/sys/time.h \
1084 $(SRC)/lisp.h \
1085 $(SRC)/buffer.h \
1086 $(SRC)/coding.h \
1087 $(SRC)/commands.h \
1088 $(SRC)/composite.h \
1089 $(SRC)/dispextern.h \
1090 $(SRC)/keyboard.h \
1091 $(SRC)/macros.h \
1092 $(SRC)/systime.h \
1093 $(SRC)/w32gui.h \
1094 $(SRC)/window.h
1095
1096 $(BLD)/marker.$(O) : \
1097 $(SRC)/marker.c \
1098 $(CONFIG_H) \
1099 $(SRC)/lisp.h \
1100 $(SRC)/buffer.h \
1101 $(SRC)/character.h
1102
1103 $(BLD)/md5.$(O) : \
1104 $(SRC)/md5.c \
1105 $(CONFIG_H) \
1106 $(SRC)/md5.h
1107
1108 $(BLD)/menu.$(O) : \
1109 $(SRC)/menu.c \
1110 $(CONFIG_H) \
1111 $(EMACS_ROOT)/nt/inc/sys/time.h \
1112 $(SRC)/lisp.h \
1113 $(SRC)/atimer.h \
1114 $(SRC)/blockinput.h \
1115 $(SRC)/coding.h \
1116 $(SRC)/composite.h \
1117 $(SRC)/dispextern.h \
1118 $(SRC)/frame.h \
1119 $(SRC)/keyboard.h \
1120 $(SRC)/keymap.h \
1121 $(SRC)/menu.h \
1122 $(SRC)/systime.h \
1123 $(SRC)/termhooks.h \
1124 $(SRC)/w32gui.h \
1125 $(SRC)/w32term.h \
1126 $(SRC)/window.h
1127
1128 $(BLD)/minibuf.$(O) : \
1129 $(SRC)/minibuf.c \
1130 $(CONFIG_H) \
1131 $(EMACS_ROOT)/nt/inc/sys/time.h \
1132 $(SRC)/lisp.h \
1133 $(SRC)/buffer.h \
1134 $(SRC)/character.h \
1135 $(SRC)/coding.h \
1136 $(SRC)/commands.h \
1137 $(SRC)/composite.h \
1138 $(SRC)/dispextern.h \
1139 $(SRC)/frame.h \
1140 $(SRC)/intervals.h \
1141 $(SRC)/keyboard.h \
1142 $(SRC)/keymap.h \
1143 $(SRC)/syntax.h \
1144 $(SRC)/systime.h \
1145 $(SRC)/termhooks.h \
1146 $(SRC)/w32gui.h \
1147 $(SRC)/window.h
1148
1149 $(BLD)/w32.$(O) : \
1150 $(SRC)/w32.c \
1151 $(CONFIG_H) \
1152 $(EMACS_ROOT)/nt/inc/grp.h \
1153 $(EMACS_ROOT)/nt/inc/pwd.h \
1154 $(EMACS_ROOT)/nt/inc/unistd.h \
1155 $(EMACS_ROOT)/nt/inc/sys/file.h \
1156 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1157 $(EMACS_ROOT)/nt/inc/sys/time.h \
1158 $(SRC)/lisp.h \
1159 $(SRC)/coding.h \
1160 $(SRC)/composite.h \
1161 $(SRC)/dispextern.h \
1162 $(SRC)/ndir.h \
1163 $(SRC)/process.h \
1164 $(SRC)/systime.h \
1165 $(SRC)/w32.h \
1166 $(SRC)/w32gui.h \
1167 $(SRC)/w32heap.h
1168
1169 $(BLD)/w32heap.$(O) : \
1170 $(SRC)/w32heap.c \
1171 $(CONFIG_H) \
1172 $(SRC)/lisp.h \
1173 $(SRC)/w32heap.h
1174
1175 $(BLD)/w32inevt.$(O) : \
1176 $(SRC)/w32inevt.c \
1177 $(CONFIG_H) \
1178 $(EMACS_ROOT)/nt/inc/sys/time.h \
1179 $(SRC)/lisp.h \
1180 $(SRC)/atimer.h \
1181 $(SRC)/blockinput.h \
1182 $(SRC)/coding.h \
1183 $(SRC)/composite.h \
1184 $(SRC)/dispextern.h \
1185 $(SRC)/frame.h \
1186 $(SRC)/keyboard.h \
1187 $(SRC)/systime.h \
1188 $(SRC)/termhooks.h \
1189 $(SRC)/w32gui.h \
1190 $(SRC)/w32heap.h \
1191 $(SRC)/w32term.h
1192
1193 $(BLD)/w32proc.$(O) : \
1194 $(SRC)/w32proc.c \
1195 $(CONFIG_H) \
1196 $(EMACS_ROOT)/nt/inc/langinfo.h \
1197 $(EMACS_ROOT)/nt/inc/nl_types.h \
1198 $(EMACS_ROOT)/nt/inc/unistd.h \
1199 $(EMACS_ROOT)/nt/inc/sys/file.h \
1200 $(EMACS_ROOT)/nt/inc/sys/time.h \
1201 $(SRC)/lisp.h \
1202 $(SRC)/character.h \
1203 $(SRC)/coding.h \
1204 $(SRC)/composite.h \
1205 $(SRC)/dispextern.h \
1206 $(SRC)/process.h \
1207 $(SRC)/syssignal.h \
1208 $(SRC)/systime.h \
1209 $(SRC)/syswait.h \
1210 $(SRC)/w32.h \
1211 $(SRC)/w32gui.h \
1212 $(SRC)/w32heap.h \
1213 $(SRC)/w32term.h
1214
1215 $(BLD)/w32console.$(O) : \
1216 $(SRC)/w32console.c \
1217 $(CONFIG_H) \
1218 $(SRC)/lisp.h \
1219 $(SRC)/character.h \
1220 $(SRC)/coding.h \
1221 $(SRC)/composite.h \
1222 $(SRC)/dispextern.h \
1223 $(SRC)/disptab.h \
1224 $(SRC)/frame.h \
1225 $(SRC)/termchar.h \
1226 $(SRC)/termhooks.h \
1227 $(SRC)/w32gui.h \
1228 $(SRC)/w32inevt.h
1229
1230 $(BLD)/print.$(O) : \
1231 $(SRC)/print.c \
1232 $(CONFIG_H) \
1233 $(EMACS_ROOT)/nt/inc/unistd.h \
1234 $(EMACS_ROOT)/nt/inc/sys/time.h \
1235 $(SRC)/lisp.h \
1236 $(SRC)/atimer.h \
1237 $(SRC)/blockinput.h \
1238 $(SRC)/buffer.h \
1239 $(SRC)/ccl.h \
1240 $(SRC)/character.h \
1241 $(SRC)/charset.h \
1242 $(SRC)/coding.h \
1243 $(SRC)/composite.h \
1244 $(SRC)/dispextern.h \
1245 $(SRC)/font.h \
1246 $(SRC)/frame.h \
1247 $(SRC)/intervals.h \
1248 $(SRC)/keyboard.h \
1249 $(SRC)/process.h \
1250 $(SRC)/systime.h \
1251 $(SRC)/termchar.h \
1252 $(SRC)/termhooks.h \
1253 $(SRC)/w32gui.h \
1254 $(SRC)/window.h
1255
1256 $(BLD)/process.$(O) : \
1257 $(SRC)/process.c \
1258 $(CONFIG_H) \
1259 $(EMACS_ROOT)/nt/inc/netdb.h \
1260 $(EMACS_ROOT)/nt/inc/unistd.h \
1261 $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1262 $(EMACS_ROOT)/nt/inc/netinet/in.h \
1263 $(EMACS_ROOT)/nt/inc/sys/file.h \
1264 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1265 $(EMACS_ROOT)/nt/inc/sys/time.h \
1266 $(SRC)/lisp.h \
1267 $(SRC)/atimer.h \
1268 $(SRC)/blockinput.h \
1269 $(SRC)/buffer.h \
1270 $(SRC)/character.h \
1271 $(SRC)/coding.h \
1272 $(SRC)/commands.h \
1273 $(SRC)/composite.h \
1274 $(SRC)/dispextern.h \
1275 $(SRC)/frame.h \
1276 $(SRC)/keyboard.h \
1277 $(SRC)/process.h \
1278 $(SRC)/sysselect.h \
1279 $(SRC)/syssignal.h \
1280 $(SRC)/systime.h \
1281 $(SRC)/systty.h \
1282 $(SRC)/syswait.h \
1283 $(SRC)/termhooks.h \
1284 $(SRC)/termopts.h \
1285 $(SRC)/w32.h \
1286 $(SRC)/w32gui.h \
1287 $(SRC)/window.h
1288
1289 $(BLD)/ralloc.$(O) : \
1290 $(SRC)/ralloc.c \
1291 $(CONFIG_H) \
1292 $(EMACS_ROOT)/nt/inc/unistd.h \
1293 $(EMACS_ROOT)/nt/inc/sys/time.h \
1294 $(SRC)/lisp.h \
1295 $(SRC)/atimer.h \
1296 $(SRC)/blockinput.h \
1297 $(SRC)/getpagesize.h \
1298 $(SRC)/systime.h
1299
1300 $(BLD)/regex.$(O) : \
1301 $(SRC)/regex.c \
1302 $(CONFIG_H) \
1303 $(SRC)/lisp.h \
1304 $(SRC)/buffer.h \
1305 $(SRC)/category.h \
1306 $(SRC)/character.h \
1307 $(SRC)/regex.h \
1308 $(SRC)/syntax.h
1309
1310 $(BLD)/region-cache.$(O) : \
1311 $(SRC)/region-cache.c \
1312 $(CONFIG_H) \
1313 $(SRC)/lisp.h \
1314 $(SRC)/buffer.h \
1315 $(SRC)/region-cache.h
1316
1317 $(BLD)/scroll.$(O) : \
1318 $(SRC)/scroll.c \
1319 $(CONFIG_H) \
1320 $(EMACS_ROOT)/nt/inc/sys/time.h \
1321 $(SRC)/lisp.h \
1322 $(SRC)/coding.h \
1323 $(SRC)/composite.h \
1324 $(SRC)/dispextern.h \
1325 $(SRC)/frame.h \
1326 $(SRC)/keyboard.h \
1327 $(SRC)/systime.h \
1328 $(SRC)/termchar.h \
1329 $(SRC)/termhooks.h \
1330 $(SRC)/w32gui.h \
1331 $(SRC)/window.h
1332
1333 $(BLD)/search.$(O) : \
1334 $(SRC)/search.c \
1335 $(CONFIG_H) \
1336 $(EMACS_ROOT)/nt/inc/sys/time.h \
1337 $(SRC)/lisp.h \
1338 $(SRC)/atimer.h \
1339 $(SRC)/blockinput.h \
1340 $(SRC)/buffer.h \
1341 $(SRC)/category.h \
1342 $(SRC)/character.h \
1343 $(SRC)/charset.h \
1344 $(SRC)/commands.h \
1345 $(SRC)/composite.h \
1346 $(SRC)/dispextern.h \
1347 $(SRC)/intervals.h \
1348 $(SRC)/regex.h \
1349 $(SRC)/region-cache.h \
1350 $(SRC)/syntax.h \
1351 $(SRC)/systime.h \
1352 $(SRC)/w32gui.h
1353
1354 $(BLD)/sound.$(O) : \
1355 $(SRC)/sound.c \
1356 $(CONFIG_H) \
1357 $(EMACS_ROOT)/nt/inc/unistd.h \
1358 $(EMACS_ROOT)/nt/inc/sys/time.h \
1359 $(SRC)/lisp.h \
1360 $(SRC)/atimer.h \
1361 $(SRC)/dispextern.h \
1362 $(SRC)/syssignal.h \
1363 $(SRC)/systime.h \
1364 $(SRC)/w32gui.h
1365
1366 $(BLD)/strftime.$(O) : \
1367 $(SRC)/strftime.c \
1368 $(CONFIG_H) \
1369 $(EMACS_ROOT)/nt/inc/sys/time.h
1370
1371 $(BLD)/syntax.$(O) : \
1372 $(SRC)/syntax.c \
1373 $(CONFIG_H) \
1374 $(SRC)/lisp.h \
1375 $(SRC)/buffer.h \
1376 $(SRC)/category.h \
1377 $(SRC)/character.h \
1378 $(SRC)/commands.h \
1379 $(SRC)/composite.h \
1380 $(SRC)/dispextern.h \
1381 $(SRC)/intervals.h \
1382 $(SRC)/keymap.h \
1383 $(SRC)/regex.h \
1384 $(SRC)/syntax.h \
1385 $(SRC)/w32gui.h
1386
1387 $(BLD)/sysdep.$(O) : \
1388 $(SRC)/sysdep.c \
1389 $(CONFIG_H) \
1390 $(EMACS_ROOT)/nt/inc/grp.h \
1391 $(EMACS_ROOT)/nt/inc/netdb.h \
1392 $(EMACS_ROOT)/nt/inc/pwd.h \
1393 $(EMACS_ROOT)/nt/inc/unistd.h \
1394 $(EMACS_ROOT)/nt/inc/sys/file.h \
1395 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1396 $(EMACS_ROOT)/nt/inc/sys/time.h \
1397 $(SRC)/lisp.h \
1398 $(SRC)/atimer.h \
1399 $(SRC)/blockinput.h \
1400 $(SRC)/cm.h \
1401 $(SRC)/coding.h \
1402 $(SRC)/composite.h \
1403 $(SRC)/dispextern.h \
1404 $(SRC)/frame.h \
1405 $(SRC)/keyboard.h \
1406 $(SRC)/process.h \
1407 $(SRC)/sysselect.h \
1408 $(SRC)/syssignal.h \
1409 $(SRC)/systime.h \
1410 $(SRC)/systty.h \
1411 $(SRC)/syswait.h \
1412 $(SRC)/termchar.h \
1413 $(SRC)/termhooks.h \
1414 $(SRC)/termopts.h \
1415 $(SRC)/w32.h \
1416 $(SRC)/w32gui.h \
1417 $(SRC)/window.h
1418
1419 $(BLD)/term.$(O) : \
1420 $(SRC)/term.c \
1421 $(CONFIG_H) \
1422 $(EMACS_ROOT)/nt/inc/unistd.h \
1423 $(EMACS_ROOT)/nt/inc/sys/file.h \
1424 $(EMACS_ROOT)/nt/inc/sys/time.h \
1425 $(SRC)/lisp.h \
1426 $(SRC)/atimer.h \
1427 $(SRC)/blockinput.h \
1428 $(SRC)/buffer.h \
1429 $(SRC)/character.h \
1430 $(SRC)/charset.h \
1431 $(SRC)/cm.h \
1432 $(SRC)/coding.h \
1433 $(SRC)/composite.h \
1434 $(SRC)/dispextern.h \
1435 $(SRC)/disptab.h \
1436 $(SRC)/frame.h \
1437 $(SRC)/intervals.h \
1438 $(SRC)/keyboard.h \
1439 $(SRC)/keymap.h \
1440 $(SRC)/syssignal.h \
1441 $(SRC)/systime.h \
1442 $(SRC)/systty.h \
1443 $(SRC)/termchar.h \
1444 $(SRC)/termhooks.h \
1445 $(SRC)/termopts.h \
1446 $(SRC)/w32gui.h \
1447 $(SRC)/window.h
1448
1449 $(BLD)/terminal.$(O) : \
1450 $(SRC)/terminal.c \
1451 $(CONFIG_H) \
1452 $(EMACS_ROOT)/nt/inc/sys/time.h \
1453 $(SRC)/lisp.h \
1454 $(SRC)/charset.h \
1455 $(SRC)/coding.h \
1456 $(SRC)/composite.h \
1457 $(SRC)/dispextern.h \
1458 $(SRC)/frame.h \
1459 $(SRC)/keyboard.h \
1460 $(SRC)/systime.h \
1461 $(SRC)/termchar.h \
1462 $(SRC)/termhooks.h \
1463 $(SRC)/w32gui.h
1464
1465 $(BLD)/textprop.$(O) : \
1466 $(SRC)/textprop.c \
1467 $(CONFIG_H) \
1468 $(SRC)/lisp.h \
1469 $(SRC)/buffer.h \
1470 $(SRC)/composite.h \
1471 $(SRC)/dispextern.h \
1472 $(SRC)/intervals.h \
1473 $(SRC)/w32gui.h \
1474 $(SRC)/window.h
1475
1476 $(BLD)/tparam.$(O) : \
1477 $(SRC)/tparam.c \
1478 $(CONFIG_H) \
1479 $(SRC)/lisp.h
1480
1481 $(BLD)/undo.$(O) : \
1482 $(SRC)/undo.c \
1483 $(CONFIG_H) \
1484 $(SRC)/lisp.h \
1485 $(SRC)/buffer.h \
1486 $(SRC)/commands.h \
1487 $(SRC)/dispextern.h \
1488 $(SRC)/w32gui.h \
1489 $(SRC)/window.h
1490
1491 $(BLD)/unexw32.$(O) : \
1492 $(SRC)/unexw32.c \
1493 $(CONFIG_H) \
1494 $(SRC)/w32heap.h
1495
1496 $(BLD)/vm-limit.$(O) : \
1497 $(SRC)/vm-limit.c \
1498 $(CONFIG_H) \
1499 $(SRC)/lisp.h \
1500 $(SRC)/mem-limits.h
1501
1502 $(BLD)/window.$(O) : \
1503 $(SRC)/window.c \
1504 $(CONFIG_H) \
1505 $(EMACS_ROOT)/nt/inc/sys/time.h \
1506 $(SRC)/lisp.h \
1507 $(SRC)/atimer.h \
1508 $(SRC)/blockinput.h \
1509 $(SRC)/buffer.h \
1510 $(SRC)/coding.h \
1511 $(SRC)/commands.h \
1512 $(SRC)/composite.h \
1513 $(SRC)/dispextern.h \
1514 $(SRC)/disptab.h \
1515 $(SRC)/frame.h \
1516 $(SRC)/indent.h \
1517 $(SRC)/intervals.h \
1518 $(SRC)/keyboard.h \
1519 $(SRC)/keymap.h \
1520 $(SRC)/systime.h \
1521 $(SRC)/termchar.h \
1522 $(SRC)/termhooks.h \
1523 $(SRC)/w32gui.h \
1524 $(SRC)/w32term.h \
1525 $(SRC)/window.h
1526
1527 $(BLD)/xdisp.$(O) : \
1528 $(SRC)/xdisp.c \
1529 $(CONFIG_H) \
1530 $(EMACS_ROOT)/nt/inc/unistd.h \
1531 $(EMACS_ROOT)/nt/inc/sys/time.h \
1532 $(SRC)/lisp.h \
1533 $(SRC)/atimer.h \
1534 $(SRC)/blockinput.h \
1535 $(SRC)/buffer.h \
1536 $(SRC)/ccl.h \
1537 $(SRC)/character.h \
1538 $(SRC)/charset.h \
1539 $(SRC)/coding.h \
1540 $(SRC)/commands.h \
1541 $(SRC)/composite.h \
1542 $(SRC)/dispextern.h \
1543 $(SRC)/disptab.h \
1544 $(SRC)/font.h \
1545 $(SRC)/fontset.h \
1546 $(SRC)/frame.h \
1547 $(SRC)/indent.h \
1548 $(SRC)/intervals.h \
1549 $(SRC)/keyboard.h \
1550 $(SRC)/keymap.h \
1551 $(SRC)/macros.h \
1552 $(SRC)/process.h \
1553 $(SRC)/region-cache.h \
1554 $(SRC)/systime.h \
1555 $(SRC)/termchar.h \
1556 $(SRC)/termhooks.h \
1557 $(SRC)/termopts.h \
1558 $(SRC)/w32gui.h \
1559 $(SRC)/w32term.h \
1560 $(SRC)/window.h
1561
1562 $(BLD)/xfaces.$(O) : \
1563 $(SRC)/xfaces.c \
1564 $(CONFIG_H) \
1565 $(EMACS_ROOT)/nt/inc/sys/time.h \
1566 $(SRC)/lisp.h \
1567 $(SRC)/atimer.h \
1568 $(SRC)/blockinput.h \
1569 $(SRC)/buffer.h \
1570 $(SRC)/ccl.h \
1571 $(SRC)/character.h \
1572 $(SRC)/charset.h \
1573 $(SRC)/coding.h \
1574 $(SRC)/composite.h \
1575 $(SRC)/dispextern.h \
1576 $(SRC)/font.h \
1577 $(SRC)/fontset.h \
1578 $(SRC)/frame.h \
1579 $(SRC)/intervals.h \
1580 $(SRC)/keyboard.h \
1581 $(SRC)/systime.h \
1582 $(SRC)/termchar.h \
1583 $(SRC)/termhooks.h \
1584 $(SRC)/w32gui.h \
1585 $(SRC)/w32term.h \
1586 $(SRC)/window.h
1587
1588 $(BLD)/w32fns.$(O) : \
1589 $(SRC)/w32fns.c \
1590 $(CONFIG_H) \
1591 $(EMACS_ROOT)/nt/inc/sys/time.h \
1592 $(SRC)/lisp.h \
1593 $(SRC)/atimer.h \
1594 $(SRC)/blockinput.h \
1595 $(SRC)/buffer.h \
1596 $(SRC)/ccl.h \
1597 $(SRC)/character.h \
1598 $(SRC)/charset.h \
1599 $(SRC)/coding.h \
1600 $(SRC)/composite.h \
1601 $(SRC)/dispextern.h \
1602 $(SRC)/epaths.h \
1603 $(SRC)/font.h \
1604 $(SRC)/fontset.h \
1605 $(SRC)/frame.h \
1606 $(SRC)/intervals.h \
1607 $(SRC)/keyboard.h \
1608 $(SRC)/systime.h \
1609 $(SRC)/termhooks.h \
1610 $(SRC)/w32.h \
1611 $(SRC)/w32font.h \
1612 $(SRC)/w32gui.h \
1613 $(SRC)/w32heap.h \
1614 $(SRC)/w32term.h \
1615 $(SRC)/window.h
1616
1617 $(BLD)/w32menu.$(O) : \
1618 $(SRC)/w32menu.c \
1619 $(CONFIG_H) \
1620 $(EMACS_ROOT)/nt/inc/sys/time.h \
1621 $(SRC)/lisp.h \
1622 $(SRC)/atimer.h \
1623 $(SRC)/blockinput.h \
1624 $(SRC)/buffer.h \
1625 $(SRC)/character.h \
1626 $(SRC)/charset.h \
1627 $(SRC)/coding.h \
1628 $(SRC)/composite.h \
1629 $(SRC)/dispextern.h \
1630 $(SRC)/frame.h \
1631 $(SRC)/keyboard.h \
1632 $(SRC)/keymap.h \
1633 $(SRC)/menu.h \
1634 $(SRC)/systime.h \
1635 $(SRC)/termhooks.h \
1636 $(SRC)/w32gui.h \
1637 $(SRC)/w32term.h \
1638 $(SRC)/window.h
1639
1640 $(BLD)/w32term.$(O) : \
1641 $(SRC)/w32term.c \
1642 $(CONFIG_H) \
1643 $(EMACS_ROOT)/nt/inc/unistd.h \
1644 $(EMACS_ROOT)/nt/inc/sys/time.h \
1645 $(SRC)/lisp.h \
1646 $(SRC)/atimer.h \
1647 $(SRC)/blockinput.h \
1648 $(SRC)/buffer.h \
1649 $(SRC)/ccl.h \
1650 $(SRC)/character.h \
1651 $(SRC)/charset.h \
1652 $(SRC)/coding.h \
1653 $(SRC)/composite.h \
1654 $(SRC)/dispextern.h \
1655 $(SRC)/disptab.h \
1656 $(SRC)/font.h \
1657 $(SRC)/fontset.h \
1658 $(SRC)/frame.h \
1659 $(SRC)/intervals.h \
1660 $(SRC)/keyboard.h \
1661 $(SRC)/keymap.h \
1662 $(SRC)/process.h \
1663 $(SRC)/systime.h \
1664 $(SRC)/systty.h \
1665 $(SRC)/termchar.h \
1666 $(SRC)/termhooks.h \
1667 $(SRC)/termopts.h \
1668 $(SRC)/w32font.h \
1669 $(SRC)/w32gui.h \
1670 $(SRC)/w32heap.h \
1671 $(SRC)/w32term.h \
1672 $(SRC)/window.h
1673
1674 $(BLD)/w32select.$(O) : \
1675 $(SRC)/w32select.c \
1676 $(CONFIG_H) \
1677 $(EMACS_ROOT)/nt/inc/sys/time.h \
1678 $(SRC)/lisp.h \
1679 $(SRC)/atimer.h \
1680 $(SRC)/blockinput.h \
1681 $(SRC)/character.h \
1682 $(SRC)/charset.h \
1683 $(SRC)/coding.h \
1684 $(SRC)/composite.h \
1685 $(SRC)/keyboard.h \
1686 $(SRC)/systime.h \
1687 $(SRC)/w32gui.h \
1688 $(SRC)/w32heap.h \
1689 $(SRC)/w32term.h
1690
1691 $(BLD)/w32reg.$(O) : \
1692 $(SRC)/w32reg.c \
1693 $(CONFIG_H) \
1694 $(EMACS_ROOT)/nt/inc/sys/time.h \
1695 $(SRC)/lisp.h \
1696 $(SRC)/atimer.h \
1697 $(SRC)/blockinput.h \
1698 $(SRC)/systime.h \
1699 $(SRC)/w32gui.h \
1700 $(SRC)/w32term.h
1701
1702 $(BLD)/w32xfns.$(O) : \
1703 $(SRC)/w32xfns.c \
1704 $(CONFIG_H) \
1705 $(EMACS_ROOT)/nt/inc/sys/time.h \
1706 $(SRC)/lisp.h \
1707 $(SRC)/atimer.h \
1708 $(SRC)/blockinput.h \
1709 $(SRC)/charset.h \
1710 $(SRC)/coding.h \
1711 $(SRC)/composite.h \
1712 $(SRC)/dispextern.h \
1713 $(SRC)/fontset.h \
1714 $(SRC)/frame.h \
1715 $(SRC)/keyboard.h \
1716 $(SRC)/systime.h \
1717 $(SRC)/w32gui.h \
1718 $(SRC)/w32term.h
1719
1720 $(BLD)/w32font.$(O) : \
1721 $(SRC)/w32font.c \
1722 $(CONFIG_H) \
1723 $(SRC)/lisp.h \
1724 $(SRC)/ccl.h \
1725 $(SRC)/character.h \
1726 $(SRC)/charset.h \
1727 $(SRC)/coding.h \
1728 $(SRC)/composite.h \
1729 $(SRC)/dispextern.h \
1730 $(SRC)/font.h \
1731 $(SRC)/fontset.h \
1732 $(SRC)/frame.h \
1733 $(SRC)/w32font.h \
1734 $(SRC)/w32gui.h \
1735 $(SRC)/w32term.h
1736
1737 $(BLD)/w32uniscribe.$(O) : \
1738 $(SRC)/w32uniscribe.c \
1739 $(CONFIG_H) \
1740 $(SRC)/lisp.h \
1741 $(SRC)/ccl.h \
1742 $(SRC)/character.h \
1743 $(SRC)/charset.h \
1744 $(SRC)/composite.h \
1745 $(SRC)/dispextern.h \
1746 $(SRC)/font.h \
1747 $(SRC)/fontset.h \
1748 $(SRC)/frame.h \
1749 $(SRC)/w32font.h \
1750 $(SRC)/w32gui.h \
1751 $(SRC)/w32term.h
1752
1753 # Each object file depends on stamp_BLD, because in parallel builds we must
1754 # make sure $(BLD) exists before starting compilations.
1755 #
1756 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD