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