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