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