* xdisp.c (message): Do not use NO_ARG_ARRAY.
[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) \
65 $(BLD)/cm.$(O) \
55fb4286
EZ
66 $(BLD)/cmds.$(O) \
67 $(BLD)/data.$(O) \
68 $(BLD)/dired.$(O) \
ffe42183
JR
69 $(BLD)/dispnew.$(O) \
70 $(BLD)/doc.$(O) \
55fb4286 71 $(BLD)/doprnt.$(O) \
ffe42183 72 $(BLD)/editfns.$(O) \
55fb4286
EZ
73 $(BLD)/eval.$(O) \
74 $(BLD)/fileio.$(O) \
ffe42183
JR
75 $(BLD)/filelock.$(O) \
76 $(BLD)/filemode.$(O) \
77 $(BLD)/fns.$(O) \
55fb4286
EZ
78 $(BLD)/indent.$(O) \
79 $(BLD)/insdel.$(O) \
ffe42183 80 $(BLD)/keyboard.$(O) \
55fb4286
EZ
81 $(BLD)/keymap.$(O) \
82 $(BLD)/lread.$(O) \
83 $(BLD)/macros.$(O) \
84 $(BLD)/marker.$(O) \
ffe42183
JR
85 $(BLD)/md5.$(O) \
86 $(BLD)/minibuf.$(O) \
87 $(BLD)/w32.$(O) \
88 $(BLD)/w32heap.$(O) \
89 $(BLD)/w32inevt.$(O) \
90 $(BLD)/w32proc.$(O) \
91 $(BLD)/w32console.$(O) \
55fb4286 92 $(BLD)/print.$(O) \
ffe42183 93 $(BLD)/process.$(O) \
55fb4286
EZ
94 $(BLD)/regex.$(O) \
95 $(BLD)/scroll.$(O) \
96 $(BLD)/search.$(O) \
97 $(BLD)/sound.$(O) \
98 $(BLD)/syntax.$(O) \
99 $(BLD)/sysdep.$(O) \
100 $(BLD)/term.$(O) \
ffe42183 101 $(BLD)/termcap.$(O) \
55fb4286
EZ
102 $(BLD)/tparam.$(O) \
103 $(BLD)/undo.$(O) \
ffe42183 104 $(BLD)/unexw32.$(O) \
55fb4286
EZ
105 $(BLD)/window.$(O) \
106 $(BLD)/xdisp.$(O) \
ffe42183
JR
107 $(BLD)/casetab.$(O) \
108 $(BLD)/floatfns.$(O) \
55fb4286 109 $(BLD)/frame.$(O) \
ffe42183
JR
110 $(BLD)/gmalloc.$(O) \
111 $(BLD)/intervals.$(O) \
112 $(BLD)/composite.$(O) \
55fb4286 113 $(BLD)/ralloc.$(O) \
ffe42183
JR
114 $(BLD)/textprop.$(O) \
115 $(BLD)/vm-limit.$(O) \
55fb4286 116 $(BLD)/region-cache.$(O) \
ffe42183 117 $(BLD)/strftime.$(O) \
f4b6ba46 118 $(BLD)/bidi.$(O) \
ffe42183
JR
119 $(BLD)/charset.$(O) \
120 $(BLD)/character.$(O) \
121 $(BLD)/chartab.$(O) \
55fb4286 122 $(BLD)/coding.$(O) \
ffe42183
JR
123 $(BLD)/category.$(O) \
124 $(BLD)/ccl.$(O) \
55fb4286 125 $(BLD)/font.$(O) \
ffe42183 126 $(BLD)/fontset.$(O) \
55fb4286
EZ
127 $(BLD)/fringe.$(O) \
128 $(BLD)/image.$(O) \
a2b7437b
JR
129 $(BLD)/terminal.$(O) \
130 $(BLD)/menu.$(O)
dd6ab82f 131
ffe42183
JR
132WIN32OBJ = $(BLD)/w32term.$(O) \
133 $(BLD)/w32xfns.$(O) \
134 $(BLD)/w32fns.$(O) \
135 $(BLD)/xfaces.$(O) \
55fb4286 136 $(BLD)/w32select.$(O) \
ffe42183 137 $(BLD)/w32menu.$(O) \
42da60f7 138 $(BLD)/w32reg.$(O)
7bbaaedd 139
0c1b4ae2 140FONTOBJ = $(BLD)/w32font.$(O) $(BLD)/w32uniscribe.$(O)
223250a6 141
7bbaaedd
AI
142LIBS = $(TLIB0) \
143 $(TLIB1) \
144 $(TLIBW32) \
145 $(TLASTLIB) \
c1c5c06d 146 $(WINMM) \
7bbaaedd
AI
147 $(ADVAPI32) \
148 $(GDI32) \
149 $(COMDLG32) \
150 $(USER32) \
ffe42183 151 $(MPR) \
7bbaaedd 152 $(SHELL32) \
39a0e135 153 $(WINSPOOL) \
c1c5c06d 154 $(OLE32) \
cbcb463b 155 $(COMCTL32) \
0c1b4ae2 156 $(UNISCRIBE) \
7bbaaedd
AI
157 $(libc)
158
159#
160# Build the executable and dump it.
161#
162all: $(ALL)
163
164#
165# The dumped executable
166#
5ac50e96 167emacs: stamp_BLD $(EMACS)
bfd1fa28 168$(EMACS): $(DOC) $(TEMACS)
0533c860 169 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
325111e9 170 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
7bbaaedd
AI
171
172#
173# The undumped executable
174# Note the extra post-link step to insert a static preload heap section.
175# If preload runs out of memory, increase the last argument to addsection
176# (it is the preload heap size in MB).
177#
5ac50e96 178temacs: stamp_BLD $(TEMACS)
cd4344a3
EZ
179$(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
180 ../nt/$(BLD)/addsection.exe
7bbaaedd 181 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
526dc3b3 182 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
878bde49
KR
183
184# These omit firstfile.${O}, but there's no documentation in there
185# anyways.
249b9564 186buildobj.h: $(SRC)/makefile.w32-in
877610de
EZ
187 $(MAKE) $(MFLAGS) make-buildobj-$(SHELLTYPE)
188
249b9564
EZ
189# Cannot have blanks between the backslash and the redirection
190# characters, because CMD's `echo' will put them in buildobj.h.
877610de 191make-buildobj-CMD:
249b9564
EZ
192 echo #define BUILDOBJ ^"\> buildobj.h
193 echo $(OBJ0) \>> buildobj.h
194 echo $(OBJ1) \>> buildobj.h
195 echo $(WIN32OBJ) \>> buildobj.h
196 echo $(FONTOBJ) \>> buildobj.h
197 echo ^">> buildobj.h
877610de
EZ
198
199make-buildobj-SH:
249b9564
EZ
200 echo '#define BUILDOBJ $(DQUOTE)\' > buildobj.h
201 echo $(OBJ0) '\' >> buildobj.h
202 echo $(OBJ1) '\' >> buildobj.h
203 echo $(WIN32OBJ) '\' >> buildobj.h
204 echo $(FONTOBJ) '\' >> buildobj.h
205 echo '$(DQUOTE)' >> buildobj.h
7bbaaedd
AI
206
207bootstrap: bootstrap-emacs
208
209#
210# Build a temacs with a sufficiently large PURESIZE to load the
211# Lisp files from loadup.el in source form.
212#
bb49fc13
EZ
213# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
214# this can break with GNU Make 3.81 and later if sh.exe is used.
4a31b11a 215bootstrap-temacs:
5ac50e96 216 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
7bbaaedd
AI
217
218#
d51ffa0e 219# Dump an Emacs executable named bootstrap-emacs containing the
7bbaaedd
AI
220# files from loadup.el in source form.
221#
222bootstrap-emacs: bootstrap-temacs
0533c860 223 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
7bbaaedd
AI
224 - mkdir "../bin"
225 $(CP) $(EMACS) ../bin
226
227#
228# Force recompile of files that depend on PURESIZE
229#
230bootstrap-clean:
231 - $(DEL) $(BLD)/alloc.$(O)
232 - $(DEL) $(BLD)/data.$(O)
233 - $(DEL) $(BLD)/intervals.$(O)
234 - $(DEL) $(BLD)/keyboard.$(O)
235 - $(DEL) $(BLD)/keymap.$(O)
236
237#
238# The resource file. NT 3.10 requires the use of cvtres; even though
239# it is not necessary on later versions, it is still ok to use it.
240#
f3d5bd22 241$(TRES): ../nt/emacs.rc stamp_BLD
8b57a7fd 242 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
7bbaaedd
AI
243
244#
d51ffa0e 245# Build the library. Split up the build into two phases...otherwise we
7bbaaedd
AI
246# run out of command line space.
247#
248$(TLIB0): $(OBJ0)
249 - $(DEL) $@
250 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
251$(TLIB1): $(OBJ1)
252 - $(DEL) $@
253 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
223250a6 254$(TLIBW32): $(WIN32OBJ) $(FONTOBJ)
7bbaaedd
AI
255 - $(DEL) $@
256 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
257
258#
259# Place lastfile.$(O) in its own library so that it can be loaded after
260# the source libraries but before any system libraries. Doing so defines
261# the end of Emacs' data section portably across compilers and systems.
262#
263$(TLASTLIB): $(BLD)/lastfile.$(O)
264 - $(DEL) $@
265 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
266
267#
268# Assuming INSTALL_DIR is defined, build and install emacs in it.
269#
270install: $(ALL)
271 - mkdir "$(INSTALL_DIR)/bin"
272 $(CP) $(EMACS) $(INSTALL_DIR)/bin
273
274#
275# Maintenance
d51ffa0e 276#
b5d2b4ab
EZ
277# We used to delete *~, s/*~, m/*~ here, but that might inadvertently
278# remove precious files if it happens to match their short 8+3 aliases.
7bbaaedd 279clean:
b5d2b4ab 280 - $(DEL) "s/*.h~" "m/*.h~"
5cdd7eef 281 - $(DEL) $(COMPILER_TEMP_FILES)
7bbaaedd 282 - $(DEL_TREE) $(OBJDIR)
435c23ee 283 - $(DEL) stamp_BLD
e7adeadc 284 - $(DEL) buildobj.h
7bbaaedd 285
c2378898
JR
286distclean: cleanall
287 - $(DEL) config.h epaths.h Makefile
288
289maintainer-clean: distclean
290 - $(DEL) TAGS
7bbaaedd
AI
291
292cleanall: clean
293 - $(DEL_TREE) obj
294 - $(DEL_TREE) obj-spd
295 - $(DEL_TREE) oo
296 - $(DEL_TREE) oo-spd
297
298### DEPENDENCIES ###
299
0c1b4ae2 300EMACS_ROOT = ..
0c1b4ae2
JR
301CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
302 $(EMACS_ROOT)/src/m/intel386.h \
fd7a37d5
JB
303 $(EMACS_ROOT)/src/config.h \
304 $(EMACS_ROOT)/nt/inc/sys/stat.h
7bbaaedd 305
aa2ee344 306$(BLD)/alloc.$(O) : \
7bbaaedd 307 $(SRC)/alloc.c \
0c1b4ae2 308 $(CONFIG_H) \
fd7a37d5
JB
309 $(EMACS_ROOT)/nt/inc/unistd.h \
310 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 311 $(SRC)/lisp.h \
fd7a37d5 312 $(SRC)/atimer.h \
6218196f
JB
313 $(SRC)/blockinput.h \
314 $(SRC)/buffer.h \
dd6ab82f 315 $(SRC)/character.h \
fd7a37d5 316 $(SRC)/coding.h \
6218196f 317 $(SRC)/composite.h \
7bbaaedd 318 $(SRC)/dispextern.h \
6218196f 319 $(SRC)/frame.h \
7bbaaedd 320 $(SRC)/intervals.h \
6218196f
JB
321 $(SRC)/keyboard.h \
322 $(SRC)/process.h \
7bbaaedd 323 $(SRC)/puresize.h \
6218196f 324 $(SRC)/syssignal.h \
fd7a37d5
JB
325 $(SRC)/systime.h \
326 $(SRC)/termhooks.h \
327 $(SRC)/w32.h \
6218196f
JB
328 $(SRC)/w32gui.h \
329 $(SRC)/window.h
7bbaaedd 330
aa2ee344 331$(BLD)/atimer.$(O) : \
7bbaaedd 332 $(SRC)/atimer.c \
0c1b4ae2 333 $(CONFIG_H) \
fd7a37d5
JB
334 $(EMACS_ROOT)/nt/inc/unistd.h \
335 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 336 $(SRC)/lisp.h \
7bbaaedd 337 $(SRC)/atimer.h \
6218196f 338 $(SRC)/blockinput.h \
7bbaaedd 339 $(SRC)/syssignal.h \
6218196f 340 $(SRC)/systime.h
7bbaaedd 341
f4b6ba46
EZ
342$(BLD)/bidi.$(O) : \
343 $(SRC)/bidi.c \
344 $(CONFIG_H) \
345 $(SRC)/lisp.h \
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)/cm.$(O) : \
7bbaaedd 498 $(SRC)/cm.c \
0c1b4ae2 499 $(CONFIG_H) \
5e13f9d3 500 $(SRC)/lisp.h \
7bbaaedd 501 $(SRC)/cm.h \
fd7a37d5
JB
502 $(SRC)/dispextern.h \
503 $(SRC)/frame.h \
504 $(SRC)/termchar.h \
505 $(SRC)/termhooks.h \
506 $(SRC)/w32gui.h
7bbaaedd 507
aa2ee344 508$(BLD)/cmds.$(O) : \
7bbaaedd 509 $(SRC)/cmds.c \
0c1b4ae2 510 $(CONFIG_H) \
fd7a37d5 511 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 512 $(SRC)/lisp.h \
6218196f 513 $(SRC)/buffer.h \
dd6ab82f 514 $(SRC)/character.h \
fd7a37d5 515 $(SRC)/coding.h \
7bbaaedd 516 $(SRC)/commands.h \
df4e8455 517 $(SRC)/composite.h \
6218196f 518 $(SRC)/dispextern.h \
ad903955 519 $(SRC)/frame.h \
6218196f
JB
520 $(SRC)/keyboard.h \
521 $(SRC)/keymap.h \
522 $(SRC)/syntax.h \
fd7a37d5 523 $(SRC)/systime.h \
6218196f
JB
524 $(SRC)/w32gui.h \
525 $(SRC)/window.h
526
527$(BLD)/coding.$(O) : \
528 $(SRC)/coding.c \
0c1b4ae2 529 $(CONFIG_H) \
5e13f9d3 530 $(SRC)/lisp.h \
7bbaaedd 531 $(SRC)/buffer.h \
6218196f 532 $(SRC)/ccl.h \
dd6ab82f 533 $(SRC)/character.h \
6218196f
JB
534 $(SRC)/charset.h \
535 $(SRC)/coding.h \
536 $(SRC)/composite.h \
537 $(SRC)/dispextern.h \
0254c6f7
JR
538 $(SRC)/frame.h \
539 $(SRC)/termhooks.h \
6218196f
JB
540 $(SRC)/w32gui.h \
541 $(SRC)/window.h
7bbaaedd 542
aa2ee344 543$(BLD)/composite.$(O) : \
7bbaaedd 544 $(SRC)/composite.c \
0c1b4ae2 545 $(CONFIG_H) \
5e13f9d3 546 $(SRC)/lisp.h \
7bbaaedd 547 $(SRC)/buffer.h \
fd7a37d5 548 $(SRC)/ccl.h \
dd6ab82f 549 $(SRC)/character.h \
df4e8455 550 $(SRC)/coding.h \
7bbaaedd 551 $(SRC)/composite.h \
6218196f 552 $(SRC)/dispextern.h \
fd7a37d5
JB
553 $(SRC)/font.h \
554 $(SRC)/frame.h \
6218196f 555 $(SRC)/intervals.h \
df4e8455 556 $(SRC)/termhooks.h \
fd7a37d5
JB
557 $(SRC)/w32gui.h \
558 $(SRC)/window.h
7bbaaedd 559
aa2ee344 560$(BLD)/data.$(O) : \
7bbaaedd 561 $(SRC)/data.c \
0c1b4ae2 562 $(CONFIG_H) \
fd7a37d5 563 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 564 $(SRC)/lisp.h \
7bbaaedd 565 $(SRC)/buffer.h \
df4e8455 566 $(SRC)/ccl.h \
dd6ab82f 567 $(SRC)/character.h \
fd7a37d5 568 $(SRC)/coding.h \
df4e8455 569 $(SRC)/composite.h \
fd7a37d5 570 $(SRC)/dispextern.h \
df4e8455 571 $(SRC)/font.h \
6218196f
JB
572 $(SRC)/frame.h \
573 $(SRC)/keyboard.h \
574 $(SRC)/puresize.h \
0254c6f7 575 $(SRC)/syssignal.h \
fd7a37d5
JB
576 $(SRC)/systime.h \
577 $(SRC)/termhooks.h \
578 $(SRC)/w32gui.h
7bbaaedd 579
aa2ee344 580$(BLD)/dired.$(O) : \
7bbaaedd 581 $(SRC)/dired.c \
0c1b4ae2 582 $(CONFIG_H) \
fd7a37d5
JB
583 $(EMACS_ROOT)/nt/inc/grp.h \
584 $(EMACS_ROOT)/nt/inc/pwd.h \
585 $(EMACS_ROOT)/nt/inc/unistd.h \
586 $(EMACS_ROOT)/nt/inc/sys/dir.h \
587 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 588 $(SRC)/lisp.h \
fd7a37d5
JB
589 $(SRC)/atimer.h \
590 $(SRC)/blockinput.h \
7bbaaedd 591 $(SRC)/buffer.h \
dd6ab82f 592 $(SRC)/character.h \
6218196f
JB
593 $(SRC)/charset.h \
594 $(SRC)/coding.h \
7bbaaedd 595 $(SRC)/commands.h \
df4e8455 596 $(SRC)/composite.h \
6218196f
JB
597 $(SRC)/ndir.h \
598 $(SRC)/regex.h \
599 $(SRC)/systime.h
7bbaaedd 600
aa2ee344 601$(BLD)/dispnew.$(O) : \
7bbaaedd 602 $(SRC)/dispnew.c \
0c1b4ae2 603 $(CONFIG_H) \
fd7a37d5
JB
604 $(EMACS_ROOT)/nt/inc/unistd.h \
605 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 606 $(SRC)/lisp.h \
6218196f
JB
607 $(SRC)/atimer.h \
608 $(SRC)/blockinput.h \
7bbaaedd 609 $(SRC)/buffer.h \
dd6ab82f 610 $(SRC)/character.h \
6218196f 611 $(SRC)/cm.h \
fd7a37d5 612 $(SRC)/coding.h \
7bbaaedd 613 $(SRC)/commands.h \
6218196f
JB
614 $(SRC)/composite.h \
615 $(SRC)/dispextern.h \
7bbaaedd 616 $(SRC)/disptab.h \
6218196f 617 $(SRC)/frame.h \
7bbaaedd 618 $(SRC)/indent.h \
7bbaaedd 619 $(SRC)/intervals.h \
6218196f
JB
620 $(SRC)/keyboard.h \
621 $(SRC)/process.h \
622 $(SRC)/syssignal.h \
623 $(SRC)/systime.h \
624 $(SRC)/termchar.h \
625 $(SRC)/termhooks.h \
626 $(SRC)/termopts.h \
aa2ee344 627 $(SRC)/w32gui.h \
6218196f
JB
628 $(SRC)/w32term.h \
629 $(SRC)/window.h
7bbaaedd 630
aa2ee344 631$(BLD)/doc.$(O) : \
7bbaaedd 632 $(SRC)/doc.c \
0c1b4ae2 633 $(CONFIG_H) \
249b9564 634 buildobj.h \
fd7a37d5 635 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 636 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 637 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 638 $(SRC)/lisp.h \
7bbaaedd 639 $(SRC)/buffer.h \
dd6ab82f 640 $(SRC)/character.h \
fd7a37d5 641 $(SRC)/coding.h \
df4e8455 642 $(SRC)/composite.h \
6218196f 643 $(SRC)/keyboard.h \
fd7a37d5
JB
644 $(SRC)/keymap.h \
645 $(SRC)/systime.h
7bbaaedd 646
aa2ee344 647$(BLD)/doprnt.$(O) : \
7bbaaedd 648 $(SRC)/doprnt.c \
0c1b4ae2 649 $(CONFIG_H) \
fd7a37d5 650 $(EMACS_ROOT)/nt/inc/unistd.h \
5e13f9d3 651 $(SRC)/lisp.h \
fd7a37d5 652 $(SRC)/character.h
7bbaaedd 653
aa2ee344 654$(BLD)/editfns.$(O) : \
7bbaaedd 655 $(SRC)/editfns.c \
0c1b4ae2 656 $(CONFIG_H) \
7bbaaedd 657 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
658 $(EMACS_ROOT)/nt/inc/unistd.h \
659 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 660 $(SRC)/lisp.h \
fd7a37d5
JB
661 $(SRC)/atimer.h \
662 $(SRC)/blockinput.h \
6218196f 663 $(SRC)/buffer.h \
dd6ab82f 664 $(SRC)/character.h \
6218196f
JB
665 $(SRC)/coding.h \
666 $(SRC)/composite.h \
7bbaaedd 667 $(SRC)/dispextern.h \
6218196f 668 $(SRC)/frame.h \
7bbaaedd 669 $(SRC)/intervals.h \
6218196f 670 $(SRC)/systime.h \
6218196f
JB
671 $(SRC)/w32gui.h \
672 $(SRC)/window.h
7bbaaedd 673
aa2ee344 674$(BLD)/emacs.$(O) : \
7bbaaedd 675 $(SRC)/emacs.c \
0c1b4ae2 676 $(CONFIG_H) \
fd7a37d5 677 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 678 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 679 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 680 $(SRC)/lisp.h \
6218196f
JB
681 $(SRC)/atimer.h \
682 $(SRC)/blockinput.h \
683 $(SRC)/buffer.h \
fd7a37d5 684 $(SRC)/coding.h \
7bbaaedd 685 $(SRC)/commands.h \
6218196f 686 $(SRC)/composite.h \
7bbaaedd 687 $(SRC)/dispextern.h \
fd7a37d5 688 $(SRC)/frame.h \
7bbaaedd 689 $(SRC)/intervals.h \
6218196f
JB
690 $(SRC)/keyboard.h \
691 $(SRC)/keymap.h \
692 $(SRC)/process.h \
7bbaaedd 693 $(SRC)/syssignal.h \
6218196f
JB
694 $(SRC)/systime.h \
695 $(SRC)/systty.h \
696 $(SRC)/termhooks.h \
fd7a37d5 697 $(SRC)/w32.h \
a63cf46f 698 $(SRC)/w32gui.h \
b6cc2ad0 699 $(SRC)/w32heap.h \
a63cf46f 700 $(SRC)/window.h
7bbaaedd 701
aa2ee344 702$(BLD)/eval.$(O) : \
7bbaaedd 703 $(SRC)/eval.c \
0c1b4ae2 704 $(CONFIG_H) \
fd7a37d5 705 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 706 $(SRC)/lisp.h \
6218196f 707 $(SRC)/atimer.h \
7bbaaedd 708 $(SRC)/blockinput.h \
fd7a37d5 709 $(SRC)/coding.h \
7bbaaedd 710 $(SRC)/commands.h \
df4e8455 711 $(SRC)/composite.h \
6218196f
JB
712 $(SRC)/dispextern.h \
713 $(SRC)/keyboard.h \
714 $(SRC)/systime.h \
6218196f 715 $(SRC)/w32gui.h
7bbaaedd 716
aa2ee344 717$(BLD)/fileio.$(O) : \
7bbaaedd 718 $(SRC)/fileio.c \
0c1b4ae2 719 $(CONFIG_H) \
7bbaaedd 720 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
721 $(EMACS_ROOT)/nt/inc/unistd.h \
722 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 723 $(SRC)/lisp.h \
fd7a37d5
JB
724 $(SRC)/atimer.h \
725 $(SRC)/blockinput.h \
6218196f 726 $(SRC)/buffer.h \
dd6ab82f 727 $(SRC)/character.h \
6218196f
JB
728 $(SRC)/coding.h \
729 $(SRC)/commands.h \
730 $(SRC)/composite.h \
7bbaaedd 731 $(SRC)/dispextern.h \
fd7a37d5 732 $(SRC)/frame.h \
7bbaaedd 733 $(SRC)/intervals.h \
6218196f 734 $(SRC)/systime.h \
6218196f
JB
735 $(SRC)/w32gui.h \
736 $(SRC)/window.h
7bbaaedd 737
aa2ee344 738$(BLD)/filelock.$(O) : \
7bbaaedd 739 $(SRC)/filelock.c \
0c1b4ae2 740 $(CONFIG_H) \
7bbaaedd 741 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5 742 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 743 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 744 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 745 $(SRC)/lisp.h \
7bbaaedd 746 $(SRC)/buffer.h \
dd6ab82f 747 $(SRC)/character.h \
6218196f 748 $(SRC)/coding.h \
df4e8455 749 $(SRC)/composite.h \
6218196f 750 $(SRC)/systime.h
7bbaaedd 751
aa2ee344 752$(BLD)/filemode.$(O) : \
7bbaaedd 753 $(SRC)/filemode.c \
0c1b4ae2 754 $(CONFIG_H)
7bbaaedd 755
aa2ee344 756$(BLD)/firstfile.$(O) : \
7bbaaedd 757 $(SRC)/firstfile.c \
0c1b4ae2 758 $(CONFIG_H)
7bbaaedd 759
aa2ee344 760$(BLD)/floatfns.$(O) : \
7bbaaedd 761 $(SRC)/floatfns.c \
0c1b4ae2 762 $(CONFIG_H) \
5e13f9d3 763 $(SRC)/lisp.h \
7bbaaedd
AI
764 $(SRC)/syssignal.h
765
aa2ee344 766$(BLD)/fns.$(O) : \
7bbaaedd 767 $(SRC)/fns.c \
0c1b4ae2 768 $(CONFIG_H) \
83b41e19
EZ
769 $(EMACS_ROOT)/nt/inc/langinfo.h \
770 $(EMACS_ROOT)/nt/inc/nl_types.h \
fd7a37d5
JB
771 $(EMACS_ROOT)/nt/inc/unistd.h \
772 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 773 $(SRC)/lisp.h \
6218196f
JB
774 $(SRC)/atimer.h \
775 $(SRC)/blockinput.h \
7bbaaedd 776 $(SRC)/buffer.h \
dd6ab82f 777 $(SRC)/character.h \
6218196f
JB
778 $(SRC)/coding.h \
779 $(SRC)/commands.h \
780 $(SRC)/composite.h \
781 $(SRC)/dispextern.h \
782 $(SRC)/frame.h \
783 $(SRC)/intervals.h \
7bbaaedd 784 $(SRC)/keyboard.h \
6218196f
JB
785 $(SRC)/keymap.h \
786 $(SRC)/md5.h \
787 $(SRC)/systime.h \
6218196f
JB
788 $(SRC)/w32gui.h \
789 $(SRC)/window.h
790
223250a6
JR
791$(BLD)/font.$(O) : \
792 $(SRC)/font.c \
0c1b4ae2 793 $(CONFIG_H) \
5e13f9d3 794 $(SRC)/lisp.h \
fd7a37d5 795 $(SRC)/buffer.h \
223250a6
JR
796 $(SRC)/ccl.h \
797 $(SRC)/character.h \
798 $(SRC)/charset.h \
fd7a37d5
JB
799 $(SRC)/composite.h \
800 $(SRC)/dispextern.h \
801 $(SRC)/font.h \
802 $(SRC)/fontset.h \
803 $(SRC)/frame.h \
804 $(SRC)/w32gui.h \
805 $(SRC)/w32term.h \
806 $(SRC)/window.h
223250a6 807
6218196f
JB
808$(BLD)/fontset.$(O) : \
809 $(SRC)/fontset.c \
0c1b4ae2 810 $(CONFIG_H) \
fd7a37d5 811 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 812 $(SRC)/lisp.h \
fd7a37d5
JB
813 $(SRC)/atimer.h \
814 $(SRC)/blockinput.h \
6218196f
JB
815 $(SRC)/buffer.h \
816 $(SRC)/ccl.h \
dd6ab82f 817 $(SRC)/character.h \
6218196f 818 $(SRC)/charset.h \
fd7a37d5
JB
819 $(SRC)/coding.h \
820 $(SRC)/composite.h \
7bbaaedd 821 $(SRC)/dispextern.h \
223250a6 822 $(SRC)/font.h \
6218196f
JB
823 $(SRC)/fontset.h \
824 $(SRC)/frame.h \
fd7a37d5 825 $(SRC)/intervals.h \
6218196f 826 $(SRC)/keyboard.h \
fd7a37d5 827 $(SRC)/systime.h \
0254c6f7 828 $(SRC)/termhooks.h \
aa2ee344 829 $(SRC)/w32gui.h \
fd7a37d5 830 $(SRC)/w32term.h \
6218196f 831 $(SRC)/window.h
7bbaaedd 832
aa2ee344 833$(BLD)/frame.$(O) : \
7bbaaedd 834 $(SRC)/frame.c \
0c1b4ae2 835 $(CONFIG_H) \
fd7a37d5 836 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 837 $(SRC)/lisp.h \
0c126b96
JB
838 $(SRC)/atimer.h \
839 $(SRC)/blockinput.h \
7bbaaedd 840 $(SRC)/buffer.h \
fd7a37d5 841 $(SRC)/ccl.h \
dd6ab82f 842 $(SRC)/character.h \
fd7a37d5 843 $(SRC)/coding.h \
7bbaaedd 844 $(SRC)/commands.h \
df4e8455 845 $(SRC)/composite.h \
6218196f 846 $(SRC)/dispextern.h \
fd7a37d5 847 $(SRC)/font.h \
6218196f
JB
848 $(SRC)/fontset.h \
849 $(SRC)/frame.h \
850 $(SRC)/keyboard.h \
0c126b96 851 $(SRC)/systime.h \
0254c6f7 852 $(SRC)/termchar.h \
6218196f 853 $(SRC)/termhooks.h \
6218196f
JB
854 $(SRC)/w32gui.h \
855 $(SRC)/w32term.h \
856 $(SRC)/window.h
7bbaaedd 857
eee30217
JB
858$(BLD)/fringe.$(O) : \
859 $(SRC)/fringe.c \
0c1b4ae2 860 $(CONFIG_H) \
fd7a37d5 861 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 862 $(SRC)/lisp.h \
eee30217
JB
863 $(SRC)/atimer.h \
864 $(SRC)/blockinput.h \
865 $(SRC)/buffer.h \
866 $(SRC)/dispextern.h \
867 $(SRC)/frame.h \
868 $(SRC)/systime.h \
fd7a37d5 869 $(SRC)/termhooks.h \
eee30217
JB
870 $(SRC)/w32gui.h \
871 $(SRC)/window.h
872
aa2ee344 873$(BLD)/gmalloc.$(O) : \
7bbaaedd 874 $(SRC)/gmalloc.c \
0c1b4ae2 875 $(CONFIG_H) \
fd7a37d5 876 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 877 $(SRC)/getpagesize.h
7bbaaedd 878
fd7a37d5 879$(BLD)/image.$(O) : \
25abe3d4 880 $(SRC)/image.c \
0c1b4ae2 881 $(CONFIG_H) \
fd7a37d5
JB
882 $(EMACS_ROOT)/nt/inc/unistd.h \
883 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 884 $(SRC)/lisp.h \
25abe3d4
KS
885 $(SRC)/atimer.h \
886 $(SRC)/blockinput.h \
fd7a37d5
JB
887 $(SRC)/ccl.h \
888 $(SRC)/character.h \
889 $(SRC)/coding.h \
df4e8455 890 $(SRC)/composite.h \
25abe3d4
KS
891 $(SRC)/dispextern.h \
892 $(SRC)/epaths.h \
fd7a37d5 893 $(SRC)/font.h \
25abe3d4
KS
894 $(SRC)/frame.h \
895 $(SRC)/systime.h \
896 $(SRC)/termhooks.h \
25abe3d4 897 $(SRC)/w32gui.h \
25abe3d4
KS
898 $(SRC)/w32term.h \
899 $(SRC)/window.h
900
aa2ee344 901$(BLD)/indent.$(O) : \
7bbaaedd 902 $(SRC)/indent.c \
0c1b4ae2 903 $(CONFIG_H) \
fd7a37d5 904 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 905 $(SRC)/lisp.h \
7bbaaedd 906 $(SRC)/buffer.h \
6218196f 907 $(SRC)/category.h \
dd6ab82f 908 $(SRC)/character.h \
fd7a37d5 909 $(SRC)/coding.h \
6218196f
JB
910 $(SRC)/composite.h \
911 $(SRC)/dispextern.h \
912 $(SRC)/disptab.h \
7bbaaedd 913 $(SRC)/frame.h \
6218196f
JB
914 $(SRC)/indent.h \
915 $(SRC)/intervals.h \
916 $(SRC)/keyboard.h \
917 $(SRC)/region-cache.h \
fd7a37d5 918 $(SRC)/systime.h \
7bbaaedd
AI
919 $(SRC)/termchar.h \
920 $(SRC)/termopts.h \
aa2ee344 921 $(SRC)/w32gui.h \
6218196f 922 $(SRC)/window.h
7bbaaedd 923
aa2ee344 924$(BLD)/insdel.$(O) : \
7bbaaedd 925 $(SRC)/insdel.c \
0c1b4ae2 926 $(CONFIG_H) \
fd7a37d5 927 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 928 $(SRC)/lisp.h \
6218196f
JB
929 $(SRC)/atimer.h \
930 $(SRC)/blockinput.h \
931 $(SRC)/buffer.h \
dd6ab82f 932 $(SRC)/character.h \
6218196f 933 $(SRC)/composite.h \
7bbaaedd
AI
934 $(SRC)/dispextern.h \
935 $(SRC)/intervals.h \
6218196f
JB
936 $(SRC)/region-cache.h \
937 $(SRC)/systime.h \
6218196f
JB
938 $(SRC)/w32gui.h \
939 $(SRC)/window.h
7bbaaedd 940
aa2ee344 941$(BLD)/intervals.$(O) : \
7bbaaedd 942 $(SRC)/intervals.c \
0c1b4ae2 943 $(CONFIG_H) \
fd7a37d5 944 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 945 $(SRC)/lisp.h \
6218196f 946 $(SRC)/buffer.h \
fd7a37d5 947 $(SRC)/coding.h \
6218196f 948 $(SRC)/composite.h \
7bbaaedd
AI
949 $(SRC)/dispextern.h \
950 $(SRC)/intervals.h \
7bbaaedd 951 $(SRC)/keyboard.h \
6218196f
JB
952 $(SRC)/keymap.h \
953 $(SRC)/puresize.h \
fd7a37d5 954 $(SRC)/systime.h \
6218196f 955 $(SRC)/w32gui.h
7bbaaedd 956
aa2ee344 957$(BLD)/keyboard.$(O) : \
7bbaaedd 958 $(SRC)/keyboard.c \
0c1b4ae2 959 $(CONFIG_H) \
fd7a37d5 960 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 961 $(EMACS_ROOT)/nt/inc/sys/ioctl.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 \
7bbaaedd 966 $(SRC)/buffer.h \
dd6ab82f 967 $(SRC)/character.h \
fd7a37d5 968 $(SRC)/coding.h \
6218196f
JB
969 $(SRC)/commands.h \
970 $(SRC)/composite.h \
7bbaaedd 971 $(SRC)/dispextern.h \
6218196f
JB
972 $(SRC)/disptab.h \
973 $(SRC)/frame.h \
7bbaaedd 974 $(SRC)/intervals.h \
6218196f
JB
975 $(SRC)/keyboard.h \
976 $(SRC)/keymap.h \
977 $(SRC)/macros.h \
978 $(SRC)/puresize.h \
979 $(SRC)/syntax.h \
7bbaaedd 980 $(SRC)/syssignal.h \
6218196f 981 $(SRC)/systime.h \
6218196f
JB
982 $(SRC)/termchar.h \
983 $(SRC)/termhooks.h \
984 $(SRC)/termopts.h \
aa2ee344 985 $(SRC)/w32gui.h \
6218196f
JB
986 $(SRC)/w32term.h \
987 $(SRC)/window.h
7bbaaedd 988
aa2ee344 989$(BLD)/keymap.$(O) : \
7bbaaedd 990 $(SRC)/keymap.c \
0c1b4ae2 991 $(CONFIG_H) \
fd7a37d5 992 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 993 $(SRC)/lisp.h \
6218196f
JB
994 $(SRC)/atimer.h \
995 $(SRC)/blockinput.h \
7bbaaedd 996 $(SRC)/buffer.h \
dd6ab82f 997 $(SRC)/character.h \
6218196f 998 $(SRC)/charset.h \
fd7a37d5 999 $(SRC)/coding.h \
6218196f
JB
1000 $(SRC)/commands.h \
1001 $(SRC)/composite.h \
1002 $(SRC)/dispextern.h \
fd7a37d5 1003 $(SRC)/frame.h \
6218196f 1004 $(SRC)/intervals.h \
7bbaaedd 1005 $(SRC)/keyboard.h \
6218196f
JB
1006 $(SRC)/keymap.h \
1007 $(SRC)/puresize.h \
1008 $(SRC)/systime.h \
7bbaaedd 1009 $(SRC)/termhooks.h \
fd7a37d5
JB
1010 $(SRC)/w32gui.h \
1011 $(SRC)/window.h
7bbaaedd 1012
aa2ee344 1013$(BLD)/lastfile.$(O) : \
7bbaaedd 1014 $(SRC)/lastfile.c \
0c1b4ae2 1015 $(CONFIG_H)
7bbaaedd 1016
aa2ee344 1017$(BLD)/lread.$(O) : \
7bbaaedd 1018 $(SRC)/lread.c \
0c1b4ae2 1019 $(CONFIG_H) \
fd7a37d5 1020 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 1021 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 1022 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1023 $(SRC)/lisp.h \
fd7a37d5 1024 $(SRC)/atimer.h \
0254c6f7 1025 $(SRC)/blockinput.h \
6218196f 1026 $(SRC)/buffer.h \
dd6ab82f 1027 $(SRC)/character.h \
6218196f
JB
1028 $(SRC)/charset.h \
1029 $(SRC)/coding.h \
7bbaaedd 1030 $(SRC)/commands.h \
6218196f
JB
1031 $(SRC)/composite.h \
1032 $(SRC)/dispextern.h \
fd7a37d5
JB
1033 $(SRC)/epaths.h \
1034 $(SRC)/frame.h \
6218196f 1035 $(SRC)/intervals.h \
7bbaaedd 1036 $(SRC)/keyboard.h \
fd7a37d5 1037 $(SRC)/systime.h \
7bbaaedd 1038 $(SRC)/termhooks.h \
6218196f 1039 $(SRC)/w32gui.h
7bbaaedd 1040
aa2ee344 1041$(BLD)/macros.$(O) : \
7bbaaedd 1042 $(SRC)/macros.c \
0c1b4ae2 1043 $(CONFIG_H) \
fd7a37d5 1044 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1045 $(SRC)/lisp.h \
7bbaaedd 1046 $(SRC)/buffer.h \
fd7a37d5 1047 $(SRC)/coding.h \
6218196f 1048 $(SRC)/commands.h \
df4e8455 1049 $(SRC)/composite.h \
6218196f
JB
1050 $(SRC)/dispextern.h \
1051 $(SRC)/keyboard.h \
1052 $(SRC)/macros.h \
fd7a37d5 1053 $(SRC)/systime.h \
6218196f 1054 $(SRC)/w32gui.h \
7bbaaedd
AI
1055 $(SRC)/window.h
1056
aa2ee344 1057$(BLD)/marker.$(O) : \
7bbaaedd 1058 $(SRC)/marker.c \
0c1b4ae2 1059 $(CONFIG_H) \
5e13f9d3 1060 $(SRC)/lisp.h \
6218196f 1061 $(SRC)/buffer.h \
fd7a37d5 1062 $(SRC)/character.h
7bbaaedd 1063
f0c82254 1064$(BLD)/md5.$(O) : \
6218196f 1065 $(SRC)/md5.c \
fd7a37d5 1066 $(CONFIG_H) \
6218196f 1067 $(SRC)/md5.h
f0c82254 1068
a2b7437b 1069$(BLD)/menu.$(O) : \
fd7a37d5
JB
1070 $(SRC)/menu.c \
1071 $(CONFIG_H) \
1072 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1073 $(SRC)/lisp.h \
fd7a37d5
JB
1074 $(SRC)/atimer.h \
1075 $(SRC)/blockinput.h \
1076 $(SRC)/coding.h \
df4e8455 1077 $(SRC)/composite.h \
fd7a37d5
JB
1078 $(SRC)/dispextern.h \
1079 $(SRC)/frame.h \
1080 $(SRC)/keyboard.h \
1081 $(SRC)/keymap.h \
1082 $(SRC)/menu.h \
1083 $(SRC)/systime.h \
1084 $(SRC)/termhooks.h \
1085 $(SRC)/w32gui.h \
5e13f9d3
JB
1086 $(SRC)/w32term.h \
1087 $(SRC)/window.h
a2b7437b 1088
aa2ee344 1089$(BLD)/minibuf.$(O) : \
7bbaaedd 1090 $(SRC)/minibuf.c \
0c1b4ae2 1091 $(CONFIG_H) \
fd7a37d5 1092 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1093 $(SRC)/lisp.h \
7bbaaedd 1094 $(SRC)/buffer.h \
dd6ab82f 1095 $(SRC)/character.h \
fd7a37d5 1096 $(SRC)/coding.h \
6218196f
JB
1097 $(SRC)/commands.h \
1098 $(SRC)/composite.h \
7bbaaedd
AI
1099 $(SRC)/dispextern.h \
1100 $(SRC)/frame.h \
6218196f
JB
1101 $(SRC)/intervals.h \
1102 $(SRC)/keyboard.h \
1103 $(SRC)/keymap.h \
1104 $(SRC)/syntax.h \
fd7a37d5 1105 $(SRC)/systime.h \
0254c6f7 1106 $(SRC)/termhooks.h \
6218196f
JB
1107 $(SRC)/w32gui.h \
1108 $(SRC)/window.h
7bbaaedd 1109
aa2ee344 1110$(BLD)/w32.$(O) : \
7bbaaedd 1111 $(SRC)/w32.c \
0c1b4ae2 1112 $(CONFIG_H) \
fd7a37d5 1113 $(EMACS_ROOT)/nt/inc/grp.h \
6218196f 1114 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
1115 $(EMACS_ROOT)/nt/inc/unistd.h \
1116 $(EMACS_ROOT)/nt/inc/sys/file.h \
1117 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1118 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1119 $(SRC)/lisp.h \
fd7a37d5 1120 $(SRC)/coding.h \
df4e8455 1121 $(SRC)/composite.h \
fd7a37d5 1122 $(SRC)/dispextern.h \
6218196f 1123 $(SRC)/ndir.h \
fd7a37d5 1124 $(SRC)/process.h \
6218196f
JB
1125 $(SRC)/systime.h \
1126 $(SRC)/w32.h \
fd7a37d5 1127 $(SRC)/w32gui.h \
7bbaaedd
AI
1128 $(SRC)/w32heap.h
1129
aa2ee344 1130$(BLD)/w32heap.$(O) : \
7bbaaedd 1131 $(SRC)/w32heap.c \
0c1b4ae2 1132 $(CONFIG_H) \
5e13f9d3 1133 $(SRC)/lisp.h \
6218196f 1134 $(SRC)/w32heap.h
7bbaaedd 1135
aa2ee344 1136$(BLD)/w32inevt.$(O) : \
7bbaaedd 1137 $(SRC)/w32inevt.c \
0c1b4ae2 1138 $(CONFIG_H) \
fd7a37d5 1139 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1140 $(SRC)/lisp.h \
6218196f 1141 $(SRC)/atimer.h \
7bbaaedd 1142 $(SRC)/blockinput.h \
fd7a37d5 1143 $(SRC)/coding.h \
df4e8455 1144 $(SRC)/composite.h \
fd7a37d5 1145 $(SRC)/dispextern.h \
6218196f
JB
1146 $(SRC)/frame.h \
1147 $(SRC)/keyboard.h \
1148 $(SRC)/systime.h \
7bbaaedd 1149 $(SRC)/termhooks.h \
6218196f 1150 $(SRC)/w32gui.h \
7bbaaedd 1151 $(SRC)/w32heap.h \
6218196f 1152 $(SRC)/w32term.h
7bbaaedd 1153
aa2ee344 1154$(BLD)/w32proc.$(O) : \
7bbaaedd 1155 $(SRC)/w32proc.c \
0c1b4ae2 1156 $(CONFIG_H) \
83b41e19
EZ
1157 $(EMACS_ROOT)/nt/inc/langinfo.h \
1158 $(EMACS_ROOT)/nt/inc/nl_types.h \
fd7a37d5
JB
1159 $(EMACS_ROOT)/nt/inc/unistd.h \
1160 $(EMACS_ROOT)/nt/inc/sys/file.h \
1161 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1162 $(SRC)/lisp.h \
fb38fc51 1163 $(SRC)/character.h \
fd7a37d5 1164 $(SRC)/coding.h \
df4e8455 1165 $(SRC)/composite.h \
fd7a37d5 1166 $(SRC)/dispextern.h \
6218196f
JB
1167 $(SRC)/process.h \
1168 $(SRC)/syssignal.h \
1169 $(SRC)/systime.h \
1170 $(SRC)/syswait.h \
7bbaaedd 1171 $(SRC)/w32.h \
6218196f 1172 $(SRC)/w32gui.h \
7bbaaedd 1173 $(SRC)/w32heap.h \
6218196f 1174 $(SRC)/w32term.h
7bbaaedd 1175
aa2ee344 1176$(BLD)/w32console.$(O) : \
7bbaaedd 1177 $(SRC)/w32console.c \
0c1b4ae2 1178 $(CONFIG_H) \
5e13f9d3 1179 $(SRC)/lisp.h \
dd6ab82f 1180 $(SRC)/character.h \
6218196f 1181 $(SRC)/coding.h \
df4e8455 1182 $(SRC)/composite.h \
6218196f 1183 $(SRC)/dispextern.h \
7bbaaedd 1184 $(SRC)/disptab.h \
6218196f 1185 $(SRC)/frame.h \
fd7a37d5 1186 $(SRC)/termchar.h \
7bbaaedd 1187 $(SRC)/termhooks.h \
6218196f 1188 $(SRC)/w32gui.h \
93b9e8cc 1189 $(SRC)/w32inevt.h
7bbaaedd 1190
aa2ee344 1191$(BLD)/print.$(O) : \
7bbaaedd 1192 $(SRC)/print.c \
0c1b4ae2 1193 $(CONFIG_H) \
fd7a37d5
JB
1194 $(EMACS_ROOT)/nt/inc/unistd.h \
1195 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1196 $(SRC)/lisp.h \
fd7a37d5
JB
1197 $(SRC)/atimer.h \
1198 $(SRC)/blockinput.h \
7bbaaedd 1199 $(SRC)/buffer.h \
fd7a37d5 1200 $(SRC)/ccl.h \
dd6ab82f 1201 $(SRC)/character.h \
6218196f 1202 $(SRC)/charset.h \
fd7a37d5 1203 $(SRC)/coding.h \
6218196f
JB
1204 $(SRC)/composite.h \
1205 $(SRC)/dispextern.h \
fd7a37d5 1206 $(SRC)/font.h \
7bbaaedd 1207 $(SRC)/frame.h \
6218196f
JB
1208 $(SRC)/intervals.h \
1209 $(SRC)/keyboard.h \
7bbaaedd 1210 $(SRC)/process.h \
fd7a37d5 1211 $(SRC)/systime.h \
7bbaaedd 1212 $(SRC)/termchar.h \
fd7a37d5 1213 $(SRC)/termhooks.h \
aa2ee344 1214 $(SRC)/w32gui.h \
6218196f 1215 $(SRC)/window.h
7bbaaedd 1216
aa2ee344 1217$(BLD)/process.$(O) : \
7bbaaedd 1218 $(SRC)/process.c \
0c1b4ae2 1219 $(CONFIG_H) \
fd7a37d5 1220 $(EMACS_ROOT)/nt/inc/netdb.h \
fd7a37d5
JB
1221 $(EMACS_ROOT)/nt/inc/unistd.h \
1222 $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1223 $(EMACS_ROOT)/nt/inc/netinet/in.h \
7bbaaedd 1224 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5
JB
1225 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1226 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1227 $(SRC)/lisp.h \
6218196f
JB
1228 $(SRC)/atimer.h \
1229 $(SRC)/blockinput.h \
7bbaaedd 1230 $(SRC)/buffer.h \
dd6ab82f 1231 $(SRC)/character.h \
6218196f 1232 $(SRC)/coding.h \
7bbaaedd 1233 $(SRC)/commands.h \
6218196f
JB
1234 $(SRC)/composite.h \
1235 $(SRC)/dispextern.h \
7bbaaedd 1236 $(SRC)/frame.h \
6218196f
JB
1237 $(SRC)/keyboard.h \
1238 $(SRC)/process.h \
1239 $(SRC)/sysselect.h \
7bbaaedd 1240 $(SRC)/syssignal.h \
7bbaaedd 1241 $(SRC)/systime.h \
6218196f
JB
1242 $(SRC)/systty.h \
1243 $(SRC)/syswait.h \
1244 $(SRC)/termhooks.h \
7bbaaedd 1245 $(SRC)/termopts.h \
fd7a37d5 1246 $(SRC)/w32.h \
6218196f
JB
1247 $(SRC)/w32gui.h \
1248 $(SRC)/window.h
7bbaaedd 1249
aa2ee344 1250$(BLD)/ralloc.$(O) : \
7bbaaedd 1251 $(SRC)/ralloc.c \
0c1b4ae2 1252 $(CONFIG_H) \
fd7a37d5
JB
1253 $(EMACS_ROOT)/nt/inc/unistd.h \
1254 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1255 $(SRC)/lisp.h \
fd7a37d5
JB
1256 $(SRC)/atimer.h \
1257 $(SRC)/blockinput.h \
1258 $(SRC)/getpagesize.h \
1259 $(SRC)/systime.h
7bbaaedd 1260
aa2ee344 1261$(BLD)/regex.$(O) : \
7bbaaedd 1262 $(SRC)/regex.c \
0c1b4ae2 1263 $(CONFIG_H) \
5e13f9d3 1264 $(SRC)/lisp.h \
7bbaaedd 1265 $(SRC)/buffer.h \
6218196f 1266 $(SRC)/category.h \
dd6ab82f 1267 $(SRC)/character.h \
6218196f
JB
1268 $(SRC)/regex.h \
1269 $(SRC)/syntax.h
7bbaaedd 1270
aa2ee344 1271$(BLD)/region-cache.$(O) : \
7bbaaedd 1272 $(SRC)/region-cache.c \
0c1b4ae2 1273 $(CONFIG_H) \
5e13f9d3 1274 $(SRC)/lisp.h \
7bbaaedd
AI
1275 $(SRC)/buffer.h \
1276 $(SRC)/region-cache.h
1277
aa2ee344 1278$(BLD)/scroll.$(O) : \
7bbaaedd 1279 $(SRC)/scroll.c \
0c1b4ae2 1280 $(CONFIG_H) \
fd7a37d5 1281 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1282 $(SRC)/lisp.h \
fd7a37d5 1283 $(SRC)/coding.h \
df4e8455 1284 $(SRC)/composite.h \
7bbaaedd 1285 $(SRC)/dispextern.h \
6218196f
JB
1286 $(SRC)/frame.h \
1287 $(SRC)/keyboard.h \
fd7a37d5 1288 $(SRC)/systime.h \
6218196f 1289 $(SRC)/termchar.h \
0254c6f7 1290 $(SRC)/termhooks.h \
aa2ee344 1291 $(SRC)/w32gui.h \
6218196f 1292 $(SRC)/window.h
7bbaaedd 1293
aa2ee344 1294$(BLD)/search.$(O) : \
7bbaaedd 1295 $(SRC)/search.c \
0c1b4ae2 1296 $(CONFIG_H) \
fd7a37d5 1297 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1298 $(SRC)/lisp.h \
6218196f
JB
1299 $(SRC)/atimer.h \
1300 $(SRC)/blockinput.h \
7bbaaedd 1301 $(SRC)/buffer.h \
6218196f 1302 $(SRC)/category.h \
dd6ab82f 1303 $(SRC)/character.h \
6218196f 1304 $(SRC)/charset.h \
7bbaaedd 1305 $(SRC)/commands.h \
6218196f
JB
1306 $(SRC)/composite.h \
1307 $(SRC)/dispextern.h \
1308 $(SRC)/intervals.h \
7bbaaedd
AI
1309 $(SRC)/regex.h \
1310 $(SRC)/region-cache.h \
6218196f
JB
1311 $(SRC)/syntax.h \
1312 $(SRC)/systime.h \
6218196f 1313 $(SRC)/w32gui.h
7bbaaedd 1314
f60ae425
BK
1315$(BLD)/sound.$(O) : \
1316 $(SRC)/sound.c \
0c1b4ae2 1317 $(CONFIG_H) \
fd7a37d5
JB
1318 $(EMACS_ROOT)/nt/inc/unistd.h \
1319 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1320 $(SRC)/lisp.h \
f60ae425 1321 $(SRC)/atimer.h \
fd7a37d5
JB
1322 $(SRC)/dispextern.h \
1323 $(SRC)/syssignal.h \
1324 $(SRC)/systime.h \
1325 $(SRC)/w32gui.h
f60ae425 1326
aa2ee344 1327$(BLD)/strftime.$(O) : \
7bbaaedd 1328 $(SRC)/strftime.c \
fd7a37d5
JB
1329 $(CONFIG_H) \
1330 $(EMACS_ROOT)/nt/inc/sys/time.h
7bbaaedd 1331
aa2ee344 1332$(BLD)/syntax.$(O) : \
7bbaaedd 1333 $(SRC)/syntax.c \
0c1b4ae2 1334 $(CONFIG_H) \
5e13f9d3 1335 $(SRC)/lisp.h \
7bbaaedd 1336 $(SRC)/buffer.h \
6218196f 1337 $(SRC)/category.h \
dd6ab82f 1338 $(SRC)/character.h \
6218196f
JB
1339 $(SRC)/commands.h \
1340 $(SRC)/composite.h \
1341 $(SRC)/dispextern.h \
1342 $(SRC)/intervals.h \
1343 $(SRC)/keymap.h \
fd7a37d5 1344 $(SRC)/regex.h \
7bbaaedd 1345 $(SRC)/syntax.h \
6218196f 1346 $(SRC)/w32gui.h
7bbaaedd 1347
aa2ee344 1348$(BLD)/sysdep.$(O) : \
7bbaaedd 1349 $(SRC)/sysdep.c \
0c1b4ae2 1350 $(CONFIG_H) \
df4e8455 1351 $(EMACS_ROOT)/nt/inc/grp.h \
fd7a37d5 1352 $(EMACS_ROOT)/nt/inc/netdb.h \
df4e8455 1353 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5 1354 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd
AI
1355 $(EMACS_ROOT)/nt/inc/sys/file.h \
1356 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
fd7a37d5
JB
1357 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1358 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1359 $(SRC)/lisp.h \
6218196f
JB
1360 $(SRC)/atimer.h \
1361 $(SRC)/blockinput.h \
0254c6f7 1362 $(SRC)/cm.h \
fd7a37d5 1363 $(SRC)/coding.h \
df4e8455 1364 $(SRC)/composite.h \
6218196f
JB
1365 $(SRC)/dispextern.h \
1366 $(SRC)/frame.h \
1367 $(SRC)/keyboard.h \
6218196f 1368 $(SRC)/process.h \
6218196f
JB
1369 $(SRC)/syssignal.h \
1370 $(SRC)/systime.h \
7bbaaedd 1371 $(SRC)/systty.h \
7bbaaedd 1372 $(SRC)/syswait.h \
7bbaaedd 1373 $(SRC)/termchar.h \
6218196f 1374 $(SRC)/termhooks.h \
7bbaaedd 1375 $(SRC)/termopts.h \
fd7a37d5 1376 $(SRC)/w32.h \
aa2ee344 1377 $(SRC)/w32gui.h \
6218196f 1378 $(SRC)/window.h
7bbaaedd 1379
aa2ee344 1380$(BLD)/term.$(O) : \
7bbaaedd 1381 $(SRC)/term.c \
0c1b4ae2 1382 $(CONFIG_H) \
fd7a37d5
JB
1383 $(EMACS_ROOT)/nt/inc/unistd.h \
1384 $(EMACS_ROOT)/nt/inc/sys/file.h \
1385 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1386 $(SRC)/lisp.h \
fd7a37d5
JB
1387 $(SRC)/atimer.h \
1388 $(SRC)/blockinput.h \
1389 $(SRC)/buffer.h \
dd6ab82f 1390 $(SRC)/character.h \
6218196f 1391 $(SRC)/charset.h \
7bbaaedd 1392 $(SRC)/cm.h \
6218196f 1393 $(SRC)/coding.h \
fd7a37d5 1394 $(SRC)/composite.h \
aa2ee344 1395 $(SRC)/dispextern.h \
6218196f
JB
1396 $(SRC)/disptab.h \
1397 $(SRC)/frame.h \
fd7a37d5 1398 $(SRC)/intervals.h \
6218196f
JB
1399 $(SRC)/keyboard.h \
1400 $(SRC)/keymap.h \
fd7a37d5
JB
1401 $(SRC)/syssignal.h \
1402 $(SRC)/systime.h \
1403 $(SRC)/systty.h \
6218196f 1404 $(SRC)/termchar.h \
7bbaaedd 1405 $(SRC)/termhooks.h \
6218196f 1406 $(SRC)/termopts.h \
6218196f
JB
1407 $(SRC)/w32gui.h \
1408 $(SRC)/window.h
7bbaaedd 1409
aa2ee344 1410$(BLD)/termcap.$(O) : \
7bbaaedd 1411 $(SRC)/termcap.c \
0c1b4ae2 1412 $(CONFIG_H) \
fd7a37d5 1413 $(EMACS_ROOT)/nt/inc/unistd.h \
5e13f9d3
JB
1414 $(EMACS_ROOT)/nt/inc/sys/file.h \
1415 $(SRC)/lisp.h
7bbaaedd 1416
0254c6f7
JR
1417$(BLD)/terminal.$(O) : \
1418 $(SRC)/terminal.c \
0c1b4ae2 1419 $(CONFIG_H) \
fd7a37d5 1420 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1421 $(SRC)/lisp.h \
0254c6f7
JR
1422 $(SRC)/charset.h \
1423 $(SRC)/coding.h \
df4e8455 1424 $(SRC)/composite.h \
fd7a37d5 1425 $(SRC)/dispextern.h \
0254c6f7
JR
1426 $(SRC)/frame.h \
1427 $(SRC)/keyboard.h \
fd7a37d5 1428 $(SRC)/systime.h \
0254c6f7 1429 $(SRC)/termchar.h \
fd7a37d5
JB
1430 $(SRC)/termhooks.h \
1431 $(SRC)/w32gui.h
0254c6f7 1432
aa2ee344 1433$(BLD)/textprop.$(O) : \
7bbaaedd 1434 $(SRC)/textprop.c \
0c1b4ae2 1435 $(CONFIG_H) \
5e13f9d3 1436 $(SRC)/lisp.h \
6218196f
JB
1437 $(SRC)/buffer.h \
1438 $(SRC)/composite.h \
7bbaaedd
AI
1439 $(SRC)/dispextern.h \
1440 $(SRC)/intervals.h \
6218196f 1441 $(SRC)/w32gui.h \
7bbaaedd
AI
1442 $(SRC)/window.h
1443
aa2ee344 1444$(BLD)/tparam.$(O) : \
7bbaaedd 1445 $(SRC)/tparam.c \
5e13f9d3
JB
1446 $(CONFIG_H) \
1447 $(SRC)/lisp.h
7bbaaedd 1448
aa2ee344 1449$(BLD)/undo.$(O) : \
7bbaaedd 1450 $(SRC)/undo.c \
0c1b4ae2 1451 $(CONFIG_H) \
5e13f9d3 1452 $(SRC)/lisp.h \
7bbaaedd 1453 $(SRC)/buffer.h \
fd7a37d5
JB
1454 $(SRC)/commands.h \
1455 $(SRC)/dispextern.h \
1456 $(SRC)/w32gui.h \
1457 $(SRC)/window.h
7bbaaedd 1458
aa2ee344 1459$(BLD)/unexw32.$(O) : \
7bbaaedd 1460 $(SRC)/unexw32.c \
0c1b4ae2 1461 $(CONFIG_H) \
7bbaaedd
AI
1462 $(SRC)/w32heap.h
1463
aa2ee344 1464$(BLD)/vm-limit.$(O) : \
7bbaaedd 1465 $(SRC)/vm-limit.c \
0c1b4ae2 1466 $(CONFIG_H) \
5e13f9d3 1467 $(SRC)/lisp.h \
d51ffa0e 1468 $(SRC)/mem-limits.h
7bbaaedd 1469
aa2ee344 1470$(BLD)/window.$(O) : \
7bbaaedd 1471 $(SRC)/window.c \
0c1b4ae2 1472 $(CONFIG_H) \
fd7a37d5 1473 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1474 $(SRC)/lisp.h \
6218196f
JB
1475 $(SRC)/atimer.h \
1476 $(SRC)/blockinput.h \
7bbaaedd 1477 $(SRC)/buffer.h \
fd7a37d5 1478 $(SRC)/coding.h \
7bbaaedd 1479 $(SRC)/commands.h \
6218196f
JB
1480 $(SRC)/composite.h \
1481 $(SRC)/dispextern.h \
7bbaaedd 1482 $(SRC)/disptab.h \
6218196f
JB
1483 $(SRC)/frame.h \
1484 $(SRC)/indent.h \
1485 $(SRC)/intervals.h \
7bbaaedd 1486 $(SRC)/keyboard.h \
6218196f
JB
1487 $(SRC)/keymap.h \
1488 $(SRC)/systime.h \
1489 $(SRC)/termchar.h \
fd7a37d5 1490 $(SRC)/termhooks.h \
6218196f
JB
1491 $(SRC)/w32gui.h \
1492 $(SRC)/w32term.h \
1493 $(SRC)/window.h
7bbaaedd 1494
aa2ee344 1495$(BLD)/xdisp.$(O) : \
7bbaaedd 1496 $(SRC)/xdisp.c \
0c1b4ae2 1497 $(CONFIG_H) \
fd7a37d5
JB
1498 $(EMACS_ROOT)/nt/inc/unistd.h \
1499 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1500 $(SRC)/lisp.h \
8cb9dfbf 1501 $(SRC)/atimer.h \
cad6f96a 1502 $(SRC)/blockinput.h \
7bbaaedd 1503 $(SRC)/buffer.h \
6218196f 1504 $(SRC)/ccl.h \
dd6ab82f 1505 $(SRC)/character.h \
6218196f
JB
1506 $(SRC)/charset.h \
1507 $(SRC)/coding.h \
7bbaaedd 1508 $(SRC)/commands.h \
6218196f
JB
1509 $(SRC)/composite.h \
1510 $(SRC)/dispextern.h \
7bbaaedd 1511 $(SRC)/disptab.h \
223250a6 1512 $(SRC)/font.h \
6218196f
JB
1513 $(SRC)/fontset.h \
1514 $(SRC)/frame.h \
1515 $(SRC)/indent.h \
1516 $(SRC)/intervals.h \
1517 $(SRC)/keyboard.h \
57cb6dbe 1518 $(SRC)/keymap.h \
6218196f
JB
1519 $(SRC)/macros.h \
1520 $(SRC)/process.h \
1521 $(SRC)/region-cache.h \
8cb9dfbf 1522 $(SRC)/systime.h \
6218196f 1523 $(SRC)/termchar.h \
7bbaaedd 1524 $(SRC)/termhooks.h \
aa2ee344 1525 $(SRC)/w32gui.h \
a821edb8 1526 $(SRC)/w32term.h \
6218196f 1527 $(SRC)/window.h
7bbaaedd 1528
fd7a37d5 1529$(BLD)/xfaces.$(O) : \
6218196f 1530 $(SRC)/xfaces.c \
0c1b4ae2 1531 $(CONFIG_H) \
fd7a37d5 1532 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1533 $(SRC)/lisp.h \
6218196f
JB
1534 $(SRC)/atimer.h \
1535 $(SRC)/blockinput.h \
7bbaaedd 1536 $(SRC)/buffer.h \
fd7a37d5 1537 $(SRC)/ccl.h \
dd6ab82f 1538 $(SRC)/character.h \
6218196f 1539 $(SRC)/charset.h \
fd7a37d5 1540 $(SRC)/coding.h \
6218196f 1541 $(SRC)/composite.h \
7bbaaedd 1542 $(SRC)/dispextern.h \
223250a6 1543 $(SRC)/font.h \
6218196f 1544 $(SRC)/fontset.h \
7bbaaedd 1545 $(SRC)/frame.h \
7bbaaedd 1546 $(SRC)/intervals.h \
6218196f
JB
1547 $(SRC)/keyboard.h \
1548 $(SRC)/systime.h \
0254c6f7
JR
1549 $(SRC)/termchar.h \
1550 $(SRC)/termhooks.h \
6218196f
JB
1551 $(SRC)/w32gui.h \
1552 $(SRC)/w32term.h \
1553 $(SRC)/window.h
7bbaaedd 1554
fd7a37d5 1555$(BLD)/w32fns.$(O) : \
6218196f 1556 $(SRC)/w32fns.c \
0c1b4ae2 1557 $(CONFIG_H) \
fd7a37d5 1558 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1559 $(SRC)/lisp.h \
6218196f
JB
1560 $(SRC)/atimer.h \
1561 $(SRC)/blockinput.h \
7bbaaedd 1562 $(SRC)/buffer.h \
6218196f 1563 $(SRC)/ccl.h \
dd6ab82f 1564 $(SRC)/character.h \
7bbaaedd
AI
1565 $(SRC)/charset.h \
1566 $(SRC)/coding.h \
6218196f 1567 $(SRC)/composite.h \
7bbaaedd 1568 $(SRC)/dispextern.h \
7bbaaedd 1569 $(SRC)/epaths.h \
223250a6 1570 $(SRC)/font.h \
6218196f
JB
1571 $(SRC)/fontset.h \
1572 $(SRC)/frame.h \
1573 $(SRC)/intervals.h \
1574 $(SRC)/keyboard.h \
1575 $(SRC)/systime.h \
1576 $(SRC)/termhooks.h \
fd7a37d5 1577 $(SRC)/w32font.h \
6218196f 1578 $(SRC)/w32gui.h \
7bbaaedd 1579 $(SRC)/w32heap.h \
6218196f
JB
1580 $(SRC)/w32term.h \
1581 $(SRC)/window.h
7bbaaedd 1582
fd7a37d5 1583$(BLD)/w32menu.$(O) : \
6218196f 1584 $(SRC)/w32menu.c \
0c1b4ae2 1585 $(CONFIG_H) \
fd7a37d5 1586 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1587 $(SRC)/lisp.h \
6218196f 1588 $(SRC)/atimer.h \
7bbaaedd
AI
1589 $(SRC)/blockinput.h \
1590 $(SRC)/buffer.h \
dd6ab82f 1591 $(SRC)/character.h \
7bbaaedd 1592 $(SRC)/charset.h \
6218196f 1593 $(SRC)/coding.h \
df4e8455 1594 $(SRC)/composite.h \
6218196f
JB
1595 $(SRC)/dispextern.h \
1596 $(SRC)/frame.h \
1597 $(SRC)/keyboard.h \
1598 $(SRC)/keymap.h \
5e13f9d3 1599 $(SRC)/menu.h \
6218196f
JB
1600 $(SRC)/systime.h \
1601 $(SRC)/termhooks.h \
6218196f
JB
1602 $(SRC)/w32gui.h \
1603 $(SRC)/w32term.h \
1604 $(SRC)/window.h
7bbaaedd 1605
fd7a37d5 1606$(BLD)/w32term.$(O) : \
6218196f 1607 $(SRC)/w32term.c \
0c1b4ae2 1608 $(CONFIG_H) \
fd7a37d5
JB
1609 $(EMACS_ROOT)/nt/inc/unistd.h \
1610 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1611 $(SRC)/lisp.h \
6218196f 1612 $(SRC)/atimer.h \
7bbaaedd 1613 $(SRC)/blockinput.h \
6218196f
JB
1614 $(SRC)/buffer.h \
1615 $(SRC)/ccl.h \
dd6ab82f 1616 $(SRC)/character.h \
6218196f
JB
1617 $(SRC)/charset.h \
1618 $(SRC)/coding.h \
1619 $(SRC)/composite.h \
7bbaaedd 1620 $(SRC)/dispextern.h \
7bbaaedd 1621 $(SRC)/disptab.h \
223250a6 1622 $(SRC)/font.h \
6218196f
JB
1623 $(SRC)/fontset.h \
1624 $(SRC)/frame.h \
7bbaaedd 1625 $(SRC)/intervals.h \
6218196f
JB
1626 $(SRC)/keyboard.h \
1627 $(SRC)/keymap.h \
fd7a37d5 1628 $(SRC)/process.h \
6218196f
JB
1629 $(SRC)/systime.h \
1630 $(SRC)/systty.h \
1631 $(SRC)/termchar.h \
1632 $(SRC)/termhooks.h \
1633 $(SRC)/termopts.h \
fd7a37d5 1634 $(SRC)/w32font.h \
6218196f
JB
1635 $(SRC)/w32gui.h \
1636 $(SRC)/w32heap.h \
1637 $(SRC)/w32term.h \
1638 $(SRC)/window.h
7bbaaedd 1639
fd7a37d5 1640$(BLD)/w32select.$(O) : \
6218196f 1641 $(SRC)/w32select.c \
0c1b4ae2 1642 $(CONFIG_H) \
fd7a37d5 1643 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1644 $(SRC)/lisp.h \
6218196f
JB
1645 $(SRC)/atimer.h \
1646 $(SRC)/blockinput.h \
dd6ab82f 1647 $(SRC)/character.h \
6218196f
JB
1648 $(SRC)/charset.h \
1649 $(SRC)/coding.h \
1650 $(SRC)/composite.h \
6218196f
JB
1651 $(SRC)/keyboard.h \
1652 $(SRC)/systime.h \
6218196f 1653 $(SRC)/w32gui.h \
b6cc2ad0 1654 $(SRC)/w32heap.h \
6218196f 1655 $(SRC)/w32term.h
7bbaaedd 1656
fd7a37d5 1657$(BLD)/w32reg.$(O) : \
6218196f 1658 $(SRC)/w32reg.c \
0c1b4ae2 1659 $(CONFIG_H) \
fd7a37d5 1660 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1661 $(SRC)/lisp.h \
6218196f
JB
1662 $(SRC)/atimer.h \
1663 $(SRC)/blockinput.h \
1664 $(SRC)/systime.h \
7bbaaedd 1665 $(SRC)/w32gui.h \
6218196f 1666 $(SRC)/w32term.h
7bbaaedd 1667
fd7a37d5 1668$(BLD)/w32xfns.$(O) : \
6218196f 1669 $(SRC)/w32xfns.c \
0c1b4ae2 1670 $(CONFIG_H) \
fd7a37d5 1671 $(EMACS_ROOT)/nt/inc/sys/time.h \
5e13f9d3 1672 $(SRC)/lisp.h \
6218196f
JB
1673 $(SRC)/atimer.h \
1674 $(SRC)/blockinput.h \
1675 $(SRC)/charset.h \
fd7a37d5 1676 $(SRC)/coding.h \
df4e8455 1677 $(SRC)/composite.h \
fd7a37d5 1678 $(SRC)/dispextern.h \
6218196f
JB
1679 $(SRC)/fontset.h \
1680 $(SRC)/frame.h \
1681 $(SRC)/keyboard.h \
1682 $(SRC)/systime.h \
6218196f
JB
1683 $(SRC)/w32gui.h \
1684 $(SRC)/w32term.h
5ac50e96 1685
fd7a37d5 1686$(BLD)/w32font.$(O) : \
223250a6 1687 $(SRC)/w32font.c \
0c1b4ae2 1688 $(CONFIG_H) \
5e13f9d3 1689 $(SRC)/lisp.h \
fd7a37d5 1690 $(SRC)/ccl.h \
0c1b4ae2
JR
1691 $(SRC)/character.h \
1692 $(SRC)/charset.h \
df4e8455
JB
1693 $(SRC)/coding.h \
1694 $(SRC)/composite.h \
0c1b4ae2
JR
1695 $(SRC)/dispextern.h \
1696 $(SRC)/font.h \
1697 $(SRC)/fontset.h \
1698 $(SRC)/frame.h \
1699 $(SRC)/w32font.h \
1700 $(SRC)/w32gui.h \
1701 $(SRC)/w32term.h
1702
fd7a37d5 1703$(BLD)/w32uniscribe.$(O) : \
0c1b4ae2
JR
1704 $(SRC)/w32uniscribe.c \
1705 $(CONFIG_H) \
5e13f9d3 1706 $(SRC)/lisp.h \
fd7a37d5 1707 $(SRC)/ccl.h \
223250a6
JR
1708 $(SRC)/character.h \
1709 $(SRC)/charset.h \
091a66d2 1710 $(SRC)/composite.h \
223250a6
JR
1711 $(SRC)/dispextern.h \
1712 $(SRC)/font.h \
1713 $(SRC)/fontset.h \
1714 $(SRC)/frame.h \
c1ca4c24 1715 $(SRC)/w32font.h \
223250a6
JR
1716 $(SRC)/w32gui.h \
1717 $(SRC)/w32term.h
1718
5ac50e96
EZ
1719# Each object file depends on stamp_BLD, because in parallel builds we must
1720# make sure $(BLD) exists before starting compilations.
1721#
223250a6 1722$(OBJ0) $(OBJ1) $(WIN32OBJ) $(FONTOBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD