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