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