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