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