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