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