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