Merge changes made in Gnus trunk.
[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
296### DEPENDENCIES ###
297
0c1b4ae2 298EMACS_ROOT = ..
0c1b4ae2
JR
299CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
300 $(EMACS_ROOT)/src/m/intel386.h \
fd7a37d5
JB
301 $(EMACS_ROOT)/src/config.h \
302 $(EMACS_ROOT)/nt/inc/sys/stat.h
7bbaaedd 303
aa2ee344 304$(BLD)/alloc.$(O) : \
7bbaaedd 305 $(SRC)/alloc.c \
0c1b4ae2 306 $(CONFIG_H) \
fd7a37d5
JB
307 $(EMACS_ROOT)/nt/inc/unistd.h \
308 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 309 $(SRC)/lisp.h \
fd7a37d5 310 $(SRC)/atimer.h \
6218196f
JB
311 $(SRC)/blockinput.h \
312 $(SRC)/buffer.h \
dd6ab82f 313 $(SRC)/character.h \
fd7a37d5 314 $(SRC)/coding.h \
6218196f 315 $(SRC)/composite.h \
7bbaaedd 316 $(SRC)/dispextern.h \
6218196f 317 $(SRC)/frame.h \
7bbaaedd 318 $(SRC)/intervals.h \
6218196f
JB
319 $(SRC)/keyboard.h \
320 $(SRC)/process.h \
7bbaaedd 321 $(SRC)/puresize.h \
6218196f 322 $(SRC)/syssignal.h \
fd7a37d5
JB
323 $(SRC)/systime.h \
324 $(SRC)/termhooks.h \
325 $(SRC)/w32.h \
6218196f
JB
326 $(SRC)/w32gui.h \
327 $(SRC)/window.h
7bbaaedd 328
aa2ee344 329$(BLD)/atimer.$(O) : \
7bbaaedd 330 $(SRC)/atimer.c \
0c1b4ae2 331 $(CONFIG_H) \
fd7a37d5
JB
332 $(EMACS_ROOT)/nt/inc/unistd.h \
333 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 334 $(SRC)/lisp.h \
7bbaaedd 335 $(SRC)/atimer.h \
6218196f 336 $(SRC)/blockinput.h \
7bbaaedd 337 $(SRC)/syssignal.h \
6218196f 338 $(SRC)/systime.h
7bbaaedd 339
f4b6ba46
EZ
340$(BLD)/bidi.$(O) : \
341 $(SRC)/bidi.c \
342 $(CONFIG_H) \
343 $(SRC)/lisp.h \
8c3a217f
JB
344 $(SRC)/bidimirror.h \
345 $(SRC)/biditype.h \
f4b6ba46
EZ
346 $(SRC)/buffer.h \
347 $(SRC)/character.h \
3580374b
JB
348 $(SRC)/dispextern.h \
349 $(SRC)/w32gui.h
f4b6ba46 350
aa2ee344 351$(BLD)/buffer.$(O) : \
7bbaaedd 352 $(SRC)/buffer.c \
0c1b4ae2 353 $(CONFIG_H) \
fd7a37d5 354 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 355 $(EMACS_ROOT)/nt/inc/sys/param.h \
fd7a37d5 356 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 357 $(SRC)/lisp.h \
fd7a37d5 358 $(SRC)/atimer.h \
6218196f
JB
359 $(SRC)/blockinput.h \
360 $(SRC)/buffer.h \
fd7a37d5
JB
361 $(SRC)/character.h \
362 $(SRC)/coding.h \
6218196f 363 $(SRC)/commands.h \
7bbaaedd 364 $(SRC)/composite.h \
6218196f 365 $(SRC)/dispextern.h \
7bbaaedd 366 $(SRC)/frame.h \
7bbaaedd 367 $(SRC)/indent.h \
6218196f
JB
368 $(SRC)/intervals.h \
369 $(SRC)/keyboard.h \
370 $(SRC)/keymap.h \
371 $(SRC)/region-cache.h \
fd7a37d5 372 $(SRC)/systime.h \
6218196f
JB
373 $(SRC)/w32gui.h \
374 $(SRC)/window.h
7bbaaedd 375
aa2ee344 376$(BLD)/bytecode.$(O) : \
7bbaaedd 377 $(SRC)/bytecode.c \
0c1b4ae2 378 $(CONFIG_H) \
5e13f9d3 379 $(SRC)/lisp.h \
7bbaaedd 380 $(SRC)/buffer.h \
fd7a37d5
JB
381 $(SRC)/character.h \
382 $(SRC)/dispextern.h \
a63cf46f 383 $(SRC)/syntax.h \
fd7a37d5 384 $(SRC)/w32gui.h \
a63cf46f 385 $(SRC)/window.h
7bbaaedd 386
aa2ee344 387$(BLD)/callint.$(O) : \
7bbaaedd 388 $(SRC)/callint.c \
0c1b4ae2 389 $(CONFIG_H) \
fd7a37d5 390 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 391 $(SRC)/lisp.h \
7bbaaedd 392 $(SRC)/buffer.h \
fd7a37d5 393 $(SRC)/coding.h \
7bbaaedd 394 $(SRC)/commands.h \
df4e8455 395 $(SRC)/composite.h \
6218196f 396 $(SRC)/dispextern.h \
7bbaaedd 397 $(SRC)/keyboard.h \
6218196f 398 $(SRC)/keymap.h \
fd7a37d5 399 $(SRC)/systime.h \
6218196f 400 $(SRC)/w32gui.h \
44eec525 401 $(SRC)/window.h
7bbaaedd 402
aa2ee344 403$(BLD)/callproc.$(O) : \
7bbaaedd 404 $(SRC)/callproc.c \
0c1b4ae2 405 $(CONFIG_H) \
fd7a37d5 406 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 407 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 408 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 409 $(SRC)/lisp.h \
fd7a37d5
JB
410 $(SRC)/atimer.h \
411 $(SRC)/blockinput.h \
7bbaaedd 412 $(SRC)/buffer.h \
6218196f 413 $(SRC)/ccl.h \
dd6ab82f 414 $(SRC)/character.h \
6218196f
JB
415 $(SRC)/coding.h \
416 $(SRC)/commands.h \
417 $(SRC)/composite.h \
fd7a37d5 418 $(SRC)/dispextern.h \
6218196f 419 $(SRC)/epaths.h \
fd7a37d5 420 $(SRC)/frame.h \
7bbaaedd
AI
421 $(SRC)/process.h \
422 $(SRC)/syssignal.h \
fd7a37d5 423 $(SRC)/systime.h \
6218196f 424 $(SRC)/systty.h \
0254c6f7 425 $(SRC)/termhooks.h \
fd7a37d5
JB
426 $(SRC)/w32.h \
427 $(SRC)/w32gui.h
7bbaaedd 428
aa2ee344 429$(BLD)/casefiddle.$(O) : \
7bbaaedd 430 $(SRC)/casefiddle.c \
0c1b4ae2 431 $(CONFIG_H) \
5e13f9d3 432 $(SRC)/lisp.h \
7bbaaedd 433 $(SRC)/buffer.h \
dd6ab82f 434 $(SRC)/character.h \
7bbaaedd 435 $(SRC)/commands.h \
6218196f
JB
436 $(SRC)/composite.h \
437 $(SRC)/keymap.h \
7bbaaedd 438 $(SRC)/syntax.h
7bbaaedd 439
aa2ee344 440$(BLD)/casetab.$(O) : \
7bbaaedd 441 $(SRC)/casetab.c \
0c1b4ae2 442 $(CONFIG_H) \
5e13f9d3 443 $(SRC)/lisp.h \
6218196f 444 $(SRC)/buffer.h \
fd7a37d5 445 $(SRC)/character.h
6218196f
JB
446
447$(BLD)/category.$(O) : \
448 $(SRC)/category.c \
0c1b4ae2 449 $(CONFIG_H) \
5e13f9d3 450 $(SRC)/lisp.h \
6218196f
JB
451 $(SRC)/buffer.h \
452 $(SRC)/category.h \
dd6ab82f 453 $(SRC)/character.h \
6218196f
JB
454 $(SRC)/charset.h \
455 $(SRC)/keymap.h
456
457$(BLD)/ccl.$(O) : \
458 $(SRC)/ccl.c \
0c1b4ae2 459 $(CONFIG_H) \
5e13f9d3 460 $(SRC)/lisp.h \
6218196f 461 $(SRC)/ccl.h \
dd6ab82f 462 $(SRC)/character.h \
6218196f 463 $(SRC)/charset.h \
df4e8455
JB
464 $(SRC)/coding.h \
465 $(SRC)/composite.h
6218196f 466
dd6ab82f
MB
467$(BLD)/character.$(O) : \
468 $(SRC)/character.c \
0c1b4ae2 469 $(CONFIG_H) \
5e13f9d3 470 $(SRC)/lisp.h \
dd6ab82f
MB
471 $(SRC)/buffer.h \
472 $(SRC)/character.h \
473 $(SRC)/charset.h \
dd6ab82f
MB
474 $(SRC)/composite.h \
475 $(SRC)/disptab.h
476
6218196f
JB
477$(BLD)/charset.$(O) : \
478 $(SRC)/charset.c \
0c1b4ae2 479 $(CONFIG_H) \
fd7a37d5 480 $(EMACS_ROOT)/nt/inc/unistd.h \
5e13f9d3 481 $(SRC)/lisp.h \
6218196f 482 $(SRC)/buffer.h \
dd6ab82f 483 $(SRC)/character.h \
6218196f
JB
484 $(SRC)/charset.h \
485 $(SRC)/coding.h \
df4e8455 486 $(SRC)/composite.h \
6218196f 487 $(SRC)/disptab.h
7bbaaedd 488
dd6ab82f
MB
489$(BLD)/chartab.$(O) : \
490 $(SRC)/chartab.c \
0c1b4ae2 491 $(CONFIG_H) \
5e13f9d3 492 $(SRC)/lisp.h \
fd7a37d5
JB
493 $(SRC)/ccl.h \
494 $(SRC)/character.h \
495 $(SRC)/charset.h
dd6ab82f 496
aa2ee344 497$(BLD)/cmds.$(O) : \
7bbaaedd 498 $(SRC)/cmds.c \
0c1b4ae2 499 $(CONFIG_H) \
fd7a37d5 500 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 501 $(SRC)/lisp.h \
6218196f 502 $(SRC)/buffer.h \
dd6ab82f 503 $(SRC)/character.h \
fd7a37d5 504 $(SRC)/coding.h \
7bbaaedd 505 $(SRC)/commands.h \
df4e8455 506 $(SRC)/composite.h \
6218196f 507 $(SRC)/dispextern.h \
ad903955 508 $(SRC)/frame.h \
6218196f
JB
509 $(SRC)/keyboard.h \
510 $(SRC)/keymap.h \
511 $(SRC)/syntax.h \
fd7a37d5 512 $(SRC)/systime.h \
6218196f
JB
513 $(SRC)/w32gui.h \
514 $(SRC)/window.h
515
516$(BLD)/coding.$(O) : \
517 $(SRC)/coding.c \
0c1b4ae2 518 $(CONFIG_H) \
5e13f9d3 519 $(SRC)/lisp.h \
7bbaaedd 520 $(SRC)/buffer.h \
6218196f 521 $(SRC)/ccl.h \
dd6ab82f 522 $(SRC)/character.h \
6218196f
JB
523 $(SRC)/charset.h \
524 $(SRC)/coding.h \
525 $(SRC)/composite.h \
526 $(SRC)/dispextern.h \
0254c6f7
JR
527 $(SRC)/frame.h \
528 $(SRC)/termhooks.h \
6218196f
JB
529 $(SRC)/w32gui.h \
530 $(SRC)/window.h
7bbaaedd 531
aa2ee344 532$(BLD)/composite.$(O) : \
7bbaaedd 533 $(SRC)/composite.c \
0c1b4ae2 534 $(CONFIG_H) \
5e13f9d3 535 $(SRC)/lisp.h \
7bbaaedd 536 $(SRC)/buffer.h \
fd7a37d5 537 $(SRC)/ccl.h \
dd6ab82f 538 $(SRC)/character.h \
df4e8455 539 $(SRC)/coding.h \
7bbaaedd 540 $(SRC)/composite.h \
6218196f 541 $(SRC)/dispextern.h \
fd7a37d5
JB
542 $(SRC)/font.h \
543 $(SRC)/frame.h \
6218196f 544 $(SRC)/intervals.h \
df4e8455 545 $(SRC)/termhooks.h \
fd7a37d5
JB
546 $(SRC)/w32gui.h \
547 $(SRC)/window.h
7bbaaedd 548
aa2ee344 549$(BLD)/data.$(O) : \
7bbaaedd 550 $(SRC)/data.c \
0c1b4ae2 551 $(CONFIG_H) \
fd7a37d5 552 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 553 $(SRC)/lisp.h \
7bbaaedd 554 $(SRC)/buffer.h \
df4e8455 555 $(SRC)/ccl.h \
dd6ab82f 556 $(SRC)/character.h \
fd7a37d5 557 $(SRC)/coding.h \
df4e8455 558 $(SRC)/composite.h \
fd7a37d5 559 $(SRC)/dispextern.h \
df4e8455 560 $(SRC)/font.h \
6218196f
JB
561 $(SRC)/frame.h \
562 $(SRC)/keyboard.h \
563 $(SRC)/puresize.h \
0254c6f7 564 $(SRC)/syssignal.h \
fd7a37d5
JB
565 $(SRC)/systime.h \
566 $(SRC)/termhooks.h \
567 $(SRC)/w32gui.h
7bbaaedd 568
aa2ee344 569$(BLD)/dired.$(O) : \
7bbaaedd 570 $(SRC)/dired.c \
0c1b4ae2 571 $(CONFIG_H) \
fd7a37d5
JB
572 $(EMACS_ROOT)/nt/inc/grp.h \
573 $(EMACS_ROOT)/nt/inc/pwd.h \
574 $(EMACS_ROOT)/nt/inc/unistd.h \
575 $(EMACS_ROOT)/nt/inc/sys/dir.h \
576 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 577 $(SRC)/lisp.h \
fd7a37d5
JB
578 $(SRC)/atimer.h \
579 $(SRC)/blockinput.h \
7bbaaedd 580 $(SRC)/buffer.h \
dd6ab82f 581 $(SRC)/character.h \
6218196f
JB
582 $(SRC)/charset.h \
583 $(SRC)/coding.h \
7bbaaedd 584 $(SRC)/commands.h \
df4e8455 585 $(SRC)/composite.h \
6218196f
JB
586 $(SRC)/ndir.h \
587 $(SRC)/regex.h \
588 $(SRC)/systime.h
7bbaaedd 589
aa2ee344 590$(BLD)/dispnew.$(O) : \
7bbaaedd 591 $(SRC)/dispnew.c \
0c1b4ae2 592 $(CONFIG_H) \
fd7a37d5
JB
593 $(EMACS_ROOT)/nt/inc/unistd.h \
594 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 595 $(SRC)/lisp.h \
6218196f
JB
596 $(SRC)/atimer.h \
597 $(SRC)/blockinput.h \
7bbaaedd 598 $(SRC)/buffer.h \
dd6ab82f 599 $(SRC)/character.h \
6218196f 600 $(SRC)/cm.h \
fd7a37d5 601 $(SRC)/coding.h \
7bbaaedd 602 $(SRC)/commands.h \
6218196f
JB
603 $(SRC)/composite.h \
604 $(SRC)/dispextern.h \
7bbaaedd 605 $(SRC)/disptab.h \
6218196f 606 $(SRC)/frame.h \
7bbaaedd 607 $(SRC)/indent.h \
7bbaaedd 608 $(SRC)/intervals.h \
6218196f
JB
609 $(SRC)/keyboard.h \
610 $(SRC)/process.h \
611 $(SRC)/syssignal.h \
612 $(SRC)/systime.h \
613 $(SRC)/termchar.h \
614 $(SRC)/termhooks.h \
615 $(SRC)/termopts.h \
aa2ee344 616 $(SRC)/w32gui.h \
6218196f
JB
617 $(SRC)/w32term.h \
618 $(SRC)/window.h
7bbaaedd 619
aa2ee344 620$(BLD)/doc.$(O) : \
7bbaaedd 621 $(SRC)/doc.c \
0c1b4ae2 622 $(CONFIG_H) \
249b9564 623 buildobj.h \
fd7a37d5 624 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 625 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 626 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 627 $(SRC)/lisp.h \
7bbaaedd 628 $(SRC)/buffer.h \
dd6ab82f 629 $(SRC)/character.h \
fd7a37d5 630 $(SRC)/coding.h \
df4e8455 631 $(SRC)/composite.h \
6218196f 632 $(SRC)/keyboard.h \
fd7a37d5
JB
633 $(SRC)/keymap.h \
634 $(SRC)/systime.h
7bbaaedd 635
aa2ee344 636$(BLD)/doprnt.$(O) : \
7bbaaedd 637 $(SRC)/doprnt.c \
0c1b4ae2 638 $(CONFIG_H) \
fd7a37d5 639 $(EMACS_ROOT)/nt/inc/unistd.h \
5e13f9d3 640 $(SRC)/lisp.h \
fd7a37d5 641 $(SRC)/character.h
7bbaaedd 642
aa2ee344 643$(BLD)/editfns.$(O) : \
7bbaaedd 644 $(SRC)/editfns.c \
0c1b4ae2 645 $(CONFIG_H) \
7bbaaedd 646 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
647 $(EMACS_ROOT)/nt/inc/unistd.h \
648 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 649 $(SRC)/lisp.h \
fd7a37d5
JB
650 $(SRC)/atimer.h \
651 $(SRC)/blockinput.h \
6218196f 652 $(SRC)/buffer.h \
dd6ab82f 653 $(SRC)/character.h \
6218196f
JB
654 $(SRC)/coding.h \
655 $(SRC)/composite.h \
7bbaaedd 656 $(SRC)/dispextern.h \
6218196f 657 $(SRC)/frame.h \
7bbaaedd 658 $(SRC)/intervals.h \
6218196f 659 $(SRC)/systime.h \
6218196f
JB
660 $(SRC)/w32gui.h \
661 $(SRC)/window.h
7bbaaedd 662
aa2ee344 663$(BLD)/emacs.$(O) : \
7bbaaedd 664 $(SRC)/emacs.c \
0c1b4ae2 665 $(CONFIG_H) \
fd7a37d5 666 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 667 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 668 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 669 $(SRC)/lisp.h \
6218196f
JB
670 $(SRC)/atimer.h \
671 $(SRC)/blockinput.h \
672 $(SRC)/buffer.h \
fd7a37d5 673 $(SRC)/coding.h \
7bbaaedd 674 $(SRC)/commands.h \
6218196f 675 $(SRC)/composite.h \
7bbaaedd 676 $(SRC)/dispextern.h \
fd7a37d5 677 $(SRC)/frame.h \
7bbaaedd 678 $(SRC)/intervals.h \
6218196f
JB
679 $(SRC)/keyboard.h \
680 $(SRC)/keymap.h \
681 $(SRC)/process.h \
7bbaaedd 682 $(SRC)/syssignal.h \
6218196f
JB
683 $(SRC)/systime.h \
684 $(SRC)/systty.h \
685 $(SRC)/termhooks.h \
fd7a37d5 686 $(SRC)/w32.h \
a63cf46f 687 $(SRC)/w32gui.h \
b6cc2ad0 688 $(SRC)/w32heap.h \
a63cf46f 689 $(SRC)/window.h
7bbaaedd 690
aa2ee344 691$(BLD)/eval.$(O) : \
7bbaaedd 692 $(SRC)/eval.c \
0c1b4ae2 693 $(CONFIG_H) \
fd7a37d5 694 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 695 $(SRC)/lisp.h \
6218196f 696 $(SRC)/atimer.h \
7bbaaedd 697 $(SRC)/blockinput.h \
fd7a37d5 698 $(SRC)/coding.h \
7bbaaedd 699 $(SRC)/commands.h \
df4e8455 700 $(SRC)/composite.h \
6218196f 701 $(SRC)/dispextern.h \
ee0a16cf 702 $(SRC)/frame.h \
6218196f
JB
703 $(SRC)/keyboard.h \
704 $(SRC)/systime.h \
6218196f 705 $(SRC)/w32gui.h
7bbaaedd 706
aa2ee344 707$(BLD)/fileio.$(O) : \
7bbaaedd 708 $(SRC)/fileio.c \
0c1b4ae2 709 $(CONFIG_H) \
7bbaaedd 710 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
711 $(EMACS_ROOT)/nt/inc/unistd.h \
712 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 713 $(SRC)/lisp.h \
fd7a37d5
JB
714 $(SRC)/atimer.h \
715 $(SRC)/blockinput.h \
6218196f 716 $(SRC)/buffer.h \
dd6ab82f 717 $(SRC)/character.h \
6218196f
JB
718 $(SRC)/coding.h \
719 $(SRC)/commands.h \
720 $(SRC)/composite.h \
7bbaaedd 721 $(SRC)/dispextern.h \
fd7a37d5 722 $(SRC)/frame.h \
7bbaaedd 723 $(SRC)/intervals.h \
6218196f 724 $(SRC)/systime.h \
6218196f
JB
725 $(SRC)/w32gui.h \
726 $(SRC)/window.h
7bbaaedd 727
aa2ee344 728$(BLD)/filelock.$(O) : \
7bbaaedd 729 $(SRC)/filelock.c \
0c1b4ae2 730 $(CONFIG_H) \
7bbaaedd 731 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5 732 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 733 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 734 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 735 $(SRC)/lisp.h \
7bbaaedd 736 $(SRC)/buffer.h \
dd6ab82f 737 $(SRC)/character.h \
6218196f 738 $(SRC)/coding.h \
df4e8455 739 $(SRC)/composite.h \
6218196f 740 $(SRC)/systime.h
7bbaaedd 741
aa2ee344 742$(BLD)/filemode.$(O) : \
7bbaaedd 743 $(SRC)/filemode.c \
0c1b4ae2 744 $(CONFIG_H)
7bbaaedd 745
aa2ee344 746$(BLD)/firstfile.$(O) : \
7bbaaedd 747 $(SRC)/firstfile.c \
0c1b4ae2 748 $(CONFIG_H)
7bbaaedd 749
aa2ee344 750$(BLD)/floatfns.$(O) : \
7bbaaedd 751 $(SRC)/floatfns.c \
0c1b4ae2 752 $(CONFIG_H) \
5e13f9d3 753 $(SRC)/lisp.h \
7bbaaedd
AI
754 $(SRC)/syssignal.h
755
aa2ee344 756$(BLD)/fns.$(O) : \
7bbaaedd 757 $(SRC)/fns.c \
0c1b4ae2 758 $(CONFIG_H) \
83b41e19
EZ
759 $(EMACS_ROOT)/nt/inc/langinfo.h \
760 $(EMACS_ROOT)/nt/inc/nl_types.h \
fd7a37d5
JB
761 $(EMACS_ROOT)/nt/inc/unistd.h \
762 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 763 $(SRC)/lisp.h \
6218196f
JB
764 $(SRC)/atimer.h \
765 $(SRC)/blockinput.h \
7bbaaedd 766 $(SRC)/buffer.h \
dd6ab82f 767 $(SRC)/character.h \
6218196f
JB
768 $(SRC)/coding.h \
769 $(SRC)/commands.h \
770 $(SRC)/composite.h \
771 $(SRC)/dispextern.h \
772 $(SRC)/frame.h \
773 $(SRC)/intervals.h \
7bbaaedd 774 $(SRC)/keyboard.h \
6218196f
JB
775 $(SRC)/keymap.h \
776 $(SRC)/md5.h \
777 $(SRC)/systime.h \
6218196f
JB
778 $(SRC)/w32gui.h \
779 $(SRC)/window.h
780
223250a6
JR
781$(BLD)/font.$(O) : \
782 $(SRC)/font.c \
0c1b4ae2 783 $(CONFIG_H) \
5e13f9d3 784 $(SRC)/lisp.h \
fd7a37d5 785 $(SRC)/buffer.h \
223250a6
JR
786 $(SRC)/ccl.h \
787 $(SRC)/character.h \
788 $(SRC)/charset.h \
fd7a37d5
JB
789 $(SRC)/composite.h \
790 $(SRC)/dispextern.h \
791 $(SRC)/font.h \
792 $(SRC)/fontset.h \
793 $(SRC)/frame.h \
794 $(SRC)/w32gui.h \
795 $(SRC)/w32term.h \
796 $(SRC)/window.h
223250a6 797
6218196f
JB
798$(BLD)/fontset.$(O) : \
799 $(SRC)/fontset.c \
0c1b4ae2 800 $(CONFIG_H) \
fd7a37d5 801 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 802 $(SRC)/lisp.h \
fd7a37d5
JB
803 $(SRC)/atimer.h \
804 $(SRC)/blockinput.h \
6218196f
JB
805 $(SRC)/buffer.h \
806 $(SRC)/ccl.h \
dd6ab82f 807 $(SRC)/character.h \
6218196f 808 $(SRC)/charset.h \
fd7a37d5
JB
809 $(SRC)/coding.h \
810 $(SRC)/composite.h \
7bbaaedd 811 $(SRC)/dispextern.h \
223250a6 812 $(SRC)/font.h \
6218196f
JB
813 $(SRC)/fontset.h \
814 $(SRC)/frame.h \
fd7a37d5 815 $(SRC)/intervals.h \
6218196f 816 $(SRC)/keyboard.h \
fd7a37d5 817 $(SRC)/systime.h \
0254c6f7 818 $(SRC)/termhooks.h \
aa2ee344 819 $(SRC)/w32gui.h \
fd7a37d5 820 $(SRC)/w32term.h \
6218196f 821 $(SRC)/window.h
7bbaaedd 822
aa2ee344 823$(BLD)/frame.$(O) : \
7bbaaedd 824 $(SRC)/frame.c \
0c1b4ae2 825 $(CONFIG_H) \
fd7a37d5 826 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 827 $(SRC)/lisp.h \
0c126b96
JB
828 $(SRC)/atimer.h \
829 $(SRC)/blockinput.h \
7bbaaedd 830 $(SRC)/buffer.h \
fd7a37d5 831 $(SRC)/ccl.h \
dd6ab82f 832 $(SRC)/character.h \
fd7a37d5 833 $(SRC)/coding.h \
7bbaaedd 834 $(SRC)/commands.h \
df4e8455 835 $(SRC)/composite.h \
6218196f 836 $(SRC)/dispextern.h \
fd7a37d5 837 $(SRC)/font.h \
6218196f
JB
838 $(SRC)/fontset.h \
839 $(SRC)/frame.h \
840 $(SRC)/keyboard.h \
0c126b96 841 $(SRC)/systime.h \
0254c6f7 842 $(SRC)/termchar.h \
6218196f 843 $(SRC)/termhooks.h \
6218196f
JB
844 $(SRC)/w32gui.h \
845 $(SRC)/w32term.h \
846 $(SRC)/window.h
7bbaaedd 847
eee30217
JB
848$(BLD)/fringe.$(O) : \
849 $(SRC)/fringe.c \
0c1b4ae2 850 $(CONFIG_H) \
fd7a37d5 851 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 852 $(SRC)/lisp.h \
eee30217
JB
853 $(SRC)/atimer.h \
854 $(SRC)/blockinput.h \
855 $(SRC)/buffer.h \
856 $(SRC)/dispextern.h \
857 $(SRC)/frame.h \
858 $(SRC)/systime.h \
fd7a37d5 859 $(SRC)/termhooks.h \
eee30217
JB
860 $(SRC)/w32gui.h \
861 $(SRC)/window.h
862
aa2ee344 863$(BLD)/gmalloc.$(O) : \
7bbaaedd 864 $(SRC)/gmalloc.c \
0c1b4ae2 865 $(CONFIG_H) \
fd7a37d5 866 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 867 $(SRC)/getpagesize.h
7bbaaedd 868
fd7a37d5 869$(BLD)/image.$(O) : \
25abe3d4 870 $(SRC)/image.c \
0c1b4ae2 871 $(CONFIG_H) \
fd7a37d5
JB
872 $(EMACS_ROOT)/nt/inc/unistd.h \
873 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 874 $(SRC)/lisp.h \
25abe3d4
KS
875 $(SRC)/atimer.h \
876 $(SRC)/blockinput.h \
fd7a37d5
JB
877 $(SRC)/ccl.h \
878 $(SRC)/character.h \
879 $(SRC)/coding.h \
df4e8455 880 $(SRC)/composite.h \
25abe3d4
KS
881 $(SRC)/dispextern.h \
882 $(SRC)/epaths.h \
fd7a37d5 883 $(SRC)/font.h \
25abe3d4
KS
884 $(SRC)/frame.h \
885 $(SRC)/systime.h \
886 $(SRC)/termhooks.h \
25abe3d4 887 $(SRC)/w32gui.h \
25abe3d4
KS
888 $(SRC)/w32term.h \
889 $(SRC)/window.h
890
aa2ee344 891$(BLD)/indent.$(O) : \
7bbaaedd 892 $(SRC)/indent.c \
0c1b4ae2 893 $(CONFIG_H) \
fd7a37d5 894 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 895 $(SRC)/lisp.h \
7bbaaedd 896 $(SRC)/buffer.h \
6218196f 897 $(SRC)/category.h \
dd6ab82f 898 $(SRC)/character.h \
fd7a37d5 899 $(SRC)/coding.h \
6218196f
JB
900 $(SRC)/composite.h \
901 $(SRC)/dispextern.h \
902 $(SRC)/disptab.h \
7bbaaedd 903 $(SRC)/frame.h \
6218196f
JB
904 $(SRC)/indent.h \
905 $(SRC)/intervals.h \
906 $(SRC)/keyboard.h \
907 $(SRC)/region-cache.h \
fd7a37d5 908 $(SRC)/systime.h \
7bbaaedd
AI
909 $(SRC)/termchar.h \
910 $(SRC)/termopts.h \
aa2ee344 911 $(SRC)/w32gui.h \
6218196f 912 $(SRC)/window.h
7bbaaedd 913
aa2ee344 914$(BLD)/insdel.$(O) : \
7bbaaedd 915 $(SRC)/insdel.c \
0c1b4ae2 916 $(CONFIG_H) \
fd7a37d5 917 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 918 $(SRC)/lisp.h \
6218196f
JB
919 $(SRC)/atimer.h \
920 $(SRC)/blockinput.h \
921 $(SRC)/buffer.h \
dd6ab82f 922 $(SRC)/character.h \
6218196f 923 $(SRC)/composite.h \
7bbaaedd
AI
924 $(SRC)/dispextern.h \
925 $(SRC)/intervals.h \
6218196f
JB
926 $(SRC)/region-cache.h \
927 $(SRC)/systime.h \
6218196f
JB
928 $(SRC)/w32gui.h \
929 $(SRC)/window.h
7bbaaedd 930
aa2ee344 931$(BLD)/intervals.$(O) : \
7bbaaedd 932 $(SRC)/intervals.c \
0c1b4ae2 933 $(CONFIG_H) \
fd7a37d5 934 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 935 $(SRC)/lisp.h \
6218196f 936 $(SRC)/buffer.h \
fd7a37d5 937 $(SRC)/coding.h \
6218196f 938 $(SRC)/composite.h \
7bbaaedd
AI
939 $(SRC)/dispextern.h \
940 $(SRC)/intervals.h \
7bbaaedd 941 $(SRC)/keyboard.h \
6218196f
JB
942 $(SRC)/keymap.h \
943 $(SRC)/puresize.h \
fd7a37d5 944 $(SRC)/systime.h \
6218196f 945 $(SRC)/w32gui.h
7bbaaedd 946
aa2ee344 947$(BLD)/keyboard.$(O) : \
7bbaaedd 948 $(SRC)/keyboard.c \
0c1b4ae2 949 $(CONFIG_H) \
fd7a37d5 950 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 951 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
fd7a37d5 952 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 953 $(SRC)/lisp.h \
6218196f
JB
954 $(SRC)/atimer.h \
955 $(SRC)/blockinput.h \
7bbaaedd 956 $(SRC)/buffer.h \
dd6ab82f 957 $(SRC)/character.h \
fd7a37d5 958 $(SRC)/coding.h \
6218196f
JB
959 $(SRC)/commands.h \
960 $(SRC)/composite.h \
7bbaaedd 961 $(SRC)/dispextern.h \
6218196f
JB
962 $(SRC)/disptab.h \
963 $(SRC)/frame.h \
7bbaaedd 964 $(SRC)/intervals.h \
6218196f
JB
965 $(SRC)/keyboard.h \
966 $(SRC)/keymap.h \
967 $(SRC)/macros.h \
8d16a259 968 $(SRC)/process.h \
6218196f
JB
969 $(SRC)/puresize.h \
970 $(SRC)/syntax.h \
7bbaaedd 971 $(SRC)/syssignal.h \
6218196f 972 $(SRC)/systime.h \
6218196f
JB
973 $(SRC)/termchar.h \
974 $(SRC)/termhooks.h \
975 $(SRC)/termopts.h \
aa2ee344 976 $(SRC)/w32gui.h \
6218196f
JB
977 $(SRC)/w32term.h \
978 $(SRC)/window.h
7bbaaedd 979
aa2ee344 980$(BLD)/keymap.$(O) : \
7bbaaedd 981 $(SRC)/keymap.c \
0c1b4ae2 982 $(CONFIG_H) \
fd7a37d5 983 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 984 $(SRC)/lisp.h \
6218196f
JB
985 $(SRC)/atimer.h \
986 $(SRC)/blockinput.h \
7bbaaedd 987 $(SRC)/buffer.h \
dd6ab82f 988 $(SRC)/character.h \
6218196f 989 $(SRC)/charset.h \
fd7a37d5 990 $(SRC)/coding.h \
6218196f
JB
991 $(SRC)/commands.h \
992 $(SRC)/composite.h \
993 $(SRC)/dispextern.h \
fd7a37d5 994 $(SRC)/frame.h \
6218196f 995 $(SRC)/intervals.h \
7bbaaedd 996 $(SRC)/keyboard.h \
6218196f
JB
997 $(SRC)/keymap.h \
998 $(SRC)/puresize.h \
999 $(SRC)/systime.h \
7bbaaedd 1000 $(SRC)/termhooks.h \
fd7a37d5
JB
1001 $(SRC)/w32gui.h \
1002 $(SRC)/window.h
7bbaaedd 1003
aa2ee344 1004$(BLD)/lastfile.$(O) : \
7bbaaedd 1005 $(SRC)/lastfile.c \
0c1b4ae2 1006 $(CONFIG_H)
7bbaaedd 1007
aa2ee344 1008$(BLD)/lread.$(O) : \
7bbaaedd 1009 $(SRC)/lread.c \
0c1b4ae2 1010 $(CONFIG_H) \
fd7a37d5 1011 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 1012 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 1013 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1014 $(SRC)/lisp.h \
fd7a37d5 1015 $(SRC)/atimer.h \
0254c6f7 1016 $(SRC)/blockinput.h \
6218196f 1017 $(SRC)/buffer.h \
dd6ab82f 1018 $(SRC)/character.h \
6218196f
JB
1019 $(SRC)/charset.h \
1020 $(SRC)/coding.h \
7bbaaedd 1021 $(SRC)/commands.h \
6218196f
JB
1022 $(SRC)/composite.h \
1023 $(SRC)/dispextern.h \
fd7a37d5
JB
1024 $(SRC)/epaths.h \
1025 $(SRC)/frame.h \
6218196f 1026 $(SRC)/intervals.h \
7bbaaedd 1027 $(SRC)/keyboard.h \
fd7a37d5 1028 $(SRC)/systime.h \
7bbaaedd 1029 $(SRC)/termhooks.h \
6218196f 1030 $(SRC)/w32gui.h
7bbaaedd 1031
aa2ee344 1032$(BLD)/macros.$(O) : \
7bbaaedd 1033 $(SRC)/macros.c \
0c1b4ae2 1034 $(CONFIG_H) \
fd7a37d5 1035 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1036 $(SRC)/lisp.h \
7bbaaedd 1037 $(SRC)/buffer.h \
fd7a37d5 1038 $(SRC)/coding.h \
6218196f 1039 $(SRC)/commands.h \
df4e8455 1040 $(SRC)/composite.h \
6218196f
JB
1041 $(SRC)/dispextern.h \
1042 $(SRC)/keyboard.h \
1043 $(SRC)/macros.h \
fd7a37d5 1044 $(SRC)/systime.h \
6218196f 1045 $(SRC)/w32gui.h \
7bbaaedd
AI
1046 $(SRC)/window.h
1047
aa2ee344 1048$(BLD)/marker.$(O) : \
7bbaaedd 1049 $(SRC)/marker.c \
0c1b4ae2 1050 $(CONFIG_H) \
5e13f9d3 1051 $(SRC)/lisp.h \
6218196f 1052 $(SRC)/buffer.h \
fd7a37d5 1053 $(SRC)/character.h
7bbaaedd 1054
f0c82254 1055$(BLD)/md5.$(O) : \
6218196f 1056 $(SRC)/md5.c \
fd7a37d5 1057 $(CONFIG_H) \
6218196f 1058 $(SRC)/md5.h
f0c82254 1059
a2b7437b 1060$(BLD)/menu.$(O) : \
fd7a37d5
JB
1061 $(SRC)/menu.c \
1062 $(CONFIG_H) \
1063 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1064 $(SRC)/lisp.h \
fd7a37d5
JB
1065 $(SRC)/atimer.h \
1066 $(SRC)/blockinput.h \
1067 $(SRC)/coding.h \
df4e8455 1068 $(SRC)/composite.h \
fd7a37d5
JB
1069 $(SRC)/dispextern.h \
1070 $(SRC)/frame.h \
1071 $(SRC)/keyboard.h \
1072 $(SRC)/keymap.h \
1073 $(SRC)/menu.h \
1074 $(SRC)/systime.h \
1075 $(SRC)/termhooks.h \
1076 $(SRC)/w32gui.h \
5e13f9d3
JB
1077 $(SRC)/w32term.h \
1078 $(SRC)/window.h
a2b7437b 1079
aa2ee344 1080$(BLD)/minibuf.$(O) : \
7bbaaedd 1081 $(SRC)/minibuf.c \
0c1b4ae2 1082 $(CONFIG_H) \
fd7a37d5 1083 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1084 $(SRC)/lisp.h \
7bbaaedd 1085 $(SRC)/buffer.h \
dd6ab82f 1086 $(SRC)/character.h \
fd7a37d5 1087 $(SRC)/coding.h \
6218196f
JB
1088 $(SRC)/commands.h \
1089 $(SRC)/composite.h \
7bbaaedd
AI
1090 $(SRC)/dispextern.h \
1091 $(SRC)/frame.h \
6218196f
JB
1092 $(SRC)/intervals.h \
1093 $(SRC)/keyboard.h \
1094 $(SRC)/keymap.h \
1095 $(SRC)/syntax.h \
fd7a37d5 1096 $(SRC)/systime.h \
0254c6f7 1097 $(SRC)/termhooks.h \
6218196f
JB
1098 $(SRC)/w32gui.h \
1099 $(SRC)/window.h
7bbaaedd 1100
aa2ee344 1101$(BLD)/w32.$(O) : \
7bbaaedd 1102 $(SRC)/w32.c \
0c1b4ae2 1103 $(CONFIG_H) \
fd7a37d5 1104 $(EMACS_ROOT)/nt/inc/grp.h \
6218196f 1105 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
1106 $(EMACS_ROOT)/nt/inc/unistd.h \
1107 $(EMACS_ROOT)/nt/inc/sys/file.h \
1108 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1109 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1110 $(SRC)/lisp.h \
fd7a37d5 1111 $(SRC)/coding.h \
df4e8455 1112 $(SRC)/composite.h \
fd7a37d5 1113 $(SRC)/dispextern.h \
6218196f 1114 $(SRC)/ndir.h \
fd7a37d5 1115 $(SRC)/process.h \
6218196f
JB
1116 $(SRC)/systime.h \
1117 $(SRC)/w32.h \
fd7a37d5 1118 $(SRC)/w32gui.h \
7bbaaedd
AI
1119 $(SRC)/w32heap.h
1120
aa2ee344 1121$(BLD)/w32heap.$(O) : \
7bbaaedd 1122 $(SRC)/w32heap.c \
0c1b4ae2 1123 $(CONFIG_H) \
5e13f9d3 1124 $(SRC)/lisp.h \
6218196f 1125 $(SRC)/w32heap.h
7bbaaedd 1126
aa2ee344 1127$(BLD)/w32inevt.$(O) : \
7bbaaedd 1128 $(SRC)/w32inevt.c \
0c1b4ae2 1129 $(CONFIG_H) \
fd7a37d5 1130 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1131 $(SRC)/lisp.h \
6218196f 1132 $(SRC)/atimer.h \
7bbaaedd 1133 $(SRC)/blockinput.h \
fd7a37d5 1134 $(SRC)/coding.h \
df4e8455 1135 $(SRC)/composite.h \
fd7a37d5 1136 $(SRC)/dispextern.h \
6218196f
JB
1137 $(SRC)/frame.h \
1138 $(SRC)/keyboard.h \
1139 $(SRC)/systime.h \
7bbaaedd 1140 $(SRC)/termhooks.h \
6218196f 1141 $(SRC)/w32gui.h \
7bbaaedd 1142 $(SRC)/w32heap.h \
6218196f 1143 $(SRC)/w32term.h
7bbaaedd 1144
aa2ee344 1145$(BLD)/w32proc.$(O) : \
7bbaaedd 1146 $(SRC)/w32proc.c \
0c1b4ae2 1147 $(CONFIG_H) \
83b41e19
EZ
1148 $(EMACS_ROOT)/nt/inc/langinfo.h \
1149 $(EMACS_ROOT)/nt/inc/nl_types.h \
fd7a37d5
JB
1150 $(EMACS_ROOT)/nt/inc/unistd.h \
1151 $(EMACS_ROOT)/nt/inc/sys/file.h \
1152 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1153 $(SRC)/lisp.h \
fb38fc51 1154 $(SRC)/character.h \
fd7a37d5 1155 $(SRC)/coding.h \
df4e8455 1156 $(SRC)/composite.h \
fd7a37d5 1157 $(SRC)/dispextern.h \
6218196f
JB
1158 $(SRC)/process.h \
1159 $(SRC)/syssignal.h \
1160 $(SRC)/systime.h \
1161 $(SRC)/syswait.h \
7bbaaedd 1162 $(SRC)/w32.h \
6218196f 1163 $(SRC)/w32gui.h \
7bbaaedd 1164 $(SRC)/w32heap.h \
6218196f 1165 $(SRC)/w32term.h
7bbaaedd 1166
aa2ee344 1167$(BLD)/w32console.$(O) : \
7bbaaedd 1168 $(SRC)/w32console.c \
0c1b4ae2 1169 $(CONFIG_H) \
5e13f9d3 1170 $(SRC)/lisp.h \
dd6ab82f 1171 $(SRC)/character.h \
6218196f 1172 $(SRC)/coding.h \
df4e8455 1173 $(SRC)/composite.h \
6218196f 1174 $(SRC)/dispextern.h \
7bbaaedd 1175 $(SRC)/disptab.h \
6218196f 1176 $(SRC)/frame.h \
fd7a37d5 1177 $(SRC)/termchar.h \
7bbaaedd 1178 $(SRC)/termhooks.h \
6218196f 1179 $(SRC)/w32gui.h \
93b9e8cc 1180 $(SRC)/w32inevt.h
7bbaaedd 1181
aa2ee344 1182$(BLD)/print.$(O) : \
7bbaaedd 1183 $(SRC)/print.c \
0c1b4ae2 1184 $(CONFIG_H) \
fd7a37d5
JB
1185 $(EMACS_ROOT)/nt/inc/unistd.h \
1186 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1187 $(SRC)/lisp.h \
fd7a37d5
JB
1188 $(SRC)/atimer.h \
1189 $(SRC)/blockinput.h \
7bbaaedd 1190 $(SRC)/buffer.h \
fd7a37d5 1191 $(SRC)/ccl.h \
dd6ab82f 1192 $(SRC)/character.h \
6218196f 1193 $(SRC)/charset.h \
fd7a37d5 1194 $(SRC)/coding.h \
6218196f
JB
1195 $(SRC)/composite.h \
1196 $(SRC)/dispextern.h \
fd7a37d5 1197 $(SRC)/font.h \
7bbaaedd 1198 $(SRC)/frame.h \
6218196f
JB
1199 $(SRC)/intervals.h \
1200 $(SRC)/keyboard.h \
7bbaaedd 1201 $(SRC)/process.h \
fd7a37d5 1202 $(SRC)/systime.h \
7bbaaedd 1203 $(SRC)/termchar.h \
fd7a37d5 1204 $(SRC)/termhooks.h \
aa2ee344 1205 $(SRC)/w32gui.h \
6218196f 1206 $(SRC)/window.h
7bbaaedd 1207
aa2ee344 1208$(BLD)/process.$(O) : \
7bbaaedd 1209 $(SRC)/process.c \
0c1b4ae2 1210 $(CONFIG_H) \
fd7a37d5 1211 $(EMACS_ROOT)/nt/inc/netdb.h \
fd7a37d5
JB
1212 $(EMACS_ROOT)/nt/inc/unistd.h \
1213 $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1214 $(EMACS_ROOT)/nt/inc/netinet/in.h \
7bbaaedd 1215 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5
JB
1216 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1217 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1218 $(SRC)/lisp.h \
6218196f
JB
1219 $(SRC)/atimer.h \
1220 $(SRC)/blockinput.h \
7bbaaedd 1221 $(SRC)/buffer.h \
dd6ab82f 1222 $(SRC)/character.h \
6218196f 1223 $(SRC)/coding.h \
7bbaaedd 1224 $(SRC)/commands.h \
6218196f
JB
1225 $(SRC)/composite.h \
1226 $(SRC)/dispextern.h \
7bbaaedd 1227 $(SRC)/frame.h \
6218196f
JB
1228 $(SRC)/keyboard.h \
1229 $(SRC)/process.h \
1230 $(SRC)/sysselect.h \
7bbaaedd 1231 $(SRC)/syssignal.h \
7bbaaedd 1232 $(SRC)/systime.h \
6218196f
JB
1233 $(SRC)/systty.h \
1234 $(SRC)/syswait.h \
1235 $(SRC)/termhooks.h \
7bbaaedd 1236 $(SRC)/termopts.h \
fd7a37d5 1237 $(SRC)/w32.h \
6218196f
JB
1238 $(SRC)/w32gui.h \
1239 $(SRC)/window.h
7bbaaedd 1240
aa2ee344 1241$(BLD)/ralloc.$(O) : \
7bbaaedd 1242 $(SRC)/ralloc.c \
0c1b4ae2 1243 $(CONFIG_H) \
fd7a37d5
JB
1244 $(EMACS_ROOT)/nt/inc/unistd.h \
1245 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1246 $(SRC)/lisp.h \
fd7a37d5
JB
1247 $(SRC)/atimer.h \
1248 $(SRC)/blockinput.h \
1249 $(SRC)/getpagesize.h \
1250 $(SRC)/systime.h
7bbaaedd 1251
aa2ee344 1252$(BLD)/regex.$(O) : \
7bbaaedd 1253 $(SRC)/regex.c \
0c1b4ae2 1254 $(CONFIG_H) \
5e13f9d3 1255 $(SRC)/lisp.h \
7bbaaedd 1256 $(SRC)/buffer.h \
6218196f 1257 $(SRC)/category.h \
dd6ab82f 1258 $(SRC)/character.h \
6218196f
JB
1259 $(SRC)/regex.h \
1260 $(SRC)/syntax.h
7bbaaedd 1261
aa2ee344 1262$(BLD)/region-cache.$(O) : \
7bbaaedd 1263 $(SRC)/region-cache.c \
0c1b4ae2 1264 $(CONFIG_H) \
5e13f9d3 1265 $(SRC)/lisp.h \
7bbaaedd
AI
1266 $(SRC)/buffer.h \
1267 $(SRC)/region-cache.h
1268
aa2ee344 1269$(BLD)/scroll.$(O) : \
7bbaaedd 1270 $(SRC)/scroll.c \
0c1b4ae2 1271 $(CONFIG_H) \
fd7a37d5 1272 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1273 $(SRC)/lisp.h \
fd7a37d5 1274 $(SRC)/coding.h \
df4e8455 1275 $(SRC)/composite.h \
7bbaaedd 1276 $(SRC)/dispextern.h \
6218196f
JB
1277 $(SRC)/frame.h \
1278 $(SRC)/keyboard.h \
fd7a37d5 1279 $(SRC)/systime.h \
6218196f 1280 $(SRC)/termchar.h \
0254c6f7 1281 $(SRC)/termhooks.h \
aa2ee344 1282 $(SRC)/w32gui.h \
6218196f 1283 $(SRC)/window.h
7bbaaedd 1284
aa2ee344 1285$(BLD)/search.$(O) : \
7bbaaedd 1286 $(SRC)/search.c \
0c1b4ae2 1287 $(CONFIG_H) \
fd7a37d5 1288 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1289 $(SRC)/lisp.h \
6218196f
JB
1290 $(SRC)/atimer.h \
1291 $(SRC)/blockinput.h \
7bbaaedd 1292 $(SRC)/buffer.h \
6218196f 1293 $(SRC)/category.h \
dd6ab82f 1294 $(SRC)/character.h \
6218196f 1295 $(SRC)/charset.h \
7bbaaedd 1296 $(SRC)/commands.h \
6218196f
JB
1297 $(SRC)/composite.h \
1298 $(SRC)/dispextern.h \
1299 $(SRC)/intervals.h \
7bbaaedd
AI
1300 $(SRC)/regex.h \
1301 $(SRC)/region-cache.h \
6218196f
JB
1302 $(SRC)/syntax.h \
1303 $(SRC)/systime.h \
6218196f 1304 $(SRC)/w32gui.h
7bbaaedd 1305
f60ae425
BK
1306$(BLD)/sound.$(O) : \
1307 $(SRC)/sound.c \
0c1b4ae2 1308 $(CONFIG_H) \
fd7a37d5
JB
1309 $(EMACS_ROOT)/nt/inc/unistd.h \
1310 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1311 $(SRC)/lisp.h \
f60ae425 1312 $(SRC)/atimer.h \
fd7a37d5
JB
1313 $(SRC)/dispextern.h \
1314 $(SRC)/syssignal.h \
1315 $(SRC)/systime.h \
1316 $(SRC)/w32gui.h
f60ae425 1317
aa2ee344 1318$(BLD)/strftime.$(O) : \
7bbaaedd 1319 $(SRC)/strftime.c \
fd7a37d5
JB
1320 $(CONFIG_H) \
1321 $(EMACS_ROOT)/nt/inc/sys/time.h
7bbaaedd 1322
aa2ee344 1323$(BLD)/syntax.$(O) : \
7bbaaedd 1324 $(SRC)/syntax.c \
0c1b4ae2 1325 $(CONFIG_H) \
5e13f9d3 1326 $(SRC)/lisp.h \
7bbaaedd 1327 $(SRC)/buffer.h \
6218196f 1328 $(SRC)/category.h \
dd6ab82f 1329 $(SRC)/character.h \
6218196f
JB
1330 $(SRC)/commands.h \
1331 $(SRC)/composite.h \
1332 $(SRC)/dispextern.h \
1333 $(SRC)/intervals.h \
1334 $(SRC)/keymap.h \
fd7a37d5 1335 $(SRC)/regex.h \
7bbaaedd 1336 $(SRC)/syntax.h \
6218196f 1337 $(SRC)/w32gui.h
7bbaaedd 1338
aa2ee344 1339$(BLD)/sysdep.$(O) : \
7bbaaedd 1340 $(SRC)/sysdep.c \
0c1b4ae2 1341 $(CONFIG_H) \
df4e8455 1342 $(EMACS_ROOT)/nt/inc/grp.h \
fd7a37d5 1343 $(EMACS_ROOT)/nt/inc/netdb.h \
df4e8455 1344 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5 1345 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 1346 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5
JB
1347 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1348 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1349 $(SRC)/lisp.h \
6218196f
JB
1350 $(SRC)/atimer.h \
1351 $(SRC)/blockinput.h \
0254c6f7 1352 $(SRC)/cm.h \
fd7a37d5 1353 $(SRC)/coding.h \
df4e8455 1354 $(SRC)/composite.h \
6218196f
JB
1355 $(SRC)/dispextern.h \
1356 $(SRC)/frame.h \
1357 $(SRC)/keyboard.h \
6218196f 1358 $(SRC)/process.h \
a583bbef 1359 $(SRC)/sysselect.h \
6218196f
JB
1360 $(SRC)/syssignal.h \
1361 $(SRC)/systime.h \
7bbaaedd 1362 $(SRC)/systty.h \
7bbaaedd 1363 $(SRC)/syswait.h \
7bbaaedd 1364 $(SRC)/termchar.h \
6218196f 1365 $(SRC)/termhooks.h \
7bbaaedd 1366 $(SRC)/termopts.h \
fd7a37d5 1367 $(SRC)/w32.h \
aa2ee344 1368 $(SRC)/w32gui.h \
6218196f 1369 $(SRC)/window.h
7bbaaedd 1370
aa2ee344 1371$(BLD)/term.$(O) : \
7bbaaedd 1372 $(SRC)/term.c \
0c1b4ae2 1373 $(CONFIG_H) \
fd7a37d5
JB
1374 $(EMACS_ROOT)/nt/inc/unistd.h \
1375 $(EMACS_ROOT)/nt/inc/sys/file.h \
1376 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1377 $(SRC)/lisp.h \
fd7a37d5
JB
1378 $(SRC)/atimer.h \
1379 $(SRC)/blockinput.h \
1380 $(SRC)/buffer.h \
dd6ab82f 1381 $(SRC)/character.h \
6218196f 1382 $(SRC)/charset.h \
7bbaaedd 1383 $(SRC)/cm.h \
6218196f 1384 $(SRC)/coding.h \
fd7a37d5 1385 $(SRC)/composite.h \
aa2ee344 1386 $(SRC)/dispextern.h \
6218196f
JB
1387 $(SRC)/disptab.h \
1388 $(SRC)/frame.h \
fd7a37d5 1389 $(SRC)/intervals.h \
6218196f
JB
1390 $(SRC)/keyboard.h \
1391 $(SRC)/keymap.h \
fd7a37d5
JB
1392 $(SRC)/syssignal.h \
1393 $(SRC)/systime.h \
1394 $(SRC)/systty.h \
6218196f 1395 $(SRC)/termchar.h \
7bbaaedd 1396 $(SRC)/termhooks.h \
6218196f 1397 $(SRC)/termopts.h \
6218196f
JB
1398 $(SRC)/w32gui.h \
1399 $(SRC)/window.h
7bbaaedd 1400
0254c6f7
JR
1401$(BLD)/terminal.$(O) : \
1402 $(SRC)/terminal.c \
0c1b4ae2 1403 $(CONFIG_H) \
fd7a37d5 1404 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1405 $(SRC)/lisp.h \
0254c6f7
JR
1406 $(SRC)/charset.h \
1407 $(SRC)/coding.h \
df4e8455 1408 $(SRC)/composite.h \
fd7a37d5 1409 $(SRC)/dispextern.h \
0254c6f7
JR
1410 $(SRC)/frame.h \
1411 $(SRC)/keyboard.h \
fd7a37d5 1412 $(SRC)/systime.h \
0254c6f7 1413 $(SRC)/termchar.h \
fd7a37d5
JB
1414 $(SRC)/termhooks.h \
1415 $(SRC)/w32gui.h
0254c6f7 1416
aa2ee344 1417$(BLD)/textprop.$(O) : \
7bbaaedd 1418 $(SRC)/textprop.c \
0c1b4ae2 1419 $(CONFIG_H) \
5e13f9d3 1420 $(SRC)/lisp.h \
6218196f
JB
1421 $(SRC)/buffer.h \
1422 $(SRC)/composite.h \
7bbaaedd
AI
1423 $(SRC)/dispextern.h \
1424 $(SRC)/intervals.h \
6218196f 1425 $(SRC)/w32gui.h \
7bbaaedd
AI
1426 $(SRC)/window.h
1427
aa2ee344 1428$(BLD)/tparam.$(O) : \
7bbaaedd 1429 $(SRC)/tparam.c \
5e13f9d3
JB
1430 $(CONFIG_H) \
1431 $(SRC)/lisp.h
7bbaaedd 1432
aa2ee344 1433$(BLD)/undo.$(O) : \
7bbaaedd 1434 $(SRC)/undo.c \
0c1b4ae2 1435 $(CONFIG_H) \
5e13f9d3 1436 $(SRC)/lisp.h \
7bbaaedd 1437 $(SRC)/buffer.h \
fd7a37d5
JB
1438 $(SRC)/commands.h \
1439 $(SRC)/dispextern.h \
1440 $(SRC)/w32gui.h \
1441 $(SRC)/window.h
7bbaaedd 1442
aa2ee344 1443$(BLD)/unexw32.$(O) : \
7bbaaedd 1444 $(SRC)/unexw32.c \
0c1b4ae2 1445 $(CONFIG_H) \
7bbaaedd
AI
1446 $(SRC)/w32heap.h
1447
aa2ee344 1448$(BLD)/vm-limit.$(O) : \
7bbaaedd 1449 $(SRC)/vm-limit.c \
0c1b4ae2 1450 $(CONFIG_H) \
5e13f9d3 1451 $(SRC)/lisp.h \
d51ffa0e 1452 $(SRC)/mem-limits.h
7bbaaedd 1453
aa2ee344 1454$(BLD)/window.$(O) : \
7bbaaedd 1455 $(SRC)/window.c \
0c1b4ae2 1456 $(CONFIG_H) \
fd7a37d5 1457 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1458 $(SRC)/lisp.h \
6218196f
JB
1459 $(SRC)/atimer.h \
1460 $(SRC)/blockinput.h \
7bbaaedd 1461 $(SRC)/buffer.h \
fd7a37d5 1462 $(SRC)/coding.h \
7bbaaedd 1463 $(SRC)/commands.h \
6218196f
JB
1464 $(SRC)/composite.h \
1465 $(SRC)/dispextern.h \
7bbaaedd 1466 $(SRC)/disptab.h \
6218196f
JB
1467 $(SRC)/frame.h \
1468 $(SRC)/indent.h \
1469 $(SRC)/intervals.h \
7bbaaedd 1470 $(SRC)/keyboard.h \
6218196f
JB
1471 $(SRC)/keymap.h \
1472 $(SRC)/systime.h \
1473 $(SRC)/termchar.h \
fd7a37d5 1474 $(SRC)/termhooks.h \
6218196f
JB
1475 $(SRC)/w32gui.h \
1476 $(SRC)/w32term.h \
1477 $(SRC)/window.h
7bbaaedd 1478
aa2ee344 1479$(BLD)/xdisp.$(O) : \
7bbaaedd 1480 $(SRC)/xdisp.c \
0c1b4ae2 1481 $(CONFIG_H) \
fd7a37d5
JB
1482 $(EMACS_ROOT)/nt/inc/unistd.h \
1483 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1484 $(SRC)/lisp.h \
8cb9dfbf 1485 $(SRC)/atimer.h \
cad6f96a 1486 $(SRC)/blockinput.h \
7bbaaedd 1487 $(SRC)/buffer.h \
6218196f 1488 $(SRC)/ccl.h \
dd6ab82f 1489 $(SRC)/character.h \
6218196f
JB
1490 $(SRC)/charset.h \
1491 $(SRC)/coding.h \
7bbaaedd 1492 $(SRC)/commands.h \
6218196f
JB
1493 $(SRC)/composite.h \
1494 $(SRC)/dispextern.h \
7bbaaedd 1495 $(SRC)/disptab.h \
223250a6 1496 $(SRC)/font.h \
6218196f
JB
1497 $(SRC)/fontset.h \
1498 $(SRC)/frame.h \
1499 $(SRC)/indent.h \
1500 $(SRC)/intervals.h \
1501 $(SRC)/keyboard.h \
57cb6dbe 1502 $(SRC)/keymap.h \
6218196f
JB
1503 $(SRC)/macros.h \
1504 $(SRC)/process.h \
1505 $(SRC)/region-cache.h \
8cb9dfbf 1506 $(SRC)/systime.h \
6218196f 1507 $(SRC)/termchar.h \
7bbaaedd 1508 $(SRC)/termhooks.h \
da7e2be6 1509 $(SRC)/termopts.h \
aa2ee344 1510 $(SRC)/w32gui.h \
a821edb8 1511 $(SRC)/w32term.h \
6218196f 1512 $(SRC)/window.h
7bbaaedd 1513
fd7a37d5 1514$(BLD)/xfaces.$(O) : \
6218196f 1515 $(SRC)/xfaces.c \
0c1b4ae2 1516 $(CONFIG_H) \
fd7a37d5 1517 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1518 $(SRC)/lisp.h \
6218196f
JB
1519 $(SRC)/atimer.h \
1520 $(SRC)/blockinput.h \
7bbaaedd 1521 $(SRC)/buffer.h \
fd7a37d5 1522 $(SRC)/ccl.h \
dd6ab82f 1523 $(SRC)/character.h \
6218196f 1524 $(SRC)/charset.h \
fd7a37d5 1525 $(SRC)/coding.h \
6218196f 1526 $(SRC)/composite.h \
7bbaaedd 1527 $(SRC)/dispextern.h \
223250a6 1528 $(SRC)/font.h \
6218196f 1529 $(SRC)/fontset.h \
7bbaaedd 1530 $(SRC)/frame.h \
7bbaaedd 1531 $(SRC)/intervals.h \
6218196f
JB
1532 $(SRC)/keyboard.h \
1533 $(SRC)/systime.h \
0254c6f7
JR
1534 $(SRC)/termchar.h \
1535 $(SRC)/termhooks.h \
6218196f
JB
1536 $(SRC)/w32gui.h \
1537 $(SRC)/w32term.h \
1538 $(SRC)/window.h
7bbaaedd 1539
fd7a37d5 1540$(BLD)/w32fns.$(O) : \
6218196f 1541 $(SRC)/w32fns.c \
0c1b4ae2 1542 $(CONFIG_H) \
fd7a37d5 1543 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1544 $(SRC)/lisp.h \
6218196f
JB
1545 $(SRC)/atimer.h \
1546 $(SRC)/blockinput.h \
7bbaaedd 1547 $(SRC)/buffer.h \
6218196f 1548 $(SRC)/ccl.h \
dd6ab82f 1549 $(SRC)/character.h \
7bbaaedd
AI
1550 $(SRC)/charset.h \
1551 $(SRC)/coding.h \
6218196f 1552 $(SRC)/composite.h \
7bbaaedd 1553 $(SRC)/dispextern.h \
7bbaaedd 1554 $(SRC)/epaths.h \
223250a6 1555 $(SRC)/font.h \
6218196f
JB
1556 $(SRC)/fontset.h \
1557 $(SRC)/frame.h \
1558 $(SRC)/intervals.h \
1559 $(SRC)/keyboard.h \
1560 $(SRC)/systime.h \
1561 $(SRC)/termhooks.h \
ee0a16cf 1562 $(SRC)/w32.h \
fd7a37d5 1563 $(SRC)/w32font.h \
6218196f 1564 $(SRC)/w32gui.h \
7bbaaedd 1565 $(SRC)/w32heap.h \
6218196f
JB
1566 $(SRC)/w32term.h \
1567 $(SRC)/window.h
7bbaaedd 1568
fd7a37d5 1569$(BLD)/w32menu.$(O) : \
6218196f 1570 $(SRC)/w32menu.c \
0c1b4ae2 1571 $(CONFIG_H) \
fd7a37d5 1572 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1573 $(SRC)/lisp.h \
6218196f 1574 $(SRC)/atimer.h \
7bbaaedd
AI
1575 $(SRC)/blockinput.h \
1576 $(SRC)/buffer.h \
dd6ab82f 1577 $(SRC)/character.h \
7bbaaedd 1578 $(SRC)/charset.h \
6218196f 1579 $(SRC)/coding.h \
df4e8455 1580 $(SRC)/composite.h \
6218196f
JB
1581 $(SRC)/dispextern.h \
1582 $(SRC)/frame.h \
1583 $(SRC)/keyboard.h \
1584 $(SRC)/keymap.h \
5e13f9d3 1585 $(SRC)/menu.h \
6218196f
JB
1586 $(SRC)/systime.h \
1587 $(SRC)/termhooks.h \
6218196f
JB
1588 $(SRC)/w32gui.h \
1589 $(SRC)/w32term.h \
1590 $(SRC)/window.h
7bbaaedd 1591
fd7a37d5 1592$(BLD)/w32term.$(O) : \
6218196f 1593 $(SRC)/w32term.c \
0c1b4ae2 1594 $(CONFIG_H) \
fd7a37d5
JB
1595 $(EMACS_ROOT)/nt/inc/unistd.h \
1596 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1597 $(SRC)/lisp.h \
6218196f 1598 $(SRC)/atimer.h \
7bbaaedd 1599 $(SRC)/blockinput.h \
6218196f
JB
1600 $(SRC)/buffer.h \
1601 $(SRC)/ccl.h \
dd6ab82f 1602 $(SRC)/character.h \
6218196f
JB
1603 $(SRC)/charset.h \
1604 $(SRC)/coding.h \
1605 $(SRC)/composite.h \
7bbaaedd 1606 $(SRC)/dispextern.h \
7bbaaedd 1607 $(SRC)/disptab.h \
223250a6 1608 $(SRC)/font.h \
6218196f
JB
1609 $(SRC)/fontset.h \
1610 $(SRC)/frame.h \
7bbaaedd 1611 $(SRC)/intervals.h \
6218196f
JB
1612 $(SRC)/keyboard.h \
1613 $(SRC)/keymap.h \
fd7a37d5 1614 $(SRC)/process.h \
6218196f
JB
1615 $(SRC)/systime.h \
1616 $(SRC)/systty.h \
1617 $(SRC)/termchar.h \
1618 $(SRC)/termhooks.h \
1619 $(SRC)/termopts.h \
fd7a37d5 1620 $(SRC)/w32font.h \
6218196f
JB
1621 $(SRC)/w32gui.h \
1622 $(SRC)/w32heap.h \
1623 $(SRC)/w32term.h \
1624 $(SRC)/window.h
7bbaaedd 1625
fd7a37d5 1626$(BLD)/w32select.$(O) : \
6218196f 1627 $(SRC)/w32select.c \
0c1b4ae2 1628 $(CONFIG_H) \
fd7a37d5 1629 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1630 $(SRC)/lisp.h \
6218196f
JB
1631 $(SRC)/atimer.h \
1632 $(SRC)/blockinput.h \
dd6ab82f 1633 $(SRC)/character.h \
6218196f
JB
1634 $(SRC)/charset.h \
1635 $(SRC)/coding.h \
1636 $(SRC)/composite.h \
6218196f
JB
1637 $(SRC)/keyboard.h \
1638 $(SRC)/systime.h \
6218196f 1639 $(SRC)/w32gui.h \
b6cc2ad0 1640 $(SRC)/w32heap.h \
6218196f 1641 $(SRC)/w32term.h
7bbaaedd 1642
fd7a37d5 1643$(BLD)/w32reg.$(O) : \
6218196f 1644 $(SRC)/w32reg.c \
0c1b4ae2 1645 $(CONFIG_H) \
fd7a37d5 1646 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1647 $(SRC)/lisp.h \
6218196f
JB
1648 $(SRC)/atimer.h \
1649 $(SRC)/blockinput.h \
1650 $(SRC)/systime.h \
7bbaaedd 1651 $(SRC)/w32gui.h \
6218196f 1652 $(SRC)/w32term.h
7bbaaedd 1653
fd7a37d5 1654$(BLD)/w32xfns.$(O) : \
6218196f 1655 $(SRC)/w32xfns.c \
0c1b4ae2 1656 $(CONFIG_H) \
fd7a37d5 1657 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1658 $(SRC)/lisp.h \
6218196f
JB
1659 $(SRC)/atimer.h \
1660 $(SRC)/blockinput.h \
1661 $(SRC)/charset.h \
fd7a37d5 1662 $(SRC)/coding.h \
df4e8455 1663 $(SRC)/composite.h \
fd7a37d5 1664 $(SRC)/dispextern.h \
6218196f
JB
1665 $(SRC)/fontset.h \
1666 $(SRC)/frame.h \
1667 $(SRC)/keyboard.h \
1668 $(SRC)/systime.h \
6218196f
JB
1669 $(SRC)/w32gui.h \
1670 $(SRC)/w32term.h
5ac50e96 1671
fd7a37d5 1672$(BLD)/w32font.$(O) : \
223250a6 1673 $(SRC)/w32font.c \
0c1b4ae2 1674 $(CONFIG_H) \
5e13f9d3 1675 $(SRC)/lisp.h \
fd7a37d5 1676 $(SRC)/ccl.h \
0c1b4ae2
JR
1677 $(SRC)/character.h \
1678 $(SRC)/charset.h \
df4e8455
JB
1679 $(SRC)/coding.h \
1680 $(SRC)/composite.h \
0c1b4ae2
JR
1681 $(SRC)/dispextern.h \
1682 $(SRC)/font.h \
1683 $(SRC)/fontset.h \
1684 $(SRC)/frame.h \
1685 $(SRC)/w32font.h \
1686 $(SRC)/w32gui.h \
1687 $(SRC)/w32term.h
1688
fd7a37d5 1689$(BLD)/w32uniscribe.$(O) : \
0c1b4ae2
JR
1690 $(SRC)/w32uniscribe.c \
1691 $(CONFIG_H) \
5e13f9d3 1692 $(SRC)/lisp.h \
fd7a37d5 1693 $(SRC)/ccl.h \
223250a6
JR
1694 $(SRC)/character.h \
1695 $(SRC)/charset.h \
091a66d2 1696 $(SRC)/composite.h \
223250a6
JR
1697 $(SRC)/dispextern.h \
1698 $(SRC)/font.h \
1699 $(SRC)/fontset.h \
1700 $(SRC)/frame.h \
c1ca4c24 1701 $(SRC)/w32font.h \
223250a6
JR
1702 $(SRC)/w32gui.h \
1703 $(SRC)/w32term.h
1704
5ac50e96
EZ
1705# Each object file depends on stamp_BLD, because in parallel builds we must
1706# make sure $(BLD) exists before starting compilations.
1707#
223250a6 1708$(OBJ0) $(OBJ1) $(WIN32OBJ) $(FONTOBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD