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