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