* src/fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
[bpt/emacs.git] / src / makefile.w32-in
CommitLineData
b9b1cc14 1# -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
73b0cd50 2# Copyright (C) 2000-2011 Free Software Foundation, Inc.
b9b1cc14
GM
3
4# This file is part of GNU Emacs.
5
6# GNU Emacs is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10
11# GNU Emacs is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
18
7bbaaedd
AI
19
20ALL = emacs
21
22.PHONY: $(ALL)
23
325111e9
AI
24# Set EMACSLOADPATH correctly (in case already defined in environment).
25EMACSLOADPATH=$(CURDIR)/../lisp
26
7bbaaedd
AI
27#
28# HAVE_CONFIG_H is required by some generic gnu sources stuck into
29# the emacs source tree.
30#
f915f0f7 31LOCAL_FLAGS = -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
7bbaaedd 32
877610de 33SRC = .
7bbaaedd
AI
34EMACS = $(BLD)/emacs.exe
35TEMACS = $(BLD)/temacs.exe
36TEMACS_TMP = $(BLD)/temacs.bin
37TLIB0 = $(BLD)/temacs0.$(A)
38TLIB1 = $(BLD)/temacs1.$(A)
5e371708 39TLIB2 = $(BLD)/temacs2.$(A)
7bbaaedd
AI
40TOBJ = $(BLD)/firstfile.$(O)
41TRES = $(BLD)/emacs.res
42TLASTLIB = $(BLD)/lastfile.$(A)
f915f0f7 43GNULIB = ../lib/$(BLD)/libgnu.$(A)
7bbaaedd 44
24af414e
EZ
45DOC = $(OBJDIR)/etc/DOC-X
46
526dc3b3
JR
47FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
48
7bbaaedd
AI
49#
50# Split up the objects into two sets so that we don't run out of
51# command line space when we link them into a library.
52#
53# Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
54# as the "main" object file when linking.
55#
56OBJ0 = $(BLD)/emacs.$(O)
57
ffe42183 58OBJ1 = $(BLD)/alloc.$(O) \
55fb4286
EZ
59 $(BLD)/atimer.$(O) \
60 $(BLD)/buffer.$(O) \
ffe42183
JR
61 $(BLD)/bytecode.$(O) \
62 $(BLD)/callint.$(O) \
63 $(BLD)/callproc.$(O) \
64 $(BLD)/casefiddle.$(O) \
55fb4286
EZ
65 $(BLD)/cmds.$(O) \
66 $(BLD)/data.$(O) \
67 $(BLD)/dired.$(O) \
ffe42183
JR
68 $(BLD)/dispnew.$(O) \
69 $(BLD)/doc.$(O) \
55fb4286 70 $(BLD)/doprnt.$(O) \
ffe42183 71 $(BLD)/editfns.$(O) \
55fb4286
EZ
72 $(BLD)/eval.$(O) \
73 $(BLD)/fileio.$(O) \
ffe42183 74 $(BLD)/filelock.$(O) \
ffe42183 75 $(BLD)/fns.$(O) \
55fb4286
EZ
76 $(BLD)/indent.$(O) \
77 $(BLD)/insdel.$(O) \
ffe42183 78 $(BLD)/keyboard.$(O) \
55fb4286
EZ
79 $(BLD)/keymap.$(O) \
80 $(BLD)/lread.$(O) \
81 $(BLD)/macros.$(O) \
82 $(BLD)/marker.$(O) \
ffe42183
JR
83 $(BLD)/minibuf.$(O) \
84 $(BLD)/w32.$(O) \
85 $(BLD)/w32heap.$(O) \
86 $(BLD)/w32inevt.$(O) \
87 $(BLD)/w32proc.$(O) \
88 $(BLD)/w32console.$(O) \
55fb4286 89 $(BLD)/print.$(O) \
ffe42183 90 $(BLD)/process.$(O) \
55fb4286
EZ
91 $(BLD)/regex.$(O) \
92 $(BLD)/scroll.$(O) \
93 $(BLD)/search.$(O) \
94 $(BLD)/sound.$(O) \
5e371708
JB
95 $(BLD)/syntax.$(O)
96
97OBJ2 = $(BLD)/sysdep.$(O) \
55fb4286 98 $(BLD)/term.$(O) \
55fb4286
EZ
99 $(BLD)/tparam.$(O) \
100 $(BLD)/undo.$(O) \
ffe42183 101 $(BLD)/unexw32.$(O) \
55fb4286
EZ
102 $(BLD)/window.$(O) \
103 $(BLD)/xdisp.$(O) \
ffe42183
JR
104 $(BLD)/casetab.$(O) \
105 $(BLD)/floatfns.$(O) \
55fb4286 106 $(BLD)/frame.$(O) \
ffe42183 107 $(BLD)/gmalloc.$(O) \
e061a11b 108 $(BLD)/gnutls.$(O) \
ffe42183
JR
109 $(BLD)/intervals.$(O) \
110 $(BLD)/composite.$(O) \
55fb4286 111 $(BLD)/ralloc.$(O) \
ffe42183
JR
112 $(BLD)/textprop.$(O) \
113 $(BLD)/vm-limit.$(O) \
55fb4286 114 $(BLD)/region-cache.$(O) \
f4b6ba46 115 $(BLD)/bidi.$(O) \
ffe42183
JR
116 $(BLD)/charset.$(O) \
117 $(BLD)/character.$(O) \
118 $(BLD)/chartab.$(O) \
55fb4286 119 $(BLD)/coding.$(O) \
ffe42183
JR
120 $(BLD)/category.$(O) \
121 $(BLD)/ccl.$(O) \
55fb4286 122 $(BLD)/font.$(O) \
ffe42183 123 $(BLD)/fontset.$(O) \
55fb4286
EZ
124 $(BLD)/fringe.$(O) \
125 $(BLD)/image.$(O) \
a2b7437b 126 $(BLD)/terminal.$(O) \
5e371708
JB
127 $(BLD)/menu.$(O) \
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)
526dc3b3 180 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
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
JB
224 doprnt.c intervals.c textprop.c composite.c \
225 gnutls.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
235 "../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp
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
762b15be 342TAGS: $(OBJ0) $(OBJ1) $(OBJ2) $(CURDIR)/m/intel386.h $(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 \
351 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ0))
352 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
353 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1))
354 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
5e371708 355 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2)) \
762b15be 356 $(CURDIR)/*.h $(CURDIR)/m/intel386.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
389SYSTIME_H = $(SRC)/systime.h \
390 $(NT_INC)/sys/time.h
391ATIMER_H = $(SRC)/atimer.h \
392 $(SYSTIME_H)
393BLOCKINPUT_H = $(SRC)/blockinput.h \
394 $(ATIMER_H)
395CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
396 $(NT_INC)/unistd.h
397CHARACTER_H = $(SRC)/character.h \
398 $(GNU_LIB)/verify.h
399CHARSET_H = $(SRC)/charset.h \
400 $(GNU_LIB)/verify.h
401CODING_H = $(SRC)/coding.h \
402 $(SRC)/composite.h
403MS_W32_H = $(SRC)/s/ms-w32.h \
404 $(NT_INC)/sys/stat.h
405CONFIG_H = $(SRC)/config.h \
406 $(SRC)/m/intel386.h \
407 $(MS_W32_H)
408DIR_H = $(NT_INC)/sys/dir.h \
409 $(SRC)/ndir.h
410W32GUI_H = $(SRC)/w32gui.h \
411 $(SYSTIME_H)
412DISPEXTERN_H = $(SRC)/dispextern.h \
413 $(W32GUI_H)
414FILEMODE_H = $(GNU_LIB)/filemode.h \
415 $(NT_INC)/sys/stat.h
416FONT_H = $(SRC)/font.h \
417 $(SRC)/ccl.h
418FRAME_H = $(SRC)/frame.h \
419 $(DISPEXTERN_H)
420FTOASTR_H = $(GNU_LIB)/ftoastr.h \
421 $(GNU_LIB)/intprops.h
422GRP_H = $(NT_INC)/grp.h \
423 $(NT_INC)/pwd.h
424INTERVALS_H = $(SRC)/intervals.h \
425 $(SRC)/composite.h \
426 $(DISPEXTERN_H)
427INTTYPES_H = $(NT_INC)/inttypes.h \
428 $(NT_INC)/stdint.h
429KEYBOARD_H = $(SRC)/keyboard.h \
430 $(CODING_H) \
431 $(SYSTIME_H)
432LANGINFO_H = $(NT_INC)/langinfo.h \
433 $(NT_INC)/nl_types.h
434LISP_H = $(SRC)/lisp.h \
435 $(SRC)/globals.h \
436 $(GNU_LIB)/intprops.h \
437 $(INTTYPES_H)
438MD5_H = $(GNU_LIB)/md5.h \
439 $(NT_INC)/stdint.h
440MENU_H = $(SRC)/menu.h \
441 $(SYSTIME_H)
442PROCESS_H = $(SRC)/process.h \
443 $(SRC)/gnutls.h \
444 $(NT_INC)/unistd.h
445SHA1_H = $(GNU_LIB)/sha1.h \
446 $(NT_INC)/stdint.h
447SHA256_H = $(GNU_LIB)/sha256.h \
448 $(NT_INC)/stdint.h
449U64_H = $(GNU_LIB)/u64.h \
450 $(NT_INC)/stdint.h
451SHA512_H = $(GNU_LIB)/sha512.h \
452 $(U64_H)
453SOCKET_H = $(NT_INC)/sys/socket.h \
454 $(SRC)/w32.h
455SYSTTY_H = $(SRC)/systty.h \
456 $(NT_INC)/sys/ioctl.h \
457 $(NT_INC)/unistd.h
458TERMHOOKS_H = $(SRC)/termhooks.h \
459 $(SYSTIME_H)
460W32TERM_H = $(SRC)/w32term.h \
461 $(W32GUI_H)
462WINDOW_H = $(SRC)/window.h \
463 $(DISPEXTERN_H)
7bbaaedd 464
aa2ee344 465$(BLD)/alloc.$(O) : \
7bbaaedd 466 $(SRC)/alloc.c \
6218196f 467 $(SRC)/buffer.h \
7bbaaedd 468 $(SRC)/puresize.h \
6218196f 469 $(SRC)/syssignal.h \
fd7a37d5 470 $(SRC)/w32.h \
94515237 471 $(NT_INC)/unistd.h \
0cae2cdb 472 $(GNU_LIB)/verify.h \
94515237
JB
473 $(BLOCKINPUT_H) \
474 $(CHARACTER_H) \
475 $(CONFIG_H) \
476 $(FRAME_H) \
477 $(INTERVALS_H) \
478 $(KEYBOARD_H) \
479 $(LISP_H) \
480 $(PROCESS_H) \
481 $(TERMHOOKS_H) \
482 $(WINDOW_H)
7bbaaedd 483
aa2ee344 484$(BLD)/atimer.$(O) : \
7bbaaedd 485 $(SRC)/atimer.c \
94515237
JB
486 $(SRC)/syssignal.h \
487 $(NT_INC)/sys/time.h \
488 $(NT_INC)/unistd.h \
489 $(ATIMER_H) \
490 $(BLOCKINPUT_H) \
0c1b4ae2 491 $(CONFIG_H) \
f90e08f5 492 $(LISP_H) \
94515237 493 $(SYSTIME_H)
7bbaaedd 494
f4b6ba46
EZ
495$(BLD)/bidi.$(O) : \
496 $(SRC)/bidi.c \
f4b6ba46 497 $(SRC)/buffer.h \
94515237
JB
498 $(CHARACTER_H) \
499 $(CONFIG_H) \
500 $(DISPEXTERN_H) \
501 $(LISP_H)
f4b6ba46 502
aa2ee344 503$(BLD)/buffer.$(O) : \
7bbaaedd 504 $(SRC)/buffer.c \
6218196f 505 $(SRC)/buffer.h \
6218196f 506 $(SRC)/commands.h \
7bbaaedd 507 $(SRC)/indent.h \
6218196f
JB
508 $(SRC)/keymap.h \
509 $(SRC)/region-cache.h \
94515237
JB
510 $(NT_INC)/sys/param.h \
511 $(NT_INC)/sys/stat.h \
512 $(NT_INC)/unistd.h \
513 $(GNU_LIB)/verify.h \
514 $(BLOCKINPUT_H) \
515 $(CHARACTER_H) \
516 $(CONFIG_H) \
517 $(FRAME_H) \
518 $(INTERVALS_H) \
519 $(KEYBOARD_H) \
520 $(LISP_H) \
521 $(WINDOW_H)
7bbaaedd 522
aa2ee344 523$(BLD)/bytecode.$(O) : \
7bbaaedd 524 $(SRC)/bytecode.c \
7bbaaedd 525 $(SRC)/buffer.h \
a63cf46f 526 $(SRC)/syntax.h \
94515237
JB
527 $(CHARACTER_H) \
528 $(CONFIG_H) \
529 $(LISP_H) \
530 $(WINDOW_H)
7bbaaedd 531
aa2ee344 532$(BLD)/callint.$(O) : \
7bbaaedd 533 $(SRC)/callint.c \
7bbaaedd
AI
534 $(SRC)/buffer.h \
535 $(SRC)/commands.h \
6218196f 536 $(SRC)/keymap.h \
94515237
JB
537 $(CHARACTER_H) \
538 $(CONFIG_H) \
539 $(KEYBOARD_H) \
540 $(LISP_H) \
541 $(WINDOW_H)
7bbaaedd 542
aa2ee344 543$(BLD)/callproc.$(O) : \
7bbaaedd 544 $(SRC)/callproc.c \
7bbaaedd 545 $(SRC)/buffer.h \
6218196f 546 $(SRC)/ccl.h \
6218196f
JB
547 $(SRC)/commands.h \
548 $(SRC)/composite.h \
549 $(SRC)/epaths.h \
7bbaaedd 550 $(SRC)/syssignal.h \
fd7a37d5 551 $(SRC)/w32.h \
94515237
JB
552 $(NT_INC)/sys/file.h \
553 $(NT_INC)/unistd.h \
554 $(BLOCKINPUT_H) \
555 $(CHARACTER_H) \
556 $(CODING_H) \
557 $(CONFIG_H) \
558 $(FRAME_H) \
559 $(LISP_H) \
560 $(PROCESS_H) \
561 $(SYSTTY_H) \
562 $(TERMHOOKS_H)
7bbaaedd 563
aa2ee344 564$(BLD)/casefiddle.$(O) : \
7bbaaedd 565 $(SRC)/casefiddle.c \
7bbaaedd
AI
566 $(SRC)/buffer.h \
567 $(SRC)/commands.h \
6218196f
JB
568 $(SRC)/composite.h \
569 $(SRC)/keymap.h \
94515237
JB
570 $(SRC)/syntax.h \
571 $(CHARACTER_H) \
572 $(CONFIG_H) \
573 $(LISP_H)
7bbaaedd 574
aa2ee344 575$(BLD)/casetab.$(O) : \
7bbaaedd 576 $(SRC)/casetab.c \
6218196f 577 $(SRC)/buffer.h \
94515237
JB
578 $(CHARACTER_H) \
579 $(CONFIG_H) \
580 $(LISP_H)
6218196f
JB
581
582$(BLD)/category.$(O) : \
583 $(SRC)/category.c \
6218196f
JB
584 $(SRC)/buffer.h \
585 $(SRC)/category.h \
94515237
JB
586 $(SRC)/keymap.h \
587 $(CHARACTER_H) \
588 $(CHARSET_H) \
589 $(CONFIG_H) \
590 $(LISP_H)
6218196f
JB
591
592$(BLD)/ccl.$(O) : \
593 $(SRC)/ccl.c \
6218196f 594 $(SRC)/ccl.h \
94515237
JB
595 $(CHARACTER_H) \
596 $(CHARSET_H) \
597 $(CODING_H) \
598 $(CONFIG_H) \
599 $(LISP_H)
6218196f 600
dd6ab82f
MB
601$(BLD)/character.$(O) : \
602 $(SRC)/character.c \
dd6ab82f 603 $(SRC)/buffer.h \
dd6ab82f 604 $(SRC)/composite.h \
94515237
JB
605 $(SRC)/disptab.h \
606 $(GNU_LIB)/intprops.h \
607 $(CHARACTER_H) \
608 $(CHARSET_H) \
609 $(CONFIG_H) \
610 $(LISP_H)
dd6ab82f 611
6218196f
JB
612$(BLD)/charset.$(O) : \
613 $(SRC)/charset.c \
6218196f 614 $(SRC)/buffer.h \
94515237
JB
615 $(SRC)/disptab.h \
616 $(NT_INC)/unistd.h \
617 $(CHARACTER_H) \
618 $(CHARSET_H) \
619 $(CODING_H) \
620 $(CONFIG_H) \
621 $(LISP_H)
7bbaaedd 622
dd6ab82f
MB
623$(BLD)/chartab.$(O) : \
624 $(SRC)/chartab.c \
fd7a37d5 625 $(SRC)/ccl.h \
94515237
JB
626 $(CHARACTER_H) \
627 $(CHARSET_H) \
628 $(CONFIG_H) \
629 $(LISP_H)
dd6ab82f 630
aa2ee344 631$(BLD)/cmds.$(O) : \
7bbaaedd 632 $(SRC)/cmds.c \
6218196f 633 $(SRC)/buffer.h \
7bbaaedd 634 $(SRC)/commands.h \
6218196f
JB
635 $(SRC)/keymap.h \
636 $(SRC)/syntax.h \
94515237
JB
637 $(CHARACTER_H) \
638 $(CONFIG_H) \
639 $(DISPEXTERN_H) \
640 $(FRAME_H) \
641 $(KEYBOARD_H) \
642 $(LISP_H) \
643 $(WINDOW_H)
6218196f
JB
644
645$(BLD)/coding.$(O) : \
646 $(SRC)/coding.c \
7bbaaedd 647 $(SRC)/buffer.h \
6218196f 648 $(SRC)/ccl.h \
6218196f 649 $(SRC)/composite.h \
94515237
JB
650 $(CHARACTER_H) \
651 $(CHARSET_H) \
652 $(CODING_H) \
653 $(CONFIG_H) \
654 $(FRAME_H) \
655 $(LISP_H) \
656 $(TERMHOOKS_H) \
657 $(WINDOW_H)
7bbaaedd 658
aa2ee344 659$(BLD)/composite.$(O) : \
7bbaaedd 660 $(SRC)/composite.c \
94515237
JB
661 $(SRC)/buffer.h \
662 $(CHARACTER_H) \
663 $(CODING_H) \
0c1b4ae2 664 $(CONFIG_H) \
94515237
JB
665 $(DISPEXTERN_H) \
666 $(FONT_H) \
667 $(FRAME_H) \
668 $(INTERVALS_H) \
f90e08f5 669 $(LISP_H) \
94515237
JB
670 $(TERMHOOKS_H) \
671 $(WINDOW_H)
7bbaaedd 672
aa2ee344 673$(BLD)/data.$(O) : \
7bbaaedd 674 $(SRC)/data.c \
7bbaaedd 675 $(SRC)/buffer.h \
6218196f 676 $(SRC)/puresize.h \
0254c6f7 677 $(SRC)/syssignal.h \
94515237
JB
678 $(GNU_LIB)/intprops.h \
679 $(CHARACTER_H) \
680 $(CONFIG_H) \
681 $(FONT_H) \
682 $(FRAME_H) \
683 $(KEYBOARD_H) \
684 $(LISP_H) \
685 $(TERMHOOKS_H)
7bbaaedd 686
aa2ee344 687$(BLD)/dired.$(O) : \
7bbaaedd 688 $(SRC)/dired.c \
7bbaaedd
AI
689 $(SRC)/buffer.h \
690 $(SRC)/commands.h \
6218196f 691 $(SRC)/regex.h \
94515237
JB
692 $(NT_INC)/pwd.h \
693 $(NT_INC)/sys/stat.h \
694 $(NT_INC)/unistd.h \
695 $(BLOCKINPUT_H) \
696 $(CHARACTER_H) \
697 $(CHARSET_H) \
698 $(CODING_H) \
699 $(CONFIG_H) \
700 $(DIR_H) \
701 $(FILEMODE_H) \
702 $(GRP_H) \
703 $(LISP_H) \
704 $(SYSTIME_H)
7bbaaedd 705
aa2ee344 706$(BLD)/dispnew.$(O) : \
7bbaaedd 707 $(SRC)/dispnew.c \
7bbaaedd 708 $(SRC)/buffer.h \
6218196f 709 $(SRC)/cm.h \
7bbaaedd
AI
710 $(SRC)/commands.h \
711 $(SRC)/disptab.h \
712 $(SRC)/indent.h \
6218196f 713 $(SRC)/syssignal.h \
6218196f 714 $(SRC)/termchar.h \
6218196f 715 $(SRC)/termopts.h \
94515237
JB
716 $(NT_INC)/unistd.h \
717 $(BLOCKINPUT_H) \
718 $(CHARACTER_H) \
719 $(CONFIG_H) \
720 $(DISPEXTERN_H) \
721 $(FRAME_H) \
722 $(INTERVALS_H) \
723 $(KEYBOARD_H) \
724 $(LISP_H) \
725 $(PROCESS_H) \
726 $(SYSTIME_H) \
727 $(TERMHOOKS_H) \
728 $(W32TERM_H) \
729 $(WINDOW_H)
7bbaaedd 730
aa2ee344 731$(BLD)/doc.$(O) : \
7bbaaedd 732 $(SRC)/doc.c \
7bbaaedd 733 $(SRC)/buffer.h \
94515237 734 $(SRC)/buildobj.h \
fd7a37d5 735 $(SRC)/keymap.h \
94515237
JB
736 $(NT_INC)/sys/file.h \
737 $(NT_INC)/unistd.h \
738 $(CHARACTER_H) \
739 $(CONFIG_H) \
740 $(KEYBOARD_H) \
741 $(LISP_H)
7bbaaedd 742
aa2ee344 743$(BLD)/doprnt.$(O) : \
7bbaaedd 744 $(SRC)/doprnt.c \
94515237
JB
745 $(NT_INC)/unistd.h \
746 $(CHARACTER_H) \
0c1b4ae2 747 $(CONFIG_H) \
94515237 748 $(LISP_H)
7bbaaedd 749
aa2ee344 750$(BLD)/editfns.$(O) : \
7bbaaedd 751 $(SRC)/editfns.c \
94515237
JB
752 $(SRC)/buffer.h \
753 $(NT_INC)/pwd.h \
754 $(NT_INC)/unistd.h \
755 $(GNU_LIB)/intprops.h \
756 $(GNU_LIB)/strftime.h \
757 $(GNU_LIB)/verify.h \
758 $(BLOCKINPUT_H) \
759 $(CHARACTER_H) \
760 $(CODING_H) \
0c1b4ae2 761 $(CONFIG_H) \
94515237
JB
762 $(FRAME_H) \
763 $(INTERVALS_H) \
f90e08f5 764 $(LISP_H) \
94515237
JB
765 $(SYSTIME_H) \
766 $(WINDOW_H)
7bbaaedd 767
aa2ee344 768$(BLD)/emacs.$(O) : \
7bbaaedd 769 $(SRC)/emacs.c \
6218196f 770 $(SRC)/buffer.h \
7bbaaedd 771 $(SRC)/commands.h \
94515237 772 $(SRC)/gnutls.h \
6218196f 773 $(SRC)/keymap.h \
7bbaaedd 774 $(SRC)/syssignal.h \
f2b726e6 775 $(SRC)/unexec.h \
fd7a37d5 776 $(SRC)/w32.h \
b6cc2ad0 777 $(SRC)/w32heap.h \
94515237
JB
778 $(NT_INC)/sys/file.h \
779 $(NT_INC)/unistd.h \
780 $(BLOCKINPUT_H) \
781 $(CONFIG_H) \
782 $(FRAME_H) \
783 $(INTERVALS_H) \
784 $(KEYBOARD_H) \
785 $(LISP_H) \
786 $(PROCESS_H) \
787 $(SYSTTY_H) \
788 $(TERMHOOKS_H) \
789 $(WINDOW_H)
7bbaaedd 790
aa2ee344 791$(BLD)/eval.$(O) : \
7bbaaedd 792 $(SRC)/eval.c \
7bbaaedd 793 $(SRC)/commands.h \
94515237
JB
794 $(BLOCKINPUT_H) \
795 $(CONFIG_H) \
796 $(DISPEXTERN_H) \
797 $(FRAME_H) \
798 $(KEYBOARD_H) \
799 $(LISP_H)
7bbaaedd 800
aa2ee344 801$(BLD)/fileio.$(O) : \
7bbaaedd 802 $(SRC)/fileio.c \
6218196f 803 $(SRC)/buffer.h \
6218196f 804 $(SRC)/commands.h \
94515237
JB
805 $(NT_INC)/pwd.h \
806 $(NT_INC)/sys/stat.h \
807 $(NT_INC)/unistd.h \
808 $(BLOCKINPUT_H) \
809 $(CHARACTER_H) \
810 $(CODING_H) \
811 $(CONFIG_H) \
812 $(DISPEXTERN_H) \
813 $(FRAME_H) \
814 $(INTERVALS_H) \
815 $(LISP_H) \
816 $(SYSTIME_H) \
817 $(WINDOW_H)
7bbaaedd 818
aa2ee344 819$(BLD)/filelock.$(O) : \
7bbaaedd 820 $(SRC)/filelock.c \
94515237
JB
821 $(SRC)/buffer.h \
822 $(NT_INC)/pwd.h \
823 $(NT_INC)/sys/file.h \
824 $(NT_INC)/sys/stat.h \
825 $(NT_INC)/unistd.h \
826 $(CHARACTER_H) \
827 $(CODING_H) \
0c1b4ae2 828 $(CONFIG_H) \
f90e08f5 829 $(LISP_H) \
94515237 830 $(SYSTIME_H)
7bbaaedd 831
aa2ee344 832$(BLD)/firstfile.$(O) : \
7bbaaedd 833 $(SRC)/firstfile.c \
0c1b4ae2 834 $(CONFIG_H)
7bbaaedd 835
aa2ee344 836$(BLD)/floatfns.$(O) : \
7bbaaedd 837 $(SRC)/floatfns.c \
94515237 838 $(SRC)/syssignal.h \
0c1b4ae2 839 $(CONFIG_H) \
94515237 840 $(LISP_H)
7bbaaedd 841
aa2ee344 842$(BLD)/fns.$(O) : \
7bbaaedd 843 $(SRC)/fns.c \
7bbaaedd 844 $(SRC)/buffer.h \
6218196f 845 $(SRC)/commands.h \
6218196f 846 $(SRC)/keymap.h \
94515237
JB
847 $(NT_INC)/unistd.h \
848 $(GNU_LIB)/intprops.h \
849 $(BLOCKINPUT_H) \
850 $(CHARACTER_H) \
851 $(CODING_H) \
852 $(CONFIG_H) \
853 $(FRAME_H) \
854 $(INTERVALS_H) \
855 $(KEYBOARD_H) \
856 $(LANGINFO_H) \
857 $(LISP_H) \
858 $(MD5_H) \
859 $(SHA1_H) \
860 $(SHA256_H) \
861 $(SHA512_H) \
862 $(WINDOW_H)
6218196f 863
223250a6
JR
864$(BLD)/font.$(O) : \
865 $(SRC)/font.c \
fd7a37d5 866 $(SRC)/buffer.h \
fd7a37d5 867 $(SRC)/composite.h \
fd7a37d5 868 $(SRC)/fontset.h \
94515237
JB
869 $(CHARACTER_H) \
870 $(CHARSET_H) \
871 $(CONFIG_H) \
872 $(DISPEXTERN_H) \
873 $(FONT_H) \
874 $(FRAME_H) \
875 $(LISP_H) \
876 $(W32TERM_H) \
877 $(WINDOW_H)
223250a6 878
6218196f
JB
879$(BLD)/fontset.$(O) : \
880 $(SRC)/fontset.c \
6218196f
JB
881 $(SRC)/buffer.h \
882 $(SRC)/ccl.h \
6218196f 883 $(SRC)/fontset.h \
94515237
JB
884 $(BLOCKINPUT_H) \
885 $(CHARACTER_H) \
886 $(CHARSET_H) \
887 $(CONFIG_H) \
888 $(DISPEXTERN_H) \
889 $(FONT_H) \
890 $(FRAME_H) \
891 $(INTERVALS_H) \
892 $(KEYBOARD_H) \
893 $(LISP_H) \
894 $(TERMHOOKS_H) \
895 $(W32TERM_H) \
896 $(WINDOW_H)
7bbaaedd 897
aa2ee344 898$(BLD)/frame.$(O) : \
7bbaaedd 899 $(SRC)/frame.c \
7bbaaedd
AI
900 $(SRC)/buffer.h \
901 $(SRC)/commands.h \
6218196f 902 $(SRC)/fontset.h \
0254c6f7 903 $(SRC)/termchar.h \
94515237
JB
904 $(BLOCKINPUT_H) \
905 $(CHARACTER_H) \
906 $(CONFIG_H) \
907 $(DISPEXTERN_H) \
908 $(FONT_H) \
909 $(FRAME_H) \
910 $(KEYBOARD_H) \
911 $(LISP_H) \
912 $(TERMHOOKS_H) \
913 $(W32TERM_H) \
914 $(WINDOW_H)
7bbaaedd 915
eee30217
JB
916$(BLD)/fringe.$(O) : \
917 $(SRC)/fringe.c \
94515237
JB
918 $(SRC)/buffer.h \
919 $(BLOCKINPUT_H) \
0c1b4ae2 920 $(CONFIG_H) \
94515237
JB
921 $(DISPEXTERN_H) \
922 $(FRAME_H) \
f90e08f5 923 $(LISP_H) \
94515237
JB
924 $(TERMHOOKS_H) \
925 $(WINDOW_H)
eee30217 926
aa2ee344 927$(BLD)/gmalloc.$(O) : \
7bbaaedd 928 $(SRC)/gmalloc.c \
94515237
JB
929 $(SRC)/getpagesize.h \
930 $(NT_INC)/unistd.h \
931 $(CONFIG_H)
7bbaaedd 932
e061a11b 933$(BLD)/gnutls.$(O) : \
e061a11b 934 $(SRC)/gnutls.c \
94515237 935 $(SRC)/w32.h \
e061a11b 936 $(CONFIG_H) \
ea51cceb 937 $(LISP_H) \
94515237 938 $(PROCESS_H)
e061a11b 939
fd7a37d5 940$(BLD)/image.$(O) : \
25abe3d4 941 $(SRC)/image.c \
25abe3d4 942 $(SRC)/epaths.h \
d2127135 943 $(SRC)/w32.h \
94515237
JB
944 $(NT_INC)/unistd.h \
945 $(BLOCKINPUT_H) \
946 $(CHARACTER_H) \
947 $(CODING_H) \
948 $(CONFIG_H) \
949 $(DISPEXTERN_H) \
950 $(FONT_H) \
951 $(FRAME_H) \
952 $(LISP_H) \
953 $(SYSTIME_H) \
954 $(TERMHOOKS_H) \
955 $(W32TERM_H) \
956 $(WINDOW_H)
25abe3d4 957
aa2ee344 958$(BLD)/indent.$(O) : \
7bbaaedd 959 $(SRC)/indent.c \
7bbaaedd 960 $(SRC)/buffer.h \
6218196f 961 $(SRC)/category.h \
6218196f 962 $(SRC)/composite.h \
6218196f 963 $(SRC)/disptab.h \
6218196f 964 $(SRC)/indent.h \
6218196f 965 $(SRC)/region-cache.h \
7bbaaedd
AI
966 $(SRC)/termchar.h \
967 $(SRC)/termopts.h \
94515237
JB
968 $(CHARACTER_H) \
969 $(CONFIG_H) \
970 $(DISPEXTERN_H) \
971 $(FRAME_H) \
972 $(INTERVALS_H) \
973 $(KEYBOARD_H) \
974 $(LISP_H) \
975 $(WINDOW_H)
7bbaaedd 976
aa2ee344 977$(BLD)/insdel.$(O) : \
7bbaaedd 978 $(SRC)/insdel.c \
6218196f 979 $(SRC)/buffer.h \
6218196f 980 $(SRC)/region-cache.h \
94515237
JB
981 $(GNU_LIB)/intprops.h \
982 $(BLOCKINPUT_H) \
983 $(CHARACTER_H) \
984 $(CONFIG_H) \
985 $(INTERVALS_H) \
986 $(LISP_H) \
987 $(WINDOW_H)
7bbaaedd 988
aa2ee344 989$(BLD)/intervals.$(O) : \
7bbaaedd 990 $(SRC)/intervals.c \
6218196f 991 $(SRC)/buffer.h \
6218196f
JB
992 $(SRC)/keymap.h \
993 $(SRC)/puresize.h \
94515237
JB
994 $(GNU_LIB)/intprops.h \
995 $(CONFIG_H) \
996 $(INTERVALS_H) \
997 $(KEYBOARD_H) \
998 $(LISP_H)
7bbaaedd 999
aa2ee344 1000$(BLD)/keyboard.$(O) : \
7bbaaedd 1001 $(SRC)/keyboard.c \
7bbaaedd 1002 $(SRC)/buffer.h \
6218196f 1003 $(SRC)/commands.h \
6218196f 1004 $(SRC)/disptab.h \
6218196f
JB
1005 $(SRC)/keymap.h \
1006 $(SRC)/macros.h \
1007 $(SRC)/puresize.h \
1008 $(SRC)/syntax.h \
7bbaaedd 1009 $(SRC)/syssignal.h \
6218196f 1010 $(SRC)/termchar.h \
6218196f 1011 $(SRC)/termopts.h \
94515237
JB
1012 $(NT_INC)/sys/ioctl.h \
1013 $(NT_INC)/unistd.h \
1014 $(ATIMER_H) \
1015 $(BLOCKINPUT_H) \
1016 $(CHARACTER_H) \
1017 $(CONFIG_H) \
1018 $(DISPEXTERN_H) \
1019 $(FRAME_H) \
1020 $(INTERVALS_H) \
1021 $(KEYBOARD_H) \
1022 $(LISP_H) \
1023 $(PROCESS_H) \
1024 $(SYSTIME_H) \
1025 $(TERMHOOKS_H) \
1026 $(W32TERM_H) \
1027 $(WINDOW_H)
7bbaaedd 1028
aa2ee344 1029$(BLD)/keymap.$(O) : \
7bbaaedd 1030 $(SRC)/keymap.c \
7bbaaedd 1031 $(SRC)/buffer.h \
6218196f 1032 $(SRC)/commands.h \
6218196f
JB
1033 $(SRC)/keymap.h \
1034 $(SRC)/puresize.h \
94515237
JB
1035 $(BLOCKINPUT_H) \
1036 $(CHARACTER_H) \
1037 $(CHARSET_H) \
1038 $(CONFIG_H) \
1039 $(FRAME_H) \
1040 $(INTERVALS_H) \
1041 $(KEYBOARD_H) \
1042 $(LISP_H) \
1043 $(TERMHOOKS_H) \
1044 $(WINDOW_H)
7bbaaedd 1045
aa2ee344 1046$(BLD)/lastfile.$(O) : \
7bbaaedd 1047 $(SRC)/lastfile.c \
0c1b4ae2 1048 $(CONFIG_H)
7bbaaedd 1049
aa2ee344 1050$(BLD)/lread.$(O) : \
7bbaaedd 1051 $(SRC)/lread.c \
6218196f 1052 $(SRC)/buffer.h \
7bbaaedd 1053 $(SRC)/commands.h \
fd7a37d5 1054 $(SRC)/epaths.h \
94515237
JB
1055 $(NT_INC)/sys/file.h \
1056 $(NT_INC)/sys/stat.h \
1057 $(NT_INC)/unistd.h \
1058 $(BLOCKINPUT_H) \
1059 $(CHARACTER_H) \
1060 $(CHARSET_H) \
1061 $(CODING_H) \
1062 $(CONFIG_H) \
1063 $(FRAME_H) \
1064 $(INTERVALS_H) \
1065 $(KEYBOARD_H) \
1066 $(LISP_H) \
1067 $(TERMHOOKS_H)
7bbaaedd 1068
aa2ee344 1069$(BLD)/macros.$(O) : \
7bbaaedd 1070 $(SRC)/macros.c \
7bbaaedd 1071 $(SRC)/buffer.h \
6218196f 1072 $(SRC)/commands.h \
6218196f 1073 $(SRC)/macros.h \
94515237
JB
1074 $(CONFIG_H) \
1075 $(KEYBOARD_H) \
1076 $(LISP_H) \
1077 $(WINDOW_H)
7bbaaedd 1078
aa2ee344 1079$(BLD)/marker.$(O) : \
7bbaaedd 1080 $(SRC)/marker.c \
6218196f 1081 $(SRC)/buffer.h \
94515237
JB
1082 $(CHARACTER_H) \
1083 $(CONFIG_H) \
1084 $(LISP_H)
7bbaaedd 1085
a2b7437b 1086$(BLD)/menu.$(O) : \
fd7a37d5 1087 $(SRC)/menu.c \
94515237
JB
1088 $(SRC)/keymap.h \
1089 $(BLOCKINPUT_H) \
fd7a37d5 1090 $(CONFIG_H) \
94515237
JB
1091 $(DISPEXTERN_H) \
1092 $(FRAME_H) \
1093 $(KEYBOARD_H) \
f90e08f5 1094 $(LISP_H) \
94515237
JB
1095 $(MENU_H) \
1096 $(TERMHOOKS_H) \
1097 $(W32TERM_H) \
1098 $(WINDOW_H)
a2b7437b 1099
aa2ee344 1100$(BLD)/minibuf.$(O) : \
7bbaaedd 1101 $(SRC)/minibuf.c \
7bbaaedd 1102 $(SRC)/buffer.h \
6218196f 1103 $(SRC)/commands.h \
6218196f
JB
1104 $(SRC)/keymap.h \
1105 $(SRC)/syntax.h \
94515237
JB
1106 $(CONFIG_H) \
1107 $(DISPEXTERN_H) \
1108 $(FRAME_H) \
1109 $(INTERVALS_H) \
1110 $(KEYBOARD_H) \
1111 $(LISP_H) \
1112 $(TERMHOOKS_H) \
1113 $(WINDOW_H)
7bbaaedd 1114
aa2ee344 1115$(BLD)/w32.$(O) : \
7bbaaedd 1116 $(SRC)/w32.c \
94515237
JB
1117 $(SRC)/ndir.h \
1118 $(SRC)/w32.h \
1119 $(SRC)/w32heap.h \
1120 $(NT_INC)/pwd.h \
1121 $(NT_INC)/sys/file.h \
1122 $(NT_INC)/sys/time.h \
1123 $(GNU_LIB)/allocator.h \
1124 $(CAREADLINKAT_H) \
1125 $(CODING_H) \
0c1b4ae2 1126 $(CONFIG_H) \
94515237
JB
1127 $(DISPEXTERN_H) \
1128 $(GRP_H) \
f90e08f5 1129 $(LISP_H) \
f2b726e6 1130 $(PROCESS_H) \
94515237
JB
1131 $(SOCKET_H) \
1132 $(SYSTIME_H)
7bbaaedd 1133
aa2ee344 1134$(BLD)/w32heap.$(O) : \
7bbaaedd 1135 $(SRC)/w32heap.c \
94515237 1136 $(SRC)/w32heap.h \
0c1b4ae2 1137 $(CONFIG_H) \
94515237 1138 $(LISP_H)
7bbaaedd 1139
aa2ee344 1140$(BLD)/w32inevt.$(O) : \
7bbaaedd 1141 $(SRC)/w32inevt.c \
94515237
JB
1142 $(SRC)/w32heap.h \
1143 $(BLOCKINPUT_H) \
0c1b4ae2 1144 $(CONFIG_H) \
94515237
JB
1145 $(DISPEXTERN_H) \
1146 $(FRAME_H) \
1147 $(KEYBOARD_H) \
f90e08f5 1148 $(LISP_H) \
94515237
JB
1149 $(TERMHOOKS_H) \
1150 $(W32TERM_H)
7bbaaedd 1151
aa2ee344 1152$(BLD)/w32proc.$(O) : \
7bbaaedd 1153 $(SRC)/w32proc.c \
6218196f 1154 $(SRC)/syssignal.h \
6218196f 1155 $(SRC)/syswait.h \
7bbaaedd
AI
1156 $(SRC)/w32.h \
1157 $(SRC)/w32heap.h \
94515237
JB
1158 $(NT_INC)/nl_types.h \
1159 $(NT_INC)/sys/file.h \
1160 $(CODING_H) \
1161 $(CONFIG_H) \
1162 $(DISPEXTERN_H) \
1163 $(LANGINFO_H) \
1164 $(LISP_H) \
1165 $(PROCESS_H) \
1166 $(SYSTIME_H) \
1167 $(W32TERM_H)
7bbaaedd 1168
aa2ee344 1169$(BLD)/w32console.$(O) : \
7bbaaedd 1170 $(SRC)/w32console.c \
7bbaaedd 1171 $(SRC)/disptab.h \
fd7a37d5 1172 $(SRC)/termchar.h \
94515237
JB
1173 $(SRC)/w32inevt.h \
1174 $(CHARACTER_H) \
1175 $(CODING_H) \
1176 $(CONFIG_H) \
1177 $(DISPEXTERN_H) \
1178 $(FRAME_H) \
1179 $(LISP_H) \
1180 $(TERMHOOKS_H)
7bbaaedd 1181
aa2ee344 1182$(BLD)/print.$(O) : \
7bbaaedd 1183 $(SRC)/print.c \
94515237
JB
1184 $(SRC)/buffer.h \
1185 $(SRC)/termchar.h \
1186 $(BLOCKINPUT_H) \
1187 $(CHARACTER_H) \
1188 $(CHARSET_H) \
0c1b4ae2 1189 $(CONFIG_H) \
94515237
JB
1190 $(DISPEXTERN_H) \
1191 $(FONT_H) \
1192 $(FRAME_H) \
1193 $(FTOASTR_H) \
1194 $(INTERVALS_H) \
1195 $(KEYBOARD_H) \
f90e08f5 1196 $(LISP_H) \
f2b726e6 1197 $(PROCESS_H) \
94515237
JB
1198 $(TERMHOOKS_H) \
1199 $(WINDOW_H)
7bbaaedd 1200
aa2ee344 1201$(BLD)/process.$(O) : \
7bbaaedd 1202 $(SRC)/process.c \
7bbaaedd 1203 $(SRC)/buffer.h \
7bbaaedd 1204 $(SRC)/commands.h \
6218196f 1205 $(SRC)/composite.h \
94515237 1206 $(SRC)/gnutls.h \
6218196f 1207 $(SRC)/sysselect.h \
7bbaaedd 1208 $(SRC)/syssignal.h \
6218196f 1209 $(SRC)/syswait.h \
7bbaaedd 1210 $(SRC)/termopts.h \
94515237
JB
1211 $(NT_INC)/arpa/inet.h \
1212 $(NT_INC)/netdb.h \
1213 $(NT_INC)/netinet/in.h \
1214 $(NT_INC)/sys/file.h \
1215 $(NT_INC)/sys/ioctl.h \
1216 $(NT_INC)/sys/stat.h \
1217 $(NT_INC)/unistd.h \
1218 $(ATIMER_H) \
1219 $(BLOCKINPUT_H) \
1220 $(CHARACTER_H) \
1221 $(CODING_H) \
1222 $(CONFIG_H) \
1223 $(DISPEXTERN_H) \
1224 $(FRAME_H) \
1225 $(KEYBOARD_H) \
1226 $(LISP_H) \
1227 $(PROCESS_H) \
1228 $(SOCKET_H) \
1229 $(SYSTIME_H) \
1230 $(SYSTTY_H) \
1231 $(TERMHOOKS_H) \
1232 $(WINDOW_H)
7bbaaedd 1233
aa2ee344 1234$(BLD)/ralloc.$(O) : \
7bbaaedd 1235 $(SRC)/ralloc.c \
fd7a37d5 1236 $(SRC)/getpagesize.h \
94515237
JB
1237 $(NT_INC)/unistd.h \
1238 $(BLOCKINPUT_H) \
1239 $(CONFIG_H) \
1240 $(LISP_H)
7bbaaedd 1241
aa2ee344 1242$(BLD)/regex.$(O) : \
7bbaaedd 1243 $(SRC)/regex.c \
7bbaaedd 1244 $(SRC)/buffer.h \
6218196f 1245 $(SRC)/category.h \
6218196f 1246 $(SRC)/regex.h \
94515237
JB
1247 $(SRC)/syntax.h \
1248 $(NT_INC)/unistd.h \
1249 $(CHARACTER_H) \
1250 $(CONFIG_H) \
1251 $(LISP_H)
7bbaaedd 1252
aa2ee344 1253$(BLD)/region-cache.$(O) : \
7bbaaedd 1254 $(SRC)/region-cache.c \
7bbaaedd 1255 $(SRC)/buffer.h \
94515237
JB
1256 $(SRC)/region-cache.h \
1257 $(CONFIG_H) \
1258 $(LISP_H)
7bbaaedd 1259
aa2ee344 1260$(BLD)/scroll.$(O) : \
7bbaaedd 1261 $(SRC)/scroll.c \
94515237 1262 $(SRC)/termchar.h \
0c1b4ae2 1263 $(CONFIG_H) \
94515237
JB
1264 $(DISPEXTERN_H) \
1265 $(FRAME_H) \
1266 $(KEYBOARD_H) \
f90e08f5 1267 $(LISP_H) \
94515237
JB
1268 $(TERMHOOKS_H) \
1269 $(WINDOW_H)
7bbaaedd 1270
aa2ee344 1271$(BLD)/search.$(O) : \
7bbaaedd 1272 $(SRC)/search.c \
7bbaaedd 1273 $(SRC)/buffer.h \
6218196f 1274 $(SRC)/category.h \
7bbaaedd 1275 $(SRC)/commands.h \
7bbaaedd
AI
1276 $(SRC)/regex.h \
1277 $(SRC)/region-cache.h \
6218196f 1278 $(SRC)/syntax.h \
94515237
JB
1279 $(BLOCKINPUT_H) \
1280 $(CHARACTER_H) \
1281 $(CHARSET_H) \
1282 $(CONFIG_H) \
1283 $(INTERVALS_H) \
1284 $(LISP_H)
7bbaaedd 1285
f60ae425
BK
1286$(BLD)/sound.$(O) : \
1287 $(SRC)/sound.c \
fd7a37d5 1288 $(SRC)/syssignal.h \
94515237
JB
1289 $(NT_INC)/unistd.h \
1290 $(ATIMER_H) \
1291 $(CONFIG_H) \
1292 $(DISPEXTERN_H) \
1293 $(LISP_H)
f60ae425 1294
aa2ee344 1295$(BLD)/syntax.$(O) : \
7bbaaedd 1296 $(SRC)/syntax.c \
7bbaaedd 1297 $(SRC)/buffer.h \
6218196f 1298 $(SRC)/category.h \
6218196f 1299 $(SRC)/commands.h \
6218196f 1300 $(SRC)/keymap.h \
fd7a37d5 1301 $(SRC)/regex.h \
7bbaaedd 1302 $(SRC)/syntax.h \
94515237
JB
1303 $(CHARACTER_H) \
1304 $(CONFIG_H) \
1305 $(INTERVALS_H) \
1306 $(LISP_H)
7bbaaedd 1307
aa2ee344 1308$(BLD)/sysdep.$(O) : \
7bbaaedd 1309 $(SRC)/sysdep.c \
0254c6f7 1310 $(SRC)/cm.h \
a583bbef 1311 $(SRC)/sysselect.h \
6218196f 1312 $(SRC)/syssignal.h \
7bbaaedd 1313 $(SRC)/syswait.h \
7bbaaedd
AI
1314 $(SRC)/termchar.h \
1315 $(SRC)/termopts.h \
94515237
JB
1316 $(NT_INC)/netdb.h \
1317 $(NT_INC)/pwd.h \
1318 $(NT_INC)/sys/file.h \
1319 $(NT_INC)/sys/stat.h \
1320 $(NT_INC)/unistd.h \
1321 $(GNU_LIB)/allocator.h \
1322 $(GNU_LIB)/ignore-value.h \
1323 $(BLOCKINPUT_H) \
1324 $(CAREADLINKAT_H) \
1325 $(CONFIG_H) \
1326 $(DISPEXTERN_H) \
1327 $(FRAME_H) \
1328 $(GRP_H) \
1329 $(KEYBOARD_H) \
1330 $(LISP_H) \
1331 $(PROCESS_H) \
1332 $(SOCKET_H) \
1333 $(SYSTIME_H) \
1334 $(SYSTTY_H) \
1335 $(TERMHOOKS_H) \
1336 $(WINDOW_H)
7bbaaedd 1337
aa2ee344 1338$(BLD)/term.$(O) : \
7bbaaedd 1339 $(SRC)/term.c \
fd7a37d5 1340 $(SRC)/buffer.h \
7bbaaedd 1341 $(SRC)/cm.h \
fd7a37d5 1342 $(SRC)/composite.h \
6218196f 1343 $(SRC)/disptab.h \
6218196f 1344 $(SRC)/keymap.h \
fd7a37d5 1345 $(SRC)/syssignal.h \
6218196f 1346 $(SRC)/termchar.h \
6218196f 1347 $(SRC)/termopts.h \
7ef4b50c 1348 $(SRC)/tparam.h \
94515237
JB
1349 $(NT_INC)/sys/file.h \
1350 $(NT_INC)/unistd.h \
1351 $(BLOCKINPUT_H) \
1352 $(CHARACTER_H) \
1353 $(CHARSET_H) \
1354 $(CODING_H) \
1355 $(CONFIG_H) \
1356 $(DISPEXTERN_H) \
1357 $(FRAME_H) \
1358 $(INTERVALS_H) \
1359 $(KEYBOARD_H) \
1360 $(LISP_H) \
1361 $(SYSTTY_H) \
1362 $(TERMHOOKS_H) \
1363 $(WINDOW_H)
7bbaaedd 1364
0254c6f7
JR
1365$(BLD)/terminal.$(O) : \
1366 $(SRC)/terminal.c \
94515237
JB
1367 $(SRC)/termchar.h \
1368 $(CHARSET_H) \
1369 $(CODING_H) \
0c1b4ae2 1370 $(CONFIG_H) \
94515237
JB
1371 $(FRAME_H) \
1372 $(KEYBOARD_H) \
f90e08f5 1373 $(LISP_H) \
94515237 1374 $(TERMHOOKS_H)
0254c6f7 1375
aa2ee344 1376$(BLD)/textprop.$(O) : \
7bbaaedd 1377 $(SRC)/textprop.c \
94515237 1378 $(SRC)/buffer.h \
0c1b4ae2 1379 $(CONFIG_H) \
94515237 1380 $(INTERVALS_H) \
f90e08f5 1381 $(LISP_H) \
94515237 1382 $(WINDOW_H)
7bbaaedd 1383
aa2ee344 1384$(BLD)/tparam.$(O) : \
7bbaaedd 1385 $(SRC)/tparam.c \
94515237 1386 $(SRC)/tparam.h \
5e13f9d3 1387 $(CONFIG_H) \
94515237 1388 $(LISP_H)
7bbaaedd 1389
aa2ee344 1390$(BLD)/undo.$(O) : \
7bbaaedd 1391 $(SRC)/undo.c \
7bbaaedd 1392 $(SRC)/buffer.h \
fd7a37d5 1393 $(SRC)/commands.h \
94515237
JB
1394 $(CONFIG_H) \
1395 $(LISP_H) \
1396 $(WINDOW_H)
7bbaaedd 1397
aa2ee344 1398$(BLD)/unexw32.$(O) : \
7bbaaedd 1399 $(SRC)/unexw32.c \
f2b726e6 1400 $(SRC)/unexec.h \
94515237
JB
1401 $(SRC)/w32heap.h \
1402 $(CONFIG_H)
7bbaaedd 1403
aa2ee344 1404$(BLD)/vm-limit.$(O) : \
7bbaaedd 1405 $(SRC)/vm-limit.c \
94515237 1406 $(SRC)/mem-limits.h \
0c1b4ae2 1407 $(CONFIG_H) \
94515237 1408 $(LISP_H)
7bbaaedd 1409
aa2ee344 1410$(BLD)/window.$(O) : \
7bbaaedd 1411 $(SRC)/window.c \
7bbaaedd 1412 $(SRC)/buffer.h \
7bbaaedd 1413 $(SRC)/commands.h \
7bbaaedd 1414 $(SRC)/disptab.h \
6218196f 1415 $(SRC)/indent.h \
6218196f 1416 $(SRC)/keymap.h \
6218196f 1417 $(SRC)/termchar.h \
94515237
JB
1418 $(BLOCKINPUT_H) \
1419 $(CONFIG_H) \
1420 $(DISPEXTERN_H) \
1421 $(FRAME_H) \
1422 $(INTERVALS_H) \
1423 $(KEYBOARD_H) \
1424 $(LISP_H) \
1425 $(TERMHOOKS_H) \
1426 $(W32TERM_H) \
1427 $(WINDOW_H)
7bbaaedd 1428
aa2ee344 1429$(BLD)/xdisp.$(O) : \
7bbaaedd 1430 $(SRC)/xdisp.c \
7bbaaedd 1431 $(SRC)/buffer.h \
7bbaaedd 1432 $(SRC)/commands.h \
7bbaaedd 1433 $(SRC)/disptab.h \
6218196f 1434 $(SRC)/fontset.h \
6218196f 1435 $(SRC)/indent.h \
57cb6dbe 1436 $(SRC)/keymap.h \
6218196f 1437 $(SRC)/macros.h \
6218196f
JB
1438 $(SRC)/region-cache.h \
1439 $(SRC)/termchar.h \
da7e2be6 1440 $(SRC)/termopts.h \
94515237
JB
1441 $(BLOCKINPUT_H) \
1442 $(CHARACTER_H) \
1443 $(CHARSET_H) \
1444 $(CODING_H) \
1445 $(CONFIG_H) \
1446 $(DISPEXTERN_H) \
1447 $(FONT_H) \
1448 $(FRAME_H) \
1449 $(INTERVALS_H) \
1450 $(KEYBOARD_H) \
1451 $(LISP_H) \
1452 $(PROCESS_H) \
1453 $(TERMHOOKS_H) \
1454 $(W32TERM_H) \
1455 $(WINDOW_H)
7bbaaedd 1456
fd7a37d5 1457$(BLD)/xfaces.$(O) : \
6218196f 1458 $(SRC)/xfaces.c \
7bbaaedd 1459 $(SRC)/buffer.h \
6218196f 1460 $(SRC)/fontset.h \
0254c6f7 1461 $(SRC)/termchar.h \
94515237
JB
1462 $(NT_INC)/sys/stat.h \
1463 $(BLOCKINPUT_H) \
1464 $(CHARACTER_H) \
1465 $(CHARSET_H) \
1466 $(CONFIG_H) \
1467 $(DISPEXTERN_H) \
1468 $(FONT_H) \
1469 $(FRAME_H) \
1470 $(INTERVALS_H) \
1471 $(KEYBOARD_H) \
1472 $(LISP_H) \
1473 $(TERMHOOKS_H) \
1474 $(W32TERM_H) \
1475 $(WINDOW_H)
7bbaaedd 1476
fd7a37d5 1477$(BLD)/w32fns.$(O) : \
6218196f 1478 $(SRC)/w32fns.c \
7bbaaedd 1479 $(SRC)/buffer.h \
6218196f 1480 $(SRC)/ccl.h \
7bbaaedd 1481 $(SRC)/epaths.h \
6218196f 1482 $(SRC)/fontset.h \
ee0a16cf 1483 $(SRC)/w32.h \
fd7a37d5 1484 $(SRC)/w32font.h \
7bbaaedd 1485 $(SRC)/w32heap.h \
94515237
JB
1486 $(BLOCKINPUT_H) \
1487 $(CHARACTER_H) \
1488 $(CHARSET_H) \
1489 $(CODING_H) \
1490 $(CONFIG_H) \
1491 $(DISPEXTERN_H) \
1492 $(FONT_H) \
1493 $(FRAME_H) \
1494 $(INTERVALS_H) \
1495 $(KEYBOARD_H) \
1496 $(LISP_H) \
1497 $(SYSTIME_H) \
1498 $(TERMHOOKS_H) \
1499 $(W32TERM_H) \
1500 $(WINDOW_H)
7bbaaedd 1501
fd7a37d5 1502$(BLD)/w32menu.$(O) : \
6218196f 1503 $(SRC)/w32menu.c \
7bbaaedd 1504 $(SRC)/buffer.h \
6218196f 1505 $(SRC)/keymap.h \
94515237
JB
1506 $(BLOCKINPUT_H) \
1507 $(CHARSET_H) \
1508 $(CODING_H) \
1509 $(CONFIG_H) \
1510 $(DISPEXTERN_H) \
1511 $(FRAME_H) \
1512 $(KEYBOARD_H) \
1513 $(LISP_H) \
1514 $(MENU_H) \
1515 $(TERMHOOKS_H) \
1516 $(W32TERM_H) \
1517 $(WINDOW_H)
7bbaaedd 1518
fd7a37d5 1519$(BLD)/w32term.$(O) : \
6218196f 1520 $(SRC)/w32term.c \
6218196f
JB
1521 $(SRC)/buffer.h \
1522 $(SRC)/ccl.h \
7bbaaedd 1523 $(SRC)/disptab.h \
6218196f 1524 $(SRC)/fontset.h \
6218196f 1525 $(SRC)/keymap.h \
6218196f 1526 $(SRC)/termchar.h \
6218196f 1527 $(SRC)/termopts.h \
fd7a37d5 1528 $(SRC)/w32font.h \
6218196f 1529 $(SRC)/w32heap.h \
94515237
JB
1530 $(NT_INC)/sys/stat.h \
1531 $(ATIMER_H) \
1532 $(BLOCKINPUT_H) \
1533 $(CHARACTER_H) \
1534 $(CHARSET_H) \
1535 $(CODING_H) \
1536 $(CONFIG_H) \
1537 $(DISPEXTERN_H) \
1538 $(FONT_H) \
1539 $(FRAME_H) \
1540 $(INTERVALS_H) \
1541 $(KEYBOARD_H) \
1542 $(LISP_H) \
1543 $(PROCESS_H) \
1544 $(SYSTIME_H) \
1545 $(SYSTTY_H) \
1546 $(TERMHOOKS_H) \
1547 $(W32TERM_H) \
1548 $(WINDOW_H)
7bbaaedd 1549
fd7a37d5 1550$(BLD)/w32select.$(O) : \
6218196f 1551 $(SRC)/w32select.c \
6218196f 1552 $(SRC)/composite.h \
b6cc2ad0 1553 $(SRC)/w32heap.h \
94515237
JB
1554 $(BLOCKINPUT_H) \
1555 $(CHARSET_H) \
1556 $(CODING_H) \
1557 $(CONFIG_H) \
1558 $(LISP_H) \
1559 $(W32TERM_H)
7bbaaedd 1560
fd7a37d5 1561$(BLD)/w32reg.$(O) : \
6218196f 1562 $(SRC)/w32reg.c \
94515237 1563 $(BLOCKINPUT_H) \
0c1b4ae2 1564 $(CONFIG_H) \
f90e08f5 1565 $(LISP_H) \
94515237 1566 $(W32TERM_H)
7bbaaedd 1567
fd7a37d5 1568$(BLD)/w32xfns.$(O) : \
6218196f 1569 $(SRC)/w32xfns.c \
94515237
JB
1570 $(SRC)/fontset.h \
1571 $(BLOCKINPUT_H) \
1572 $(CHARSET_H) \
0c1b4ae2 1573 $(CONFIG_H) \
94515237
JB
1574 $(FRAME_H) \
1575 $(KEYBOARD_H) \
f90e08f5 1576 $(LISP_H) \
94515237 1577 $(W32TERM_H)
5ac50e96 1578
fd7a37d5 1579$(BLD)/w32font.$(O) : \
223250a6 1580 $(SRC)/w32font.c \
0c1b4ae2 1581 $(SRC)/fontset.h \
0c1b4ae2 1582 $(SRC)/w32font.h \
94515237
JB
1583 $(CHARACTER_H) \
1584 $(CHARSET_H) \
1585 $(CODING_H) \
1586 $(CONFIG_H) \
1587 $(DISPEXTERN_H) \
1588 $(FONT_H) \
1589 $(FRAME_H) \
1590 $(LISP_H) \
1591 $(W32TERM_H)
0c1b4ae2 1592
fd7a37d5 1593$(BLD)/w32uniscribe.$(O) : \
0c1b4ae2 1594 $(SRC)/w32uniscribe.c \
091a66d2 1595 $(SRC)/composite.h \
223250a6 1596 $(SRC)/fontset.h \
c1ca4c24 1597 $(SRC)/w32font.h \
94515237
JB
1598 $(CHARACTER_H) \
1599 $(CHARSET_H) \
1600 $(CONFIG_H) \
1601 $(DISPEXTERN_H) \
1602 $(FONT_H) \
1603 $(FRAME_H) \
1604 $(LISP_H) \
1605 $(W32TERM_H)
223250a6 1606
5ac50e96
EZ
1607# Each object file depends on stamp_BLD, because in parallel builds we must
1608# make sure $(BLD) exists before starting compilations.
1609#
5e371708 1610$(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD