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