Include coding.h and termhooks.h.
[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,
76b6f707 3# 2008, 2009 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
AI
33
34EMACS = $(BLD)/emacs.exe
35TEMACS = $(BLD)/temacs.exe
36TEMACS_TMP = $(BLD)/temacs.bin
37TLIB0 = $(BLD)/temacs0.$(A)
38TLIB1 = $(BLD)/temacs1.$(A)
39TLIBW32 = $(BLD)/temacw32.$(A)
40TOBJ = $(BLD)/firstfile.$(O)
41TRES = $(BLD)/emacs.res
42TLASTLIB = $(BLD)/lastfile.$(A)
43
24af414e
EZ
44DOC = $(OBJDIR)/etc/DOC-X
45
526dc3b3
JR
46FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
47
7bbaaedd
AI
48#
49# Split up the objects into two sets so that we don't run out of
50# command line space when we link them into a library.
51#
52# Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
53# as the "main" object file when linking.
54#
55OBJ0 = $(BLD)/emacs.$(O)
56
ffe42183 57OBJ1 = $(BLD)/alloc.$(O) \
55fb4286
EZ
58 $(BLD)/atimer.$(O) \
59 $(BLD)/buffer.$(O) \
ffe42183
JR
60 $(BLD)/bytecode.$(O) \
61 $(BLD)/callint.$(O) \
62 $(BLD)/callproc.$(O) \
63 $(BLD)/casefiddle.$(O) \
64 $(BLD)/cm.$(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) \
ffe42183 100 $(BLD)/termcap.$(O) \
55fb4286
EZ
101 $(BLD)/tparam.$(O) \
102 $(BLD)/undo.$(O) \
ffe42183 103 $(BLD)/unexw32.$(O) \
55fb4286
EZ
104 $(BLD)/window.$(O) \
105 $(BLD)/xdisp.$(O) \
ffe42183
JR
106 $(BLD)/casetab.$(O) \
107 $(BLD)/floatfns.$(O) \
55fb4286 108 $(BLD)/frame.$(O) \
ffe42183
JR
109 $(BLD)/gmalloc.$(O) \
110 $(BLD)/intervals.$(O) \
111 $(BLD)/composite.$(O) \
55fb4286 112 $(BLD)/ralloc.$(O) \
ffe42183
JR
113 $(BLD)/textprop.$(O) \
114 $(BLD)/vm-limit.$(O) \
55fb4286 115 $(BLD)/region-cache.$(O) \
ffe42183
JR
116 $(BLD)/strftime.$(O) \
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
d87a9ab8
JD
181 echo $(OBJ0) > $(BLD)/buildobj.lst
182 echo $(OBJ1) >> $(BLD)/buildobj.lst
183 echo $(WIN32OBJ) >> $(BLD)/buildobj.lst
223250a6 184 echo $(FONTOBJ) >> $(BLD)/buildobj.lst
7bbaaedd
AI
185
186bootstrap: bootstrap-emacs
187
188#
189# Build a temacs with a sufficiently large PURESIZE to load the
190# Lisp files from loadup.el in source form.
191#
bb49fc13
EZ
192# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
193# this can break with GNU Make 3.81 and later if sh.exe is used.
4a31b11a 194bootstrap-temacs:
5ac50e96 195 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
7bbaaedd
AI
196
197#
d51ffa0e 198# Dump an Emacs executable named bootstrap-emacs containing the
7bbaaedd
AI
199# files from loadup.el in source form.
200#
201bootstrap-emacs: bootstrap-temacs
0533c860 202 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
7bbaaedd
AI
203 - mkdir "../bin"
204 $(CP) $(EMACS) ../bin
205
206#
207# Force recompile of files that depend on PURESIZE
208#
209bootstrap-clean:
210 - $(DEL) $(BLD)/alloc.$(O)
211 - $(DEL) $(BLD)/data.$(O)
212 - $(DEL) $(BLD)/intervals.$(O)
213 - $(DEL) $(BLD)/keyboard.$(O)
214 - $(DEL) $(BLD)/keymap.$(O)
215
216#
217# The resource file. NT 3.10 requires the use of cvtres; even though
218# it is not necessary on later versions, it is still ok to use it.
219#
f3d5bd22 220$(TRES): ../nt/emacs.rc stamp_BLD
8b57a7fd 221 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
7bbaaedd
AI
222
223#
d51ffa0e 224# Build the library. Split up the build into two phases...otherwise we
7bbaaedd
AI
225# run out of command line space.
226#
227$(TLIB0): $(OBJ0)
228 - $(DEL) $@
229 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
230$(TLIB1): $(OBJ1)
231 - $(DEL) $@
232 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
223250a6 233$(TLIBW32): $(WIN32OBJ) $(FONTOBJ)
7bbaaedd
AI
234 - $(DEL) $@
235 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
236
237#
238# Place lastfile.$(O) in its own library so that it can be loaded after
239# the source libraries but before any system libraries. Doing so defines
240# the end of Emacs' data section portably across compilers and systems.
241#
242$(TLASTLIB): $(BLD)/lastfile.$(O)
243 - $(DEL) $@
244 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
245
246#
247# Assuming INSTALL_DIR is defined, build and install emacs in it.
248#
249install: $(ALL)
250 - mkdir "$(INSTALL_DIR)/bin"
251 $(CP) $(EMACS) $(INSTALL_DIR)/bin
252
253#
254# Maintenance
d51ffa0e 255#
b5d2b4ab
EZ
256# We used to delete *~, s/*~, m/*~ here, but that might inadvertently
257# remove precious files if it happens to match their short 8+3 aliases.
7bbaaedd 258clean:
b5d2b4ab 259 - $(DEL) "s/*.h~" "m/*.h~"
5cdd7eef 260 - $(DEL) $(COMPILER_TEMP_FILES)
7bbaaedd 261 - $(DEL_TREE) $(OBJDIR)
435c23ee 262 - $(DEL) stamp_BLD
7bbaaedd 263
c2378898
JR
264distclean: cleanall
265 - $(DEL) config.h epaths.h Makefile
266
267maintainer-clean: distclean
268 - $(DEL) TAGS
7bbaaedd
AI
269
270cleanall: clean
271 - $(DEL_TREE) obj
272 - $(DEL_TREE) obj-spd
273 - $(DEL_TREE) oo
274 - $(DEL_TREE) oo-spd
275
276### DEPENDENCIES ###
277
0c1b4ae2
JR
278EMACS_ROOT = ..
279SRC = .
280CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
281 $(EMACS_ROOT)/src/m/intel386.h \
fd7a37d5
JB
282 $(EMACS_ROOT)/src/config.h \
283 $(EMACS_ROOT)/nt/inc/sys/stat.h
7bbaaedd 284
aa2ee344 285$(BLD)/alloc.$(O) : \
7bbaaedd 286 $(SRC)/alloc.c \
0c1b4ae2 287 $(CONFIG_H) \
fd7a37d5
JB
288 $(EMACS_ROOT)/nt/inc/unistd.h \
289 $(EMACS_ROOT)/nt/inc/sys/time.h \
290 $(SRC)/atimer.h \
6218196f
JB
291 $(SRC)/blockinput.h \
292 $(SRC)/buffer.h \
dd6ab82f 293 $(SRC)/character.h \
fd7a37d5 294 $(SRC)/coding.h \
6218196f 295 $(SRC)/composite.h \
7bbaaedd 296 $(SRC)/dispextern.h \
6218196f 297 $(SRC)/frame.h \
7bbaaedd 298 $(SRC)/intervals.h \
6218196f
JB
299 $(SRC)/keyboard.h \
300 $(SRC)/process.h \
7bbaaedd 301 $(SRC)/puresize.h \
6218196f 302 $(SRC)/syssignal.h \
fd7a37d5
JB
303 $(SRC)/systime.h \
304 $(SRC)/termhooks.h \
305 $(SRC)/w32.h \
6218196f
JB
306 $(SRC)/w32gui.h \
307 $(SRC)/window.h
7bbaaedd 308
aa2ee344 309$(BLD)/atimer.$(O) : \
7bbaaedd 310 $(SRC)/atimer.c \
0c1b4ae2 311 $(CONFIG_H) \
fd7a37d5
JB
312 $(EMACS_ROOT)/nt/inc/unistd.h \
313 $(EMACS_ROOT)/nt/inc/sys/time.h \
7bbaaedd 314 $(SRC)/atimer.h \
6218196f 315 $(SRC)/blockinput.h \
7bbaaedd 316 $(SRC)/syssignal.h \
6218196f 317 $(SRC)/systime.h
7bbaaedd 318
aa2ee344 319$(BLD)/buffer.$(O) : \
7bbaaedd 320 $(SRC)/buffer.c \
0c1b4ae2 321 $(CONFIG_H) \
fd7a37d5 322 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 323 $(EMACS_ROOT)/nt/inc/sys/param.h \
fd7a37d5
JB
324 $(EMACS_ROOT)/nt/inc/sys/time.h \
325 $(SRC)/atimer.h \
6218196f
JB
326 $(SRC)/blockinput.h \
327 $(SRC)/buffer.h \
fd7a37d5
JB
328 $(SRC)/character.h \
329 $(SRC)/coding.h \
6218196f 330 $(SRC)/commands.h \
7bbaaedd 331 $(SRC)/composite.h \
6218196f 332 $(SRC)/dispextern.h \
7bbaaedd 333 $(SRC)/frame.h \
7bbaaedd 334 $(SRC)/indent.h \
6218196f
JB
335 $(SRC)/intervals.h \
336 $(SRC)/keyboard.h \
337 $(SRC)/keymap.h \
338 $(SRC)/region-cache.h \
fd7a37d5 339 $(SRC)/systime.h \
6218196f
JB
340 $(SRC)/w32gui.h \
341 $(SRC)/window.h
7bbaaedd 342
aa2ee344 343$(BLD)/bytecode.$(O) : \
7bbaaedd 344 $(SRC)/bytecode.c \
0c1b4ae2 345 $(CONFIG_H) \
7bbaaedd 346 $(SRC)/buffer.h \
fd7a37d5
JB
347 $(SRC)/character.h \
348 $(SRC)/dispextern.h \
a63cf46f 349 $(SRC)/syntax.h \
fd7a37d5 350 $(SRC)/w32gui.h \
a63cf46f 351 $(SRC)/window.h
7bbaaedd 352
aa2ee344 353$(BLD)/callint.$(O) : \
7bbaaedd 354 $(SRC)/callint.c \
0c1b4ae2 355 $(CONFIG_H) \
fd7a37d5 356 $(EMACS_ROOT)/nt/inc/sys/time.h \
7bbaaedd 357 $(SRC)/buffer.h \
fd7a37d5 358 $(SRC)/coding.h \
7bbaaedd 359 $(SRC)/commands.h \
6218196f 360 $(SRC)/dispextern.h \
7bbaaedd 361 $(SRC)/keyboard.h \
6218196f 362 $(SRC)/keymap.h \
fd7a37d5 363 $(SRC)/systime.h \
6218196f 364 $(SRC)/w32gui.h \
44eec525 365 $(SRC)/window.h
7bbaaedd 366
aa2ee344 367$(BLD)/callproc.$(O) : \
7bbaaedd 368 $(SRC)/callproc.c \
0c1b4ae2 369 $(CONFIG_H) \
fd7a37d5 370 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 371 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5
JB
372 $(EMACS_ROOT)/nt/inc/sys/time.h \
373 $(SRC)/atimer.h \
374 $(SRC)/blockinput.h \
7bbaaedd 375 $(SRC)/buffer.h \
6218196f 376 $(SRC)/ccl.h \
dd6ab82f 377 $(SRC)/character.h \
6218196f
JB
378 $(SRC)/coding.h \
379 $(SRC)/commands.h \
380 $(SRC)/composite.h \
fd7a37d5 381 $(SRC)/dispextern.h \
6218196f 382 $(SRC)/epaths.h \
fd7a37d5 383 $(SRC)/frame.h \
7bbaaedd
AI
384 $(SRC)/process.h \
385 $(SRC)/syssignal.h \
fd7a37d5 386 $(SRC)/systime.h \
6218196f 387 $(SRC)/systty.h \
0254c6f7 388 $(SRC)/termhooks.h \
fd7a37d5
JB
389 $(SRC)/w32.h \
390 $(SRC)/w32gui.h
7bbaaedd 391
aa2ee344 392$(BLD)/casefiddle.$(O) : \
7bbaaedd 393 $(SRC)/casefiddle.c \
0c1b4ae2 394 $(CONFIG_H) \
7bbaaedd 395 $(SRC)/buffer.h \
dd6ab82f 396 $(SRC)/character.h \
7bbaaedd 397 $(SRC)/commands.h \
6218196f
JB
398 $(SRC)/composite.h \
399 $(SRC)/keymap.h \
7bbaaedd 400 $(SRC)/syntax.h
7bbaaedd 401
aa2ee344 402$(BLD)/casetab.$(O) : \
7bbaaedd 403 $(SRC)/casetab.c \
0c1b4ae2 404 $(CONFIG_H) \
6218196f 405 $(SRC)/buffer.h \
fd7a37d5 406 $(SRC)/character.h
6218196f
JB
407
408$(BLD)/category.$(O) : \
409 $(SRC)/category.c \
0c1b4ae2 410 $(CONFIG_H) \
6218196f
JB
411 $(SRC)/buffer.h \
412 $(SRC)/category.h \
dd6ab82f 413 $(SRC)/character.h \
6218196f
JB
414 $(SRC)/charset.h \
415 $(SRC)/keymap.h
416
417$(BLD)/ccl.$(O) : \
418 $(SRC)/ccl.c \
0c1b4ae2 419 $(CONFIG_H) \
6218196f 420 $(SRC)/ccl.h \
dd6ab82f 421 $(SRC)/character.h \
6218196f
JB
422 $(SRC)/charset.h \
423 $(SRC)/coding.h
424
dd6ab82f
MB
425$(BLD)/character.$(O) : \
426 $(SRC)/character.c \
0c1b4ae2 427 $(CONFIG_H) \
dd6ab82f
MB
428 $(SRC)/buffer.h \
429 $(SRC)/character.h \
430 $(SRC)/charset.h \
dd6ab82f
MB
431 $(SRC)/composite.h \
432 $(SRC)/disptab.h
433
6218196f
JB
434$(BLD)/charset.$(O) : \
435 $(SRC)/charset.c \
0c1b4ae2 436 $(CONFIG_H) \
fd7a37d5 437 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 438 $(SRC)/buffer.h \
dd6ab82f 439 $(SRC)/character.h \
6218196f
JB
440 $(SRC)/charset.h \
441 $(SRC)/coding.h \
6218196f 442 $(SRC)/disptab.h
7bbaaedd 443
dd6ab82f
MB
444$(BLD)/chartab.$(O) : \
445 $(SRC)/chartab.c \
0c1b4ae2 446 $(CONFIG_H) \
fd7a37d5
JB
447 $(SRC)/ccl.h \
448 $(SRC)/character.h \
449 $(SRC)/charset.h
dd6ab82f 450
aa2ee344 451$(BLD)/cm.$(O) : \
7bbaaedd 452 $(SRC)/cm.c \
0c1b4ae2 453 $(CONFIG_H) \
7bbaaedd 454 $(SRC)/cm.h \
fd7a37d5
JB
455 $(SRC)/dispextern.h \
456 $(SRC)/frame.h \
457 $(SRC)/termchar.h \
458 $(SRC)/termhooks.h \
459 $(SRC)/w32gui.h
7bbaaedd 460
aa2ee344 461$(BLD)/cmds.$(O) : \
7bbaaedd 462 $(SRC)/cmds.c \
0c1b4ae2 463 $(CONFIG_H) \
fd7a37d5 464 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f 465 $(SRC)/buffer.h \
dd6ab82f 466 $(SRC)/character.h \
fd7a37d5 467 $(SRC)/coding.h \
7bbaaedd 468 $(SRC)/commands.h \
6218196f
JB
469 $(SRC)/dispextern.h \
470 $(SRC)/keyboard.h \
471 $(SRC)/keymap.h \
472 $(SRC)/syntax.h \
fd7a37d5 473 $(SRC)/systime.h \
6218196f
JB
474 $(SRC)/w32gui.h \
475 $(SRC)/window.h
476
477$(BLD)/coding.$(O) : \
478 $(SRC)/coding.c \
0c1b4ae2 479 $(CONFIG_H) \
7bbaaedd 480 $(SRC)/buffer.h \
6218196f 481 $(SRC)/ccl.h \
dd6ab82f 482 $(SRC)/character.h \
6218196f
JB
483 $(SRC)/charset.h \
484 $(SRC)/coding.h \
485 $(SRC)/composite.h \
486 $(SRC)/dispextern.h \
0254c6f7
JR
487 $(SRC)/frame.h \
488 $(SRC)/termhooks.h \
6218196f
JB
489 $(SRC)/w32gui.h \
490 $(SRC)/window.h
7bbaaedd 491
aa2ee344 492$(BLD)/composite.$(O) : \
7bbaaedd 493 $(SRC)/composite.c \
0c1b4ae2 494 $(CONFIG_H) \
7bbaaedd 495 $(SRC)/buffer.h \
fd7a37d5 496 $(SRC)/ccl.h \
dd6ab82f 497 $(SRC)/character.h \
7bbaaedd 498 $(SRC)/composite.h \
6218196f 499 $(SRC)/dispextern.h \
fd7a37d5
JB
500 $(SRC)/font.h \
501 $(SRC)/frame.h \
6218196f 502 $(SRC)/intervals.h \
fd7a37d5
JB
503 $(SRC)/w32gui.h \
504 $(SRC)/window.h
7bbaaedd 505
aa2ee344 506$(BLD)/data.$(O) : \
7bbaaedd 507 $(SRC)/data.c \
0c1b4ae2 508 $(CONFIG_H) \
fd7a37d5 509 $(EMACS_ROOT)/nt/inc/sys/time.h \
7bbaaedd 510 $(SRC)/buffer.h \
dd6ab82f 511 $(SRC)/character.h \
fd7a37d5
JB
512 $(SRC)/coding.h \
513 $(SRC)/dispextern.h \
6218196f
JB
514 $(SRC)/frame.h \
515 $(SRC)/keyboard.h \
516 $(SRC)/puresize.h \
0254c6f7 517 $(SRC)/syssignal.h \
fd7a37d5
JB
518 $(SRC)/systime.h \
519 $(SRC)/termhooks.h \
520 $(SRC)/w32gui.h
7bbaaedd 521
aa2ee344 522$(BLD)/dired.$(O) : \
7bbaaedd 523 $(SRC)/dired.c \
0c1b4ae2 524 $(CONFIG_H) \
fd7a37d5
JB
525 $(EMACS_ROOT)/nt/inc/grp.h \
526 $(EMACS_ROOT)/nt/inc/pwd.h \
527 $(EMACS_ROOT)/nt/inc/unistd.h \
528 $(EMACS_ROOT)/nt/inc/sys/dir.h \
529 $(EMACS_ROOT)/nt/inc/sys/time.h \
530 $(SRC)/atimer.h \
531 $(SRC)/blockinput.h \
7bbaaedd 532 $(SRC)/buffer.h \
dd6ab82f 533 $(SRC)/character.h \
6218196f
JB
534 $(SRC)/charset.h \
535 $(SRC)/coding.h \
7bbaaedd 536 $(SRC)/commands.h \
6218196f
JB
537 $(SRC)/ndir.h \
538 $(SRC)/regex.h \
539 $(SRC)/systime.h
7bbaaedd 540
aa2ee344 541$(BLD)/dispnew.$(O) : \
7bbaaedd 542 $(SRC)/dispnew.c \
0c1b4ae2 543 $(CONFIG_H) \
fd7a37d5
JB
544 $(EMACS_ROOT)/nt/inc/unistd.h \
545 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
546 $(SRC)/atimer.h \
547 $(SRC)/blockinput.h \
7bbaaedd 548 $(SRC)/buffer.h \
dd6ab82f 549 $(SRC)/character.h \
6218196f 550 $(SRC)/cm.h \
fd7a37d5 551 $(SRC)/coding.h \
7bbaaedd 552 $(SRC)/commands.h \
6218196f
JB
553 $(SRC)/composite.h \
554 $(SRC)/dispextern.h \
7bbaaedd 555 $(SRC)/disptab.h \
6218196f 556 $(SRC)/frame.h \
7bbaaedd 557 $(SRC)/indent.h \
7bbaaedd 558 $(SRC)/intervals.h \
6218196f
JB
559 $(SRC)/keyboard.h \
560 $(SRC)/process.h \
561 $(SRC)/syssignal.h \
562 $(SRC)/systime.h \
563 $(SRC)/termchar.h \
564 $(SRC)/termhooks.h \
565 $(SRC)/termopts.h \
aa2ee344 566 $(SRC)/w32gui.h \
6218196f
JB
567 $(SRC)/w32term.h \
568 $(SRC)/window.h
7bbaaedd 569
aa2ee344 570$(BLD)/doc.$(O) : \
7bbaaedd 571 $(SRC)/doc.c \
0c1b4ae2 572 $(CONFIG_H) \
fd7a37d5 573 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 574 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 575 $(EMACS_ROOT)/nt/inc/sys/time.h \
7bbaaedd 576 $(SRC)/buffer.h \
dd6ab82f 577 $(SRC)/character.h \
fd7a37d5 578 $(SRC)/coding.h \
6218196f 579 $(SRC)/keyboard.h \
fd7a37d5
JB
580 $(SRC)/keymap.h \
581 $(SRC)/systime.h
7bbaaedd 582
aa2ee344 583$(BLD)/doprnt.$(O) : \
7bbaaedd 584 $(SRC)/doprnt.c \
0c1b4ae2 585 $(CONFIG_H) \
fd7a37d5
JB
586 $(EMACS_ROOT)/nt/inc/unistd.h \
587 $(SRC)/character.h
7bbaaedd 588
aa2ee344 589$(BLD)/editfns.$(O) : \
7bbaaedd 590 $(SRC)/editfns.c \
0c1b4ae2 591 $(CONFIG_H) \
7bbaaedd 592 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
593 $(EMACS_ROOT)/nt/inc/unistd.h \
594 $(EMACS_ROOT)/nt/inc/sys/time.h \
595 $(SRC)/atimer.h \
596 $(SRC)/blockinput.h \
6218196f 597 $(SRC)/buffer.h \
dd6ab82f 598 $(SRC)/character.h \
6218196f
JB
599 $(SRC)/coding.h \
600 $(SRC)/composite.h \
7bbaaedd 601 $(SRC)/dispextern.h \
6218196f 602 $(SRC)/frame.h \
7bbaaedd 603 $(SRC)/intervals.h \
6218196f 604 $(SRC)/systime.h \
6218196f
JB
605 $(SRC)/w32gui.h \
606 $(SRC)/window.h
7bbaaedd 607
aa2ee344 608$(BLD)/emacs.$(O) : \
7bbaaedd 609 $(SRC)/emacs.c \
0c1b4ae2 610 $(CONFIG_H) \
fd7a37d5 611 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 612 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 613 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
614 $(SRC)/atimer.h \
615 $(SRC)/blockinput.h \
616 $(SRC)/buffer.h \
fd7a37d5 617 $(SRC)/coding.h \
7bbaaedd 618 $(SRC)/commands.h \
6218196f 619 $(SRC)/composite.h \
7bbaaedd 620 $(SRC)/dispextern.h \
fd7a37d5 621 $(SRC)/frame.h \
7bbaaedd 622 $(SRC)/intervals.h \
6218196f
JB
623 $(SRC)/keyboard.h \
624 $(SRC)/keymap.h \
625 $(SRC)/process.h \
7bbaaedd 626 $(SRC)/syssignal.h \
6218196f
JB
627 $(SRC)/systime.h \
628 $(SRC)/systty.h \
629 $(SRC)/termhooks.h \
fd7a37d5 630 $(SRC)/w32.h \
a63cf46f 631 $(SRC)/w32gui.h \
b6cc2ad0 632 $(SRC)/w32heap.h \
a63cf46f 633 $(SRC)/window.h
7bbaaedd 634
aa2ee344 635$(BLD)/eval.$(O) : \
7bbaaedd 636 $(SRC)/eval.c \
0c1b4ae2 637 $(CONFIG_H) \
fd7a37d5 638 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f 639 $(SRC)/atimer.h \
7bbaaedd 640 $(SRC)/blockinput.h \
fd7a37d5 641 $(SRC)/coding.h \
7bbaaedd 642 $(SRC)/commands.h \
6218196f
JB
643 $(SRC)/dispextern.h \
644 $(SRC)/keyboard.h \
645 $(SRC)/systime.h \
6218196f 646 $(SRC)/w32gui.h
7bbaaedd 647
aa2ee344 648$(BLD)/fileio.$(O) : \
7bbaaedd 649 $(SRC)/fileio.c \
0c1b4ae2 650 $(CONFIG_H) \
7bbaaedd 651 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
652 $(EMACS_ROOT)/nt/inc/unistd.h \
653 $(EMACS_ROOT)/nt/inc/sys/time.h \
654 $(SRC)/atimer.h \
655 $(SRC)/blockinput.h \
6218196f 656 $(SRC)/buffer.h \
dd6ab82f 657 $(SRC)/character.h \
6218196f
JB
658 $(SRC)/coding.h \
659 $(SRC)/commands.h \
660 $(SRC)/composite.h \
7bbaaedd 661 $(SRC)/dispextern.h \
fd7a37d5 662 $(SRC)/frame.h \
7bbaaedd 663 $(SRC)/intervals.h \
6218196f 664 $(SRC)/systime.h \
6218196f
JB
665 $(SRC)/w32gui.h \
666 $(SRC)/window.h
7bbaaedd 667
aa2ee344 668$(BLD)/filelock.$(O) : \
7bbaaedd 669 $(SRC)/filelock.c \
0c1b4ae2 670 $(CONFIG_H) \
7bbaaedd 671 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5 672 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 673 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5 674 $(EMACS_ROOT)/nt/inc/sys/time.h \
7bbaaedd 675 $(SRC)/buffer.h \
dd6ab82f 676 $(SRC)/character.h \
6218196f
JB
677 $(SRC)/coding.h \
678 $(SRC)/systime.h
7bbaaedd 679
aa2ee344 680$(BLD)/filemode.$(O) : \
7bbaaedd 681 $(SRC)/filemode.c \
0c1b4ae2 682 $(CONFIG_H)
7bbaaedd 683
aa2ee344 684$(BLD)/firstfile.$(O) : \
7bbaaedd 685 $(SRC)/firstfile.c \
0c1b4ae2 686 $(CONFIG_H)
7bbaaedd 687
aa2ee344 688$(BLD)/floatfns.$(O) : \
7bbaaedd 689 $(SRC)/floatfns.c \
0c1b4ae2 690 $(CONFIG_H) \
7bbaaedd
AI
691 $(SRC)/syssignal.h
692
aa2ee344 693$(BLD)/fns.$(O) : \
7bbaaedd 694 $(SRC)/fns.c \
0c1b4ae2 695 $(CONFIG_H) \
83b41e19
EZ
696 $(EMACS_ROOT)/nt/inc/langinfo.h \
697 $(EMACS_ROOT)/nt/inc/nl_types.h \
fd7a37d5
JB
698 $(EMACS_ROOT)/nt/inc/unistd.h \
699 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
700 $(SRC)/atimer.h \
701 $(SRC)/blockinput.h \
7bbaaedd 702 $(SRC)/buffer.h \
dd6ab82f 703 $(SRC)/character.h \
6218196f
JB
704 $(SRC)/coding.h \
705 $(SRC)/commands.h \
706 $(SRC)/composite.h \
707 $(SRC)/dispextern.h \
708 $(SRC)/frame.h \
709 $(SRC)/intervals.h \
7bbaaedd 710 $(SRC)/keyboard.h \
6218196f
JB
711 $(SRC)/keymap.h \
712 $(SRC)/md5.h \
713 $(SRC)/systime.h \
6218196f
JB
714 $(SRC)/w32gui.h \
715 $(SRC)/window.h
716
223250a6
JR
717$(BLD)/font.$(O) : \
718 $(SRC)/font.c \
0c1b4ae2 719 $(CONFIG_H) \
fd7a37d5 720 $(SRC)/buffer.h \
223250a6
JR
721 $(SRC)/ccl.h \
722 $(SRC)/character.h \
723 $(SRC)/charset.h \
fd7a37d5
JB
724 $(SRC)/composite.h \
725 $(SRC)/dispextern.h \
726 $(SRC)/font.h \
727 $(SRC)/fontset.h \
728 $(SRC)/frame.h \
729 $(SRC)/w32gui.h \
730 $(SRC)/w32term.h \
731 $(SRC)/window.h
223250a6 732
6218196f
JB
733$(BLD)/fontset.$(O) : \
734 $(SRC)/fontset.c \
0c1b4ae2 735 $(CONFIG_H) \
fd7a37d5
JB
736 $(EMACS_ROOT)/nt/inc/sys/time.h \
737 $(SRC)/atimer.h \
738 $(SRC)/blockinput.h \
6218196f
JB
739 $(SRC)/buffer.h \
740 $(SRC)/ccl.h \
dd6ab82f 741 $(SRC)/character.h \
6218196f 742 $(SRC)/charset.h \
fd7a37d5
JB
743 $(SRC)/coding.h \
744 $(SRC)/composite.h \
7bbaaedd 745 $(SRC)/dispextern.h \
223250a6 746 $(SRC)/font.h \
6218196f
JB
747 $(SRC)/fontset.h \
748 $(SRC)/frame.h \
fd7a37d5 749 $(SRC)/intervals.h \
6218196f 750 $(SRC)/keyboard.h \
fd7a37d5 751 $(SRC)/systime.h \
0254c6f7 752 $(SRC)/termhooks.h \
aa2ee344 753 $(SRC)/w32gui.h \
fd7a37d5 754 $(SRC)/w32term.h \
6218196f 755 $(SRC)/window.h
7bbaaedd 756
aa2ee344 757$(BLD)/frame.$(O) : \
7bbaaedd 758 $(SRC)/frame.c \
0c1b4ae2 759 $(CONFIG_H) \
fd7a37d5 760 $(EMACS_ROOT)/nt/inc/sys/time.h \
0c126b96
JB
761 $(SRC)/atimer.h \
762 $(SRC)/blockinput.h \
7bbaaedd 763 $(SRC)/buffer.h \
fd7a37d5 764 $(SRC)/ccl.h \
dd6ab82f 765 $(SRC)/character.h \
fd7a37d5 766 $(SRC)/coding.h \
7bbaaedd 767 $(SRC)/commands.h \
6218196f 768 $(SRC)/dispextern.h \
fd7a37d5 769 $(SRC)/font.h \
6218196f
JB
770 $(SRC)/fontset.h \
771 $(SRC)/frame.h \
772 $(SRC)/keyboard.h \
0c126b96 773 $(SRC)/systime.h \
0254c6f7 774 $(SRC)/termchar.h \
6218196f 775 $(SRC)/termhooks.h \
6218196f
JB
776 $(SRC)/w32gui.h \
777 $(SRC)/w32term.h \
778 $(SRC)/window.h
7bbaaedd 779
eee30217
JB
780$(BLD)/fringe.$(O) : \
781 $(SRC)/fringe.c \
0c1b4ae2 782 $(CONFIG_H) \
fd7a37d5 783 $(EMACS_ROOT)/nt/inc/sys/time.h \
eee30217
JB
784 $(SRC)/atimer.h \
785 $(SRC)/blockinput.h \
786 $(SRC)/buffer.h \
787 $(SRC)/dispextern.h \
788 $(SRC)/frame.h \
789 $(SRC)/systime.h \
fd7a37d5 790 $(SRC)/termhooks.h \
eee30217
JB
791 $(SRC)/w32gui.h \
792 $(SRC)/window.h
793
aa2ee344 794$(BLD)/gmalloc.$(O) : \
7bbaaedd 795 $(SRC)/gmalloc.c \
0c1b4ae2 796 $(CONFIG_H) \
fd7a37d5 797 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 798 $(SRC)/getpagesize.h
7bbaaedd 799
fd7a37d5 800$(BLD)/image.$(O) : \
25abe3d4 801 $(SRC)/image.c \
0c1b4ae2 802 $(CONFIG_H) \
fd7a37d5
JB
803 $(EMACS_ROOT)/nt/inc/unistd.h \
804 $(EMACS_ROOT)/nt/inc/sys/time.h \
25abe3d4
KS
805 $(SRC)/atimer.h \
806 $(SRC)/blockinput.h \
fd7a37d5
JB
807 $(SRC)/ccl.h \
808 $(SRC)/character.h \
809 $(SRC)/coding.h \
25abe3d4
KS
810 $(SRC)/dispextern.h \
811 $(SRC)/epaths.h \
fd7a37d5 812 $(SRC)/font.h \
25abe3d4
KS
813 $(SRC)/frame.h \
814 $(SRC)/systime.h \
815 $(SRC)/termhooks.h \
25abe3d4 816 $(SRC)/w32gui.h \
25abe3d4
KS
817 $(SRC)/w32term.h \
818 $(SRC)/window.h
819
aa2ee344 820$(BLD)/indent.$(O) : \
7bbaaedd 821 $(SRC)/indent.c \
0c1b4ae2 822 $(CONFIG_H) \
fd7a37d5 823 $(EMACS_ROOT)/nt/inc/sys/time.h \
7bbaaedd 824 $(SRC)/buffer.h \
6218196f 825 $(SRC)/category.h \
dd6ab82f 826 $(SRC)/character.h \
fd7a37d5 827 $(SRC)/coding.h \
6218196f
JB
828 $(SRC)/composite.h \
829 $(SRC)/dispextern.h \
830 $(SRC)/disptab.h \
7bbaaedd 831 $(SRC)/frame.h \
6218196f
JB
832 $(SRC)/indent.h \
833 $(SRC)/intervals.h \
834 $(SRC)/keyboard.h \
835 $(SRC)/region-cache.h \
fd7a37d5 836 $(SRC)/systime.h \
7bbaaedd
AI
837 $(SRC)/termchar.h \
838 $(SRC)/termopts.h \
aa2ee344 839 $(SRC)/w32gui.h \
6218196f 840 $(SRC)/window.h
7bbaaedd 841
aa2ee344 842$(BLD)/insdel.$(O) : \
7bbaaedd 843 $(SRC)/insdel.c \
0c1b4ae2 844 $(CONFIG_H) \
fd7a37d5 845 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
846 $(SRC)/atimer.h \
847 $(SRC)/blockinput.h \
848 $(SRC)/buffer.h \
dd6ab82f 849 $(SRC)/character.h \
6218196f 850 $(SRC)/composite.h \
7bbaaedd
AI
851 $(SRC)/dispextern.h \
852 $(SRC)/intervals.h \
6218196f
JB
853 $(SRC)/region-cache.h \
854 $(SRC)/systime.h \
6218196f
JB
855 $(SRC)/w32gui.h \
856 $(SRC)/window.h
7bbaaedd 857
aa2ee344 858$(BLD)/intervals.$(O) : \
7bbaaedd 859 $(SRC)/intervals.c \
0c1b4ae2 860 $(CONFIG_H) \
fd7a37d5 861 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f 862 $(SRC)/buffer.h \
fd7a37d5 863 $(SRC)/coding.h \
6218196f 864 $(SRC)/composite.h \
7bbaaedd
AI
865 $(SRC)/dispextern.h \
866 $(SRC)/intervals.h \
7bbaaedd 867 $(SRC)/keyboard.h \
6218196f
JB
868 $(SRC)/keymap.h \
869 $(SRC)/puresize.h \
fd7a37d5 870 $(SRC)/systime.h \
6218196f 871 $(SRC)/w32gui.h
7bbaaedd 872
aa2ee344 873$(BLD)/keyboard.$(O) : \
7bbaaedd 874 $(SRC)/keyboard.c \
0c1b4ae2 875 $(CONFIG_H) \
fd7a37d5 876 $(EMACS_ROOT)/nt/inc/unistd.h \
6218196f 877 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
fd7a37d5 878 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
879 $(SRC)/atimer.h \
880 $(SRC)/blockinput.h \
7bbaaedd 881 $(SRC)/buffer.h \
dd6ab82f 882 $(SRC)/character.h \
fd7a37d5 883 $(SRC)/coding.h \
6218196f
JB
884 $(SRC)/commands.h \
885 $(SRC)/composite.h \
7bbaaedd 886 $(SRC)/dispextern.h \
6218196f
JB
887 $(SRC)/disptab.h \
888 $(SRC)/frame.h \
7bbaaedd 889 $(SRC)/intervals.h \
6218196f
JB
890 $(SRC)/keyboard.h \
891 $(SRC)/keymap.h \
892 $(SRC)/macros.h \
893 $(SRC)/puresize.h \
894 $(SRC)/syntax.h \
7bbaaedd 895 $(SRC)/syssignal.h \
6218196f 896 $(SRC)/systime.h \
6218196f
JB
897 $(SRC)/termchar.h \
898 $(SRC)/termhooks.h \
899 $(SRC)/termopts.h \
aa2ee344 900 $(SRC)/w32gui.h \
6218196f
JB
901 $(SRC)/w32term.h \
902 $(SRC)/window.h
7bbaaedd 903
aa2ee344 904$(BLD)/keymap.$(O) : \
7bbaaedd 905 $(SRC)/keymap.c \
0c1b4ae2 906 $(CONFIG_H) \
fd7a37d5 907 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
908 $(SRC)/atimer.h \
909 $(SRC)/blockinput.h \
7bbaaedd 910 $(SRC)/buffer.h \
dd6ab82f 911 $(SRC)/character.h \
6218196f 912 $(SRC)/charset.h \
fd7a37d5 913 $(SRC)/coding.h \
6218196f
JB
914 $(SRC)/commands.h \
915 $(SRC)/composite.h \
916 $(SRC)/dispextern.h \
fd7a37d5 917 $(SRC)/frame.h \
6218196f 918 $(SRC)/intervals.h \
7bbaaedd 919 $(SRC)/keyboard.h \
6218196f
JB
920 $(SRC)/keymap.h \
921 $(SRC)/puresize.h \
922 $(SRC)/systime.h \
7bbaaedd 923 $(SRC)/termhooks.h \
fd7a37d5
JB
924 $(SRC)/w32gui.h \
925 $(SRC)/window.h
7bbaaedd 926
aa2ee344 927$(BLD)/lastfile.$(O) : \
7bbaaedd 928 $(SRC)/lastfile.c \
0c1b4ae2 929 $(CONFIG_H)
7bbaaedd 930
aa2ee344 931$(BLD)/lread.$(O) : \
7bbaaedd 932 $(SRC)/lread.c \
0c1b4ae2 933 $(CONFIG_H) \
fd7a37d5 934 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd 935 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5
JB
936 $(EMACS_ROOT)/nt/inc/sys/time.h \
937 $(SRC)/atimer.h \
0254c6f7 938 $(SRC)/blockinput.h \
6218196f 939 $(SRC)/buffer.h \
dd6ab82f 940 $(SRC)/character.h \
6218196f
JB
941 $(SRC)/charset.h \
942 $(SRC)/coding.h \
7bbaaedd 943 $(SRC)/commands.h \
6218196f
JB
944 $(SRC)/composite.h \
945 $(SRC)/dispextern.h \
fd7a37d5
JB
946 $(SRC)/epaths.h \
947 $(SRC)/frame.h \
6218196f 948 $(SRC)/intervals.h \
7bbaaedd 949 $(SRC)/keyboard.h \
fd7a37d5 950 $(SRC)/systime.h \
7bbaaedd 951 $(SRC)/termhooks.h \
6218196f 952 $(SRC)/w32gui.h
7bbaaedd 953
aa2ee344 954$(BLD)/macros.$(O) : \
7bbaaedd 955 $(SRC)/macros.c \
0c1b4ae2 956 $(CONFIG_H) \
fd7a37d5 957 $(EMACS_ROOT)/nt/inc/sys/time.h \
7bbaaedd 958 $(SRC)/buffer.h \
fd7a37d5 959 $(SRC)/coding.h \
6218196f
JB
960 $(SRC)/commands.h \
961 $(SRC)/dispextern.h \
962 $(SRC)/keyboard.h \
963 $(SRC)/macros.h \
fd7a37d5 964 $(SRC)/systime.h \
6218196f 965 $(SRC)/w32gui.h \
7bbaaedd
AI
966 $(SRC)/window.h
967
aa2ee344 968$(BLD)/marker.$(O) : \
7bbaaedd 969 $(SRC)/marker.c \
0c1b4ae2 970 $(CONFIG_H) \
6218196f 971 $(SRC)/buffer.h \
fd7a37d5 972 $(SRC)/character.h
7bbaaedd 973
f0c82254 974$(BLD)/md5.$(O) : \
6218196f 975 $(SRC)/md5.c \
fd7a37d5 976 $(CONFIG_H) \
6218196f 977 $(SRC)/md5.h
f0c82254 978
a2b7437b 979$(BLD)/menu.$(O) : \
fd7a37d5
JB
980 $(SRC)/menu.c \
981 $(CONFIG_H) \
982 $(EMACS_ROOT)/nt/inc/sys/time.h \
983 $(SRC)/atimer.h \
984 $(SRC)/blockinput.h \
985 $(SRC)/coding.h \
986 $(SRC)/dispextern.h \
987 $(SRC)/frame.h \
988 $(SRC)/keyboard.h \
989 $(SRC)/keymap.h \
990 $(SRC)/menu.h \
991 $(SRC)/systime.h \
992 $(SRC)/termhooks.h \
993 $(SRC)/w32gui.h \
994 $(SRC)/w32term.h
a2b7437b 995
aa2ee344 996$(BLD)/minibuf.$(O) : \
7bbaaedd 997 $(SRC)/minibuf.c \
0c1b4ae2 998 $(CONFIG_H) \
fd7a37d5 999 $(EMACS_ROOT)/nt/inc/sys/time.h \
7bbaaedd 1000 $(SRC)/buffer.h \
dd6ab82f 1001 $(SRC)/character.h \
fd7a37d5 1002 $(SRC)/coding.h \
6218196f
JB
1003 $(SRC)/commands.h \
1004 $(SRC)/composite.h \
7bbaaedd
AI
1005 $(SRC)/dispextern.h \
1006 $(SRC)/frame.h \
6218196f
JB
1007 $(SRC)/intervals.h \
1008 $(SRC)/keyboard.h \
1009 $(SRC)/keymap.h \
1010 $(SRC)/syntax.h \
fd7a37d5 1011 $(SRC)/systime.h \
0254c6f7 1012 $(SRC)/termhooks.h \
6218196f
JB
1013 $(SRC)/w32gui.h \
1014 $(SRC)/window.h
7bbaaedd 1015
aa2ee344 1016$(BLD)/w32.$(O) : \
7bbaaedd 1017 $(SRC)/w32.c \
0c1b4ae2 1018 $(CONFIG_H) \
fd7a37d5 1019 $(EMACS_ROOT)/nt/inc/grp.h \
6218196f 1020 $(EMACS_ROOT)/nt/inc/pwd.h \
fd7a37d5
JB
1021 $(EMACS_ROOT)/nt/inc/unistd.h \
1022 $(EMACS_ROOT)/nt/inc/sys/file.h \
1023 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1024 $(EMACS_ROOT)/nt/inc/sys/time.h \
1025 $(SRC)/coding.h \
1026 $(SRC)/dispextern.h \
6218196f 1027 $(SRC)/ndir.h \
fd7a37d5 1028 $(SRC)/process.h \
6218196f
JB
1029 $(SRC)/systime.h \
1030 $(SRC)/w32.h \
fd7a37d5 1031 $(SRC)/w32gui.h \
7bbaaedd
AI
1032 $(SRC)/w32heap.h
1033
aa2ee344 1034$(BLD)/w32heap.$(O) : \
7bbaaedd 1035 $(SRC)/w32heap.c \
0c1b4ae2 1036 $(CONFIG_H) \
6218196f 1037 $(SRC)/w32heap.h
7bbaaedd 1038
aa2ee344 1039$(BLD)/w32inevt.$(O) : \
7bbaaedd 1040 $(SRC)/w32inevt.c \
0c1b4ae2 1041 $(CONFIG_H) \
fd7a37d5 1042 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f 1043 $(SRC)/atimer.h \
7bbaaedd 1044 $(SRC)/blockinput.h \
fd7a37d5
JB
1045 $(SRC)/coding.h \
1046 $(SRC)/dispextern.h \
6218196f
JB
1047 $(SRC)/frame.h \
1048 $(SRC)/keyboard.h \
1049 $(SRC)/systime.h \
7bbaaedd 1050 $(SRC)/termhooks.h \
6218196f 1051 $(SRC)/w32gui.h \
7bbaaedd 1052 $(SRC)/w32heap.h \
6218196f 1053 $(SRC)/w32term.h
7bbaaedd 1054
aa2ee344 1055$(BLD)/w32proc.$(O) : \
7bbaaedd 1056 $(SRC)/w32proc.c \
0c1b4ae2 1057 $(CONFIG_H) \
83b41e19
EZ
1058 $(EMACS_ROOT)/nt/inc/langinfo.h \
1059 $(EMACS_ROOT)/nt/inc/nl_types.h \
fd7a37d5
JB
1060 $(EMACS_ROOT)/nt/inc/unistd.h \
1061 $(EMACS_ROOT)/nt/inc/sys/file.h \
1062 $(EMACS_ROOT)/nt/inc/sys/time.h \
fb38fc51 1063 $(SRC)/character.h \
fd7a37d5
JB
1064 $(SRC)/coding.h \
1065 $(SRC)/dispextern.h \
6218196f
JB
1066 $(SRC)/process.h \
1067 $(SRC)/syssignal.h \
1068 $(SRC)/systime.h \
1069 $(SRC)/syswait.h \
7bbaaedd 1070 $(SRC)/w32.h \
6218196f 1071 $(SRC)/w32gui.h \
7bbaaedd 1072 $(SRC)/w32heap.h \
6218196f 1073 $(SRC)/w32term.h
7bbaaedd 1074
aa2ee344 1075$(BLD)/w32console.$(O) : \
7bbaaedd 1076 $(SRC)/w32console.c \
0c1b4ae2 1077 $(CONFIG_H) \
dd6ab82f 1078 $(SRC)/character.h \
6218196f 1079 $(SRC)/coding.h \
6218196f 1080 $(SRC)/dispextern.h \
7bbaaedd 1081 $(SRC)/disptab.h \
6218196f 1082 $(SRC)/frame.h \
fd7a37d5 1083 $(SRC)/termchar.h \
7bbaaedd 1084 $(SRC)/termhooks.h \
6218196f 1085 $(SRC)/w32gui.h \
93b9e8cc 1086 $(SRC)/w32inevt.h
7bbaaedd 1087
aa2ee344 1088$(BLD)/print.$(O) : \
7bbaaedd 1089 $(SRC)/print.c \
0c1b4ae2 1090 $(CONFIG_H) \
fd7a37d5
JB
1091 $(EMACS_ROOT)/nt/inc/unistd.h \
1092 $(EMACS_ROOT)/nt/inc/sys/time.h \
1093 $(SRC)/atimer.h \
1094 $(SRC)/blockinput.h \
7bbaaedd 1095 $(SRC)/buffer.h \
fd7a37d5 1096 $(SRC)/ccl.h \
dd6ab82f 1097 $(SRC)/character.h \
6218196f 1098 $(SRC)/charset.h \
fd7a37d5 1099 $(SRC)/coding.h \
6218196f
JB
1100 $(SRC)/composite.h \
1101 $(SRC)/dispextern.h \
fd7a37d5 1102 $(SRC)/font.h \
7bbaaedd 1103 $(SRC)/frame.h \
6218196f
JB
1104 $(SRC)/intervals.h \
1105 $(SRC)/keyboard.h \
7bbaaedd 1106 $(SRC)/process.h \
fd7a37d5 1107 $(SRC)/systime.h \
7bbaaedd 1108 $(SRC)/termchar.h \
fd7a37d5 1109 $(SRC)/termhooks.h \
aa2ee344 1110 $(SRC)/w32gui.h \
6218196f 1111 $(SRC)/window.h
7bbaaedd 1112
aa2ee344 1113$(BLD)/process.$(O) : \
7bbaaedd 1114 $(SRC)/process.c \
0c1b4ae2 1115 $(CONFIG_H) \
fd7a37d5
JB
1116 $(EMACS_ROOT)/nt/inc/grp.h \
1117 $(EMACS_ROOT)/nt/inc/netdb.h \
1118 $(EMACS_ROOT)/nt/inc/pwd.h \
1119 $(EMACS_ROOT)/nt/inc/unistd.h \
1120 $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1121 $(EMACS_ROOT)/nt/inc/netinet/in.h \
7bbaaedd 1122 $(EMACS_ROOT)/nt/inc/sys/file.h \
fd7a37d5
JB
1123 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1124 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1125 $(SRC)/atimer.h \
1126 $(SRC)/blockinput.h \
7bbaaedd 1127 $(SRC)/buffer.h \
dd6ab82f 1128 $(SRC)/character.h \
6218196f 1129 $(SRC)/coding.h \
7bbaaedd 1130 $(SRC)/commands.h \
6218196f
JB
1131 $(SRC)/composite.h \
1132 $(SRC)/dispextern.h \
7bbaaedd 1133 $(SRC)/frame.h \
6218196f
JB
1134 $(SRC)/keyboard.h \
1135 $(SRC)/process.h \
1136 $(SRC)/sysselect.h \
7bbaaedd 1137 $(SRC)/syssignal.h \
7bbaaedd 1138 $(SRC)/systime.h \
6218196f
JB
1139 $(SRC)/systty.h \
1140 $(SRC)/syswait.h \
1141 $(SRC)/termhooks.h \
7bbaaedd 1142 $(SRC)/termopts.h \
fd7a37d5 1143 $(SRC)/w32.h \
6218196f
JB
1144 $(SRC)/w32gui.h \
1145 $(SRC)/window.h
7bbaaedd 1146
aa2ee344 1147$(BLD)/ralloc.$(O) : \
7bbaaedd 1148 $(SRC)/ralloc.c \
0c1b4ae2 1149 $(CONFIG_H) \
fd7a37d5
JB
1150 $(EMACS_ROOT)/nt/inc/unistd.h \
1151 $(EMACS_ROOT)/nt/inc/sys/time.h \
1152 $(SRC)/atimer.h \
1153 $(SRC)/blockinput.h \
1154 $(SRC)/getpagesize.h \
1155 $(SRC)/systime.h
7bbaaedd 1156
aa2ee344 1157$(BLD)/regex.$(O) : \
7bbaaedd 1158 $(SRC)/regex.c \
0c1b4ae2 1159 $(CONFIG_H) \
7bbaaedd 1160 $(SRC)/buffer.h \
6218196f 1161 $(SRC)/category.h \
dd6ab82f 1162 $(SRC)/character.h \
6218196f
JB
1163 $(SRC)/regex.h \
1164 $(SRC)/syntax.h
7bbaaedd 1165
aa2ee344 1166$(BLD)/region-cache.$(O) : \
7bbaaedd 1167 $(SRC)/region-cache.c \
0c1b4ae2 1168 $(CONFIG_H) \
7bbaaedd
AI
1169 $(SRC)/buffer.h \
1170 $(SRC)/region-cache.h
1171
aa2ee344 1172$(BLD)/scroll.$(O) : \
7bbaaedd 1173 $(SRC)/scroll.c \
0c1b4ae2 1174 $(CONFIG_H) \
fd7a37d5
JB
1175 $(EMACS_ROOT)/nt/inc/sys/time.h \
1176 $(SRC)/coding.h \
7bbaaedd 1177 $(SRC)/dispextern.h \
6218196f
JB
1178 $(SRC)/frame.h \
1179 $(SRC)/keyboard.h \
fd7a37d5 1180 $(SRC)/systime.h \
6218196f 1181 $(SRC)/termchar.h \
0254c6f7 1182 $(SRC)/termhooks.h \
aa2ee344 1183 $(SRC)/w32gui.h \
6218196f 1184 $(SRC)/window.h
7bbaaedd 1185
aa2ee344 1186$(BLD)/search.$(O) : \
7bbaaedd 1187 $(SRC)/search.c \
0c1b4ae2 1188 $(CONFIG_H) \
fd7a37d5 1189 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1190 $(SRC)/atimer.h \
1191 $(SRC)/blockinput.h \
7bbaaedd 1192 $(SRC)/buffer.h \
6218196f 1193 $(SRC)/category.h \
dd6ab82f 1194 $(SRC)/character.h \
6218196f 1195 $(SRC)/charset.h \
7bbaaedd 1196 $(SRC)/commands.h \
6218196f
JB
1197 $(SRC)/composite.h \
1198 $(SRC)/dispextern.h \
1199 $(SRC)/intervals.h \
7bbaaedd
AI
1200 $(SRC)/regex.h \
1201 $(SRC)/region-cache.h \
6218196f
JB
1202 $(SRC)/syntax.h \
1203 $(SRC)/systime.h \
6218196f 1204 $(SRC)/w32gui.h
7bbaaedd 1205
f60ae425
BK
1206$(BLD)/sound.$(O) : \
1207 $(SRC)/sound.c \
0c1b4ae2 1208 $(CONFIG_H) \
fd7a37d5
JB
1209 $(EMACS_ROOT)/nt/inc/unistd.h \
1210 $(EMACS_ROOT)/nt/inc/sys/time.h \
f60ae425 1211 $(SRC)/atimer.h \
fd7a37d5
JB
1212 $(SRC)/dispextern.h \
1213 $(SRC)/syssignal.h \
1214 $(SRC)/systime.h \
1215 $(SRC)/w32gui.h
f60ae425 1216
aa2ee344 1217$(BLD)/strftime.$(O) : \
7bbaaedd 1218 $(SRC)/strftime.c \
fd7a37d5
JB
1219 $(CONFIG_H) \
1220 $(EMACS_ROOT)/nt/inc/sys/time.h
7bbaaedd 1221
aa2ee344 1222$(BLD)/syntax.$(O) : \
7bbaaedd 1223 $(SRC)/syntax.c \
0c1b4ae2 1224 $(CONFIG_H) \
7bbaaedd 1225 $(SRC)/buffer.h \
6218196f 1226 $(SRC)/category.h \
dd6ab82f 1227 $(SRC)/character.h \
6218196f
JB
1228 $(SRC)/commands.h \
1229 $(SRC)/composite.h \
1230 $(SRC)/dispextern.h \
1231 $(SRC)/intervals.h \
1232 $(SRC)/keymap.h \
fd7a37d5 1233 $(SRC)/regex.h \
7bbaaedd 1234 $(SRC)/syntax.h \
6218196f 1235 $(SRC)/w32gui.h
7bbaaedd 1236
aa2ee344 1237$(BLD)/sysdep.$(O) : \
7bbaaedd 1238 $(SRC)/sysdep.c \
0c1b4ae2 1239 $(CONFIG_H) \
fd7a37d5
JB
1240 $(EMACS_ROOT)/nt/inc/netdb.h \
1241 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd
AI
1242 $(EMACS_ROOT)/nt/inc/sys/file.h \
1243 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
fd7a37d5
JB
1244 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1245 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1246 $(SRC)/atimer.h \
1247 $(SRC)/blockinput.h \
0254c6f7 1248 $(SRC)/cm.h \
fd7a37d5 1249 $(SRC)/coding.h \
6218196f
JB
1250 $(SRC)/dispextern.h \
1251 $(SRC)/frame.h \
1252 $(SRC)/keyboard.h \
6218196f 1253 $(SRC)/process.h \
6218196f
JB
1254 $(SRC)/syssignal.h \
1255 $(SRC)/systime.h \
7bbaaedd 1256 $(SRC)/systty.h \
7bbaaedd 1257 $(SRC)/syswait.h \
7bbaaedd 1258 $(SRC)/termchar.h \
6218196f 1259 $(SRC)/termhooks.h \
7bbaaedd 1260 $(SRC)/termopts.h \
fd7a37d5 1261 $(SRC)/w32.h \
aa2ee344 1262 $(SRC)/w32gui.h \
6218196f 1263 $(SRC)/window.h
7bbaaedd 1264
aa2ee344 1265$(BLD)/term.$(O) : \
7bbaaedd 1266 $(SRC)/term.c \
0c1b4ae2 1267 $(CONFIG_H) \
fd7a37d5
JB
1268 $(EMACS_ROOT)/nt/inc/unistd.h \
1269 $(EMACS_ROOT)/nt/inc/sys/file.h \
1270 $(EMACS_ROOT)/nt/inc/sys/time.h \
1271 $(SRC)/atimer.h \
1272 $(SRC)/blockinput.h \
1273 $(SRC)/buffer.h \
dd6ab82f 1274 $(SRC)/character.h \
6218196f 1275 $(SRC)/charset.h \
7bbaaedd 1276 $(SRC)/cm.h \
6218196f 1277 $(SRC)/coding.h \
fd7a37d5 1278 $(SRC)/composite.h \
aa2ee344 1279 $(SRC)/dispextern.h \
6218196f
JB
1280 $(SRC)/disptab.h \
1281 $(SRC)/frame.h \
fd7a37d5 1282 $(SRC)/intervals.h \
6218196f
JB
1283 $(SRC)/keyboard.h \
1284 $(SRC)/keymap.h \
fd7a37d5
JB
1285 $(SRC)/syssignal.h \
1286 $(SRC)/systime.h \
1287 $(SRC)/systty.h \
6218196f 1288 $(SRC)/termchar.h \
7bbaaedd 1289 $(SRC)/termhooks.h \
6218196f 1290 $(SRC)/termopts.h \
6218196f
JB
1291 $(SRC)/w32gui.h \
1292 $(SRC)/window.h
7bbaaedd 1293
aa2ee344 1294$(BLD)/termcap.$(O) : \
7bbaaedd 1295 $(SRC)/termcap.c \
0c1b4ae2 1296 $(CONFIG_H) \
fd7a37d5 1297 $(EMACS_ROOT)/nt/inc/unistd.h \
7bbaaedd
AI
1298 $(EMACS_ROOT)/nt/inc/sys/file.h
1299
0254c6f7
JR
1300$(BLD)/terminal.$(O) : \
1301 $(SRC)/terminal.c \
0c1b4ae2 1302 $(CONFIG_H) \
fd7a37d5 1303 $(EMACS_ROOT)/nt/inc/sys/time.h \
0254c6f7
JR
1304 $(SRC)/charset.h \
1305 $(SRC)/coding.h \
fd7a37d5 1306 $(SRC)/dispextern.h \
0254c6f7
JR
1307 $(SRC)/frame.h \
1308 $(SRC)/keyboard.h \
fd7a37d5 1309 $(SRC)/systime.h \
0254c6f7 1310 $(SRC)/termchar.h \
fd7a37d5
JB
1311 $(SRC)/termhooks.h \
1312 $(SRC)/w32gui.h
0254c6f7 1313
aa2ee344 1314$(BLD)/textprop.$(O) : \
7bbaaedd 1315 $(SRC)/textprop.c \
0c1b4ae2 1316 $(CONFIG_H) \
6218196f
JB
1317 $(SRC)/buffer.h \
1318 $(SRC)/composite.h \
7bbaaedd
AI
1319 $(SRC)/dispextern.h \
1320 $(SRC)/intervals.h \
6218196f 1321 $(SRC)/w32gui.h \
7bbaaedd
AI
1322 $(SRC)/window.h
1323
aa2ee344 1324$(BLD)/tparam.$(O) : \
7bbaaedd 1325 $(SRC)/tparam.c \
0c1b4ae2 1326 $(CONFIG_H)
7bbaaedd 1327
aa2ee344 1328$(BLD)/undo.$(O) : \
7bbaaedd 1329 $(SRC)/undo.c \
0c1b4ae2 1330 $(CONFIG_H) \
7bbaaedd 1331 $(SRC)/buffer.h \
fd7a37d5
JB
1332 $(SRC)/commands.h \
1333 $(SRC)/dispextern.h \
1334 $(SRC)/w32gui.h \
1335 $(SRC)/window.h
7bbaaedd 1336
aa2ee344 1337$(BLD)/unexw32.$(O) : \
7bbaaedd 1338 $(SRC)/unexw32.c \
0c1b4ae2 1339 $(CONFIG_H) \
7bbaaedd
AI
1340 $(SRC)/w32heap.h
1341
aa2ee344 1342$(BLD)/vm-limit.$(O) : \
7bbaaedd 1343 $(SRC)/vm-limit.c \
0c1b4ae2 1344 $(CONFIG_H) \
d51ffa0e 1345 $(SRC)/mem-limits.h
7bbaaedd 1346
aa2ee344 1347$(BLD)/window.$(O) : \
7bbaaedd 1348 $(SRC)/window.c \
0c1b4ae2 1349 $(CONFIG_H) \
fd7a37d5 1350 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1351 $(SRC)/atimer.h \
1352 $(SRC)/blockinput.h \
7bbaaedd 1353 $(SRC)/buffer.h \
fd7a37d5 1354 $(SRC)/coding.h \
7bbaaedd 1355 $(SRC)/commands.h \
6218196f
JB
1356 $(SRC)/composite.h \
1357 $(SRC)/dispextern.h \
7bbaaedd 1358 $(SRC)/disptab.h \
6218196f
JB
1359 $(SRC)/frame.h \
1360 $(SRC)/indent.h \
1361 $(SRC)/intervals.h \
7bbaaedd 1362 $(SRC)/keyboard.h \
6218196f
JB
1363 $(SRC)/keymap.h \
1364 $(SRC)/systime.h \
1365 $(SRC)/termchar.h \
fd7a37d5 1366 $(SRC)/termhooks.h \
6218196f
JB
1367 $(SRC)/w32gui.h \
1368 $(SRC)/w32term.h \
1369 $(SRC)/window.h
7bbaaedd 1370
aa2ee344 1371$(BLD)/xdisp.$(O) : \
7bbaaedd 1372 $(SRC)/xdisp.c \
0c1b4ae2 1373 $(CONFIG_H) \
fd7a37d5
JB
1374 $(EMACS_ROOT)/nt/inc/unistd.h \
1375 $(EMACS_ROOT)/nt/inc/sys/time.h \
8cb9dfbf 1376 $(SRC)/atimer.h \
cad6f96a 1377 $(SRC)/blockinput.h \
7bbaaedd 1378 $(SRC)/buffer.h \
6218196f 1379 $(SRC)/ccl.h \
dd6ab82f 1380 $(SRC)/character.h \
6218196f
JB
1381 $(SRC)/charset.h \
1382 $(SRC)/coding.h \
7bbaaedd 1383 $(SRC)/commands.h \
6218196f
JB
1384 $(SRC)/composite.h \
1385 $(SRC)/dispextern.h \
7bbaaedd 1386 $(SRC)/disptab.h \
223250a6 1387 $(SRC)/font.h \
6218196f
JB
1388 $(SRC)/fontset.h \
1389 $(SRC)/frame.h \
1390 $(SRC)/indent.h \
1391 $(SRC)/intervals.h \
1392 $(SRC)/keyboard.h \
57cb6dbe 1393 $(SRC)/keymap.h \
6218196f
JB
1394 $(SRC)/macros.h \
1395 $(SRC)/process.h \
1396 $(SRC)/region-cache.h \
8cb9dfbf 1397 $(SRC)/systime.h \
6218196f 1398 $(SRC)/termchar.h \
7bbaaedd 1399 $(SRC)/termhooks.h \
aa2ee344 1400 $(SRC)/w32gui.h \
a821edb8 1401 $(SRC)/w32term.h \
6218196f 1402 $(SRC)/window.h
7bbaaedd 1403
fd7a37d5 1404$(BLD)/xfaces.$(O) : \
6218196f 1405 $(SRC)/xfaces.c \
0c1b4ae2 1406 $(CONFIG_H) \
fd7a37d5 1407 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1408 $(SRC)/atimer.h \
1409 $(SRC)/blockinput.h \
7bbaaedd 1410 $(SRC)/buffer.h \
fd7a37d5 1411 $(SRC)/ccl.h \
dd6ab82f 1412 $(SRC)/character.h \
6218196f 1413 $(SRC)/charset.h \
fd7a37d5 1414 $(SRC)/coding.h \
6218196f 1415 $(SRC)/composite.h \
7bbaaedd 1416 $(SRC)/dispextern.h \
223250a6 1417 $(SRC)/font.h \
6218196f 1418 $(SRC)/fontset.h \
7bbaaedd 1419 $(SRC)/frame.h \
7bbaaedd 1420 $(SRC)/intervals.h \
6218196f
JB
1421 $(SRC)/keyboard.h \
1422 $(SRC)/systime.h \
0254c6f7
JR
1423 $(SRC)/termchar.h \
1424 $(SRC)/termhooks.h \
6218196f
JB
1425 $(SRC)/w32gui.h \
1426 $(SRC)/w32term.h \
1427 $(SRC)/window.h
7bbaaedd 1428
fd7a37d5 1429$(BLD)/w32fns.$(O) : \
6218196f 1430 $(SRC)/w32fns.c \
0c1b4ae2 1431 $(CONFIG_H) \
fd7a37d5 1432 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1433 $(SRC)/atimer.h \
1434 $(SRC)/blockinput.h \
7bbaaedd 1435 $(SRC)/buffer.h \
6218196f 1436 $(SRC)/ccl.h \
dd6ab82f 1437 $(SRC)/character.h \
7bbaaedd
AI
1438 $(SRC)/charset.h \
1439 $(SRC)/coding.h \
6218196f 1440 $(SRC)/composite.h \
7bbaaedd 1441 $(SRC)/dispextern.h \
7bbaaedd 1442 $(SRC)/epaths.h \
223250a6 1443 $(SRC)/font.h \
6218196f
JB
1444 $(SRC)/fontset.h \
1445 $(SRC)/frame.h \
1446 $(SRC)/intervals.h \
1447 $(SRC)/keyboard.h \
1448 $(SRC)/systime.h \
1449 $(SRC)/termhooks.h \
fd7a37d5 1450 $(SRC)/w32font.h \
6218196f 1451 $(SRC)/w32gui.h \
7bbaaedd 1452 $(SRC)/w32heap.h \
6218196f
JB
1453 $(SRC)/w32term.h \
1454 $(SRC)/window.h
7bbaaedd 1455
fd7a37d5 1456$(BLD)/w32menu.$(O) : \
6218196f 1457 $(SRC)/w32menu.c \
0c1b4ae2 1458 $(CONFIG_H) \
fd7a37d5 1459 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f 1460 $(SRC)/atimer.h \
7bbaaedd
AI
1461 $(SRC)/blockinput.h \
1462 $(SRC)/buffer.h \
dd6ab82f 1463 $(SRC)/character.h \
7bbaaedd 1464 $(SRC)/charset.h \
6218196f
JB
1465 $(SRC)/coding.h \
1466 $(SRC)/dispextern.h \
1467 $(SRC)/frame.h \
1468 $(SRC)/keyboard.h \
1469 $(SRC)/keymap.h \
1470 $(SRC)/systime.h \
1471 $(SRC)/termhooks.h \
6218196f
JB
1472 $(SRC)/w32gui.h \
1473 $(SRC)/w32term.h \
1474 $(SRC)/window.h
7bbaaedd 1475
fd7a37d5 1476$(BLD)/w32term.$(O) : \
6218196f 1477 $(SRC)/w32term.c \
0c1b4ae2 1478 $(CONFIG_H) \
fd7a37d5
JB
1479 $(EMACS_ROOT)/nt/inc/unistd.h \
1480 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f 1481 $(SRC)/atimer.h \
7bbaaedd 1482 $(SRC)/blockinput.h \
6218196f
JB
1483 $(SRC)/buffer.h \
1484 $(SRC)/ccl.h \
dd6ab82f 1485 $(SRC)/character.h \
6218196f
JB
1486 $(SRC)/charset.h \
1487 $(SRC)/coding.h \
1488 $(SRC)/composite.h \
7bbaaedd 1489 $(SRC)/dispextern.h \
7bbaaedd 1490 $(SRC)/disptab.h \
223250a6 1491 $(SRC)/font.h \
6218196f
JB
1492 $(SRC)/fontset.h \
1493 $(SRC)/frame.h \
7bbaaedd 1494 $(SRC)/intervals.h \
6218196f
JB
1495 $(SRC)/keyboard.h \
1496 $(SRC)/keymap.h \
fd7a37d5 1497 $(SRC)/process.h \
6218196f
JB
1498 $(SRC)/systime.h \
1499 $(SRC)/systty.h \
1500 $(SRC)/termchar.h \
1501 $(SRC)/termhooks.h \
1502 $(SRC)/termopts.h \
fd7a37d5 1503 $(SRC)/w32font.h \
6218196f
JB
1504 $(SRC)/w32gui.h \
1505 $(SRC)/w32heap.h \
1506 $(SRC)/w32term.h \
1507 $(SRC)/window.h
7bbaaedd 1508
fd7a37d5 1509$(BLD)/w32select.$(O) : \
6218196f 1510 $(SRC)/w32select.c \
0c1b4ae2 1511 $(CONFIG_H) \
fd7a37d5 1512 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1513 $(SRC)/atimer.h \
1514 $(SRC)/blockinput.h \
dd6ab82f 1515 $(SRC)/character.h \
6218196f
JB
1516 $(SRC)/charset.h \
1517 $(SRC)/coding.h \
1518 $(SRC)/composite.h \
6218196f
JB
1519 $(SRC)/keyboard.h \
1520 $(SRC)/systime.h \
6218196f 1521 $(SRC)/w32gui.h \
b6cc2ad0 1522 $(SRC)/w32heap.h \
6218196f 1523 $(SRC)/w32term.h
7bbaaedd 1524
fd7a37d5 1525$(BLD)/w32reg.$(O) : \
6218196f 1526 $(SRC)/w32reg.c \
0c1b4ae2 1527 $(CONFIG_H) \
fd7a37d5 1528 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1529 $(SRC)/atimer.h \
1530 $(SRC)/blockinput.h \
1531 $(SRC)/systime.h \
7bbaaedd 1532 $(SRC)/w32gui.h \
6218196f 1533 $(SRC)/w32term.h
7bbaaedd 1534
fd7a37d5 1535$(BLD)/w32xfns.$(O) : \
6218196f 1536 $(SRC)/w32xfns.c \
0c1b4ae2 1537 $(CONFIG_H) \
fd7a37d5 1538 $(EMACS_ROOT)/nt/inc/sys/time.h \
6218196f
JB
1539 $(SRC)/atimer.h \
1540 $(SRC)/blockinput.h \
1541 $(SRC)/charset.h \
fd7a37d5
JB
1542 $(SRC)/coding.h \
1543 $(SRC)/dispextern.h \
6218196f
JB
1544 $(SRC)/fontset.h \
1545 $(SRC)/frame.h \
1546 $(SRC)/keyboard.h \
1547 $(SRC)/systime.h \
6218196f
JB
1548 $(SRC)/w32gui.h \
1549 $(SRC)/w32term.h
5ac50e96 1550
fd7a37d5 1551$(BLD)/w32font.$(O) : \
223250a6 1552 $(SRC)/w32font.c \
0c1b4ae2 1553 $(CONFIG_H) \
fd7a37d5 1554 $(SRC)/ccl.h \
0c1b4ae2
JR
1555 $(SRC)/character.h \
1556 $(SRC)/charset.h \
1557 $(SRC)/dispextern.h \
1558 $(SRC)/font.h \
1559 $(SRC)/fontset.h \
1560 $(SRC)/frame.h \
1561 $(SRC)/w32font.h \
1562 $(SRC)/w32gui.h \
1563 $(SRC)/w32term.h
1564
fd7a37d5 1565$(BLD)/w32uniscribe.$(O) : \
0c1b4ae2
JR
1566 $(SRC)/w32uniscribe.c \
1567 $(CONFIG_H) \
fd7a37d5 1568 $(SRC)/ccl.h \
223250a6
JR
1569 $(SRC)/character.h \
1570 $(SRC)/charset.h \
091a66d2 1571 $(SRC)/composite.h \
223250a6
JR
1572 $(SRC)/dispextern.h \
1573 $(SRC)/font.h \
1574 $(SRC)/fontset.h \
1575 $(SRC)/frame.h \
c1ca4c24 1576 $(SRC)/w32font.h \
223250a6
JR
1577 $(SRC)/w32gui.h \
1578 $(SRC)/w32term.h
1579
5ac50e96
EZ
1580# Each object file depends on stamp_BLD, because in parallel builds we must
1581# make sure $(BLD) exists before starting compilations.
1582#
223250a6 1583$(OBJ0) $(OBJ1) $(WIN32OBJ) $(FONTOBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD