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