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