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