aboutsummaryrefslogtreecommitdiffstats
path: root/src/makefile.w32-in
diff options
context:
space:
mode:
authorAndrew Innes2000-09-14 21:59:59 +0000
committerAndrew Innes2000-09-14 21:59:59 +0000
commit7bbaaeddf0b1e2a5edae055717b5a141d4e094fc (patch)
tree0f6d72038736fe96be57df1e56d79e6bbdb2ff81 /src/makefile.w32-in
parent3021e8160b268dd24d72872c526cec0f3d657306 (diff)
downloademacs-7bbaaeddf0b1e2a5edae055717b5a141d4e094fc.tar.gz
emacs-7bbaaeddf0b1e2a5edae055717b5a141d4e094fc.zip
Revert to Unix line endings.
Diffstat (limited to 'src/makefile.w32-in')
-rw-r--r--src/makefile.w32-in2340
1 files changed, 1170 insertions, 1170 deletions
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index e6b9eed4144..14391861a54 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -1,1170 +1,1170 @@
1# Makefile for GNU Emacs on the Microsoft W32 API. 1# Makefile for GNU Emacs on the Microsoft W32 API.
2# Copyright (c) 1992-2000 Free Software Foundation, Inc. 2# Copyright (c) 1992-2000 Free Software Foundation, Inc.
3# 3#
4# This file is part of GNU Emacs. 4# This file is part of GNU Emacs.
5# 5#
6# GNU Emacs is free software; you can redistribute it and/or modify 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 7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option) 8# the Free Software Foundation; either version 2, or (at your option)
9# any later version. 9# any later version.
10# 10#
11# GNU Emacs is distributed in the hope that it will be useful, 11# GNU Emacs is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of 12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details. 14# GNU General Public License for more details.
15# 15#
16# You should have received a copy of the GNU General Public License 16# You should have received a copy of the GNU General Public License
17# along with GNU Emacs; see the file COPYING. If not, write to the 17# along with GNU Emacs; see the file COPYING. If not, write to the
18# Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19# Boston, MA 02111-1307, USA. 19# Boston, MA 02111-1307, USA.
20# 20#
21 21
22ALL = emacs 22ALL = emacs
23 23
24.PHONY: $(ALL) 24.PHONY: $(ALL)
25 25
26# 26#
27# HAVE_CONFIG_H is required by some generic gnu sources stuck into 27# HAVE_CONFIG_H is required by some generic gnu sources stuck into
28# the emacs source tree. 28# the emacs source tree.
29# 29#
30LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS) 30LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
31 31
32EMACS = $(BLD)/emacs.exe 32EMACS = $(BLD)/emacs.exe
33TEMACS = $(BLD)/temacs.exe 33TEMACS = $(BLD)/temacs.exe
34TEMACS_TMP = $(BLD)/temacs.bin 34TEMACS_TMP = $(BLD)/temacs.bin
35TLIB0 = $(BLD)/temacs0.$(A) 35TLIB0 = $(BLD)/temacs0.$(A)
36TLIB1 = $(BLD)/temacs1.$(A) 36TLIB1 = $(BLD)/temacs1.$(A)
37TLIBW32 = $(BLD)/temacw32.$(A) 37TLIBW32 = $(BLD)/temacw32.$(A)
38TOBJ = $(BLD)/firstfile.$(O) 38TOBJ = $(BLD)/firstfile.$(O)
39TRES = $(BLD)/emacs.res 39TRES = $(BLD)/emacs.res
40TLASTLIB = $(BLD)/lastfile.$(A) 40TLASTLIB = $(BLD)/lastfile.$(A)
41 41
42FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK) 42FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
43 43
44# 44#
45# Split up the objects into two sets so that we don't run out of 45# Split up the objects into two sets so that we don't run out of
46# command line space when we link them into a library. 46# command line space when we link them into a library.
47# 47#
48# Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O) 48# Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
49# as the "main" object file when linking. 49# as the "main" object file when linking.
50# 50#
51OBJ0 = $(BLD)/emacs.$(O) 51OBJ0 = $(BLD)/emacs.$(O)
52 52
53OBJ1 = $(BLD)/abbrev.$(O) \ 53OBJ1 = $(BLD)/abbrev.$(O) \
54 $(BLD)/alloc.$(O) \ 54 $(BLD)/alloc.$(O) \
55 $(BLD)/alloca.$(O) \ 55 $(BLD)/alloca.$(O) \
56 $(BLD)/atimer.$(O) \ 56 $(BLD)/atimer.$(O) \
57 $(BLD)/buffer.$(O) \ 57 $(BLD)/buffer.$(O) \
58 $(BLD)/bytecode.$(O) \ 58 $(BLD)/bytecode.$(O) \
59 $(BLD)/callint.$(O) \ 59 $(BLD)/callint.$(O) \
60 $(BLD)/callproc.$(O) \ 60 $(BLD)/callproc.$(O) \
61 $(BLD)/casefiddle.$(O) \ 61 $(BLD)/casefiddle.$(O) \
62 $(BLD)/cm.$(O) \ 62 $(BLD)/cm.$(O) \
63 $(BLD)/cmds.$(O) \ 63 $(BLD)/cmds.$(O) \
64 $(BLD)/data.$(O) \ 64 $(BLD)/data.$(O) \
65 $(BLD)/dired.$(O) \ 65 $(BLD)/dired.$(O) \
66 $(BLD)/dispnew.$(O) \ 66 $(BLD)/dispnew.$(O) \
67 $(BLD)/doc.$(O) \ 67 $(BLD)/doc.$(O) \
68 $(BLD)/doprnt.$(O) \ 68 $(BLD)/doprnt.$(O) \
69 $(BLD)/editfns.$(O) \ 69 $(BLD)/editfns.$(O) \
70 $(BLD)/eval.$(O) \ 70 $(BLD)/eval.$(O) \
71 $(BLD)/fileio.$(O) \ 71 $(BLD)/fileio.$(O) \
72 $(BLD)/filelock.$(O) \ 72 $(BLD)/filelock.$(O) \
73 $(BLD)/filemode.$(O) \ 73 $(BLD)/filemode.$(O) \
74 $(BLD)/fns.$(O) \ 74 $(BLD)/fns.$(O) \
75 $(BLD)/indent.$(O) \ 75 $(BLD)/indent.$(O) \
76 $(BLD)/insdel.$(O) \ 76 $(BLD)/insdel.$(O) \
77 $(BLD)/keyboard.$(O) \ 77 $(BLD)/keyboard.$(O) \
78 $(BLD)/keymap.$(O) \ 78 $(BLD)/keymap.$(O) \
79 $(BLD)/lread.$(O) \ 79 $(BLD)/lread.$(O) \
80 $(BLD)/macros.$(O) \ 80 $(BLD)/macros.$(O) \
81 $(BLD)/marker.$(O) \ 81 $(BLD)/marker.$(O) \
82 $(BLD)/minibuf.$(O) \ 82 $(BLD)/minibuf.$(O) \
83 $(BLD)/mocklisp.$(O) \ 83 $(BLD)/mocklisp.$(O) \
84 $(BLD)/w32.$(O) \ 84 $(BLD)/w32.$(O) \
85 $(BLD)/w32heap.$(O) \ 85 $(BLD)/w32heap.$(O) \
86 $(BLD)/w32inevt.$(O) \ 86 $(BLD)/w32inevt.$(O) \
87 $(BLD)/w32proc.$(O) \ 87 $(BLD)/w32proc.$(O) \
88 $(BLD)/w32console.$(O) \ 88 $(BLD)/w32console.$(O) \
89 $(BLD)/print.$(O) \ 89 $(BLD)/print.$(O) \
90 $(BLD)/process.$(O) \ 90 $(BLD)/process.$(O) \
91 $(BLD)/regex.$(O) \ 91 $(BLD)/regex.$(O) \
92 $(BLD)/scroll.$(O) \ 92 $(BLD)/scroll.$(O) \
93 $(BLD)/search.$(O) \ 93 $(BLD)/search.$(O) \
94 $(BLD)/syntax.$(O) \ 94 $(BLD)/syntax.$(O) \
95 $(BLD)/sysdep.$(O) \ 95 $(BLD)/sysdep.$(O) \
96 $(BLD)/term.$(O) \ 96 $(BLD)/term.$(O) \
97 $(BLD)/termcap.$(O) \ 97 $(BLD)/termcap.$(O) \
98 $(BLD)/tparam.$(O) \ 98 $(BLD)/tparam.$(O) \
99 $(BLD)/undo.$(O) \ 99 $(BLD)/undo.$(O) \
100 $(BLD)/unexw32.$(O) \ 100 $(BLD)/unexw32.$(O) \
101 $(BLD)/window.$(O) \ 101 $(BLD)/window.$(O) \
102 $(BLD)/xdisp.$(O) \ 102 $(BLD)/xdisp.$(O) \
103 $(BLD)/casetab.$(O) \ 103 $(BLD)/casetab.$(O) \
104 $(BLD)/floatfns.$(O) \ 104 $(BLD)/floatfns.$(O) \
105 $(BLD)/frame.$(O) \ 105 $(BLD)/frame.$(O) \
106 $(BLD)/gmalloc.$(O) \ 106 $(BLD)/gmalloc.$(O) \
107 $(BLD)/intervals.$(O) \ 107 $(BLD)/intervals.$(O) \
108 $(BLD)/composite.$(O) \ 108 $(BLD)/composite.$(O) \
109 $(BLD)/ralloc.$(O) \ 109 $(BLD)/ralloc.$(O) \
110 $(BLD)/textprop.$(O) \ 110 $(BLD)/textprop.$(O) \
111 $(BLD)/vm-limit.$(O) \ 111 $(BLD)/vm-limit.$(O) \
112 $(BLD)/region-cache.$(O) \ 112 $(BLD)/region-cache.$(O) \
113 $(BLD)/strftime.$(O) \ 113 $(BLD)/strftime.$(O) \
114 $(BLD)/charset.$(O) \ 114 $(BLD)/charset.$(O) \
115 $(BLD)/coding.$(O) \ 115 $(BLD)/coding.$(O) \
116 $(BLD)/category.$(O) \ 116 $(BLD)/category.$(O) \
117 $(BLD)/ccl.$(O) \ 117 $(BLD)/ccl.$(O) \
118 $(BLD)/fontset.$(O) 118 $(BLD)/fontset.$(O)
119 119
120WIN32OBJ = $(BLD)/w32term.$(O) \ 120WIN32OBJ = $(BLD)/w32term.$(O) \
121 $(BLD)/w32xfns.$(O) \ 121 $(BLD)/w32xfns.$(O) \
122 $(BLD)/w32fns.$(O) \ 122 $(BLD)/w32fns.$(O) \
123 $(BLD)/xfaces.$(O) \ 123 $(BLD)/xfaces.$(O) \
124 $(BLD)/w32select.$(O) \ 124 $(BLD)/w32select.$(O) \
125 $(BLD)/w32menu.$(O) \ 125 $(BLD)/w32menu.$(O) \
126 $(BLD)/w32reg.$(O) \ 126 $(BLD)/w32reg.$(O) \
127 $(BLD)/w32bdf.$(O) 127 $(BLD)/w32bdf.$(O)
128 128
129LIBS = $(TLIB0) \ 129LIBS = $(TLIB0) \
130 $(TLIB1) \ 130 $(TLIB1) \
131 $(TLIBW32) \ 131 $(TLIBW32) \
132 $(TLASTLIB) \ 132 $(TLASTLIB) \
133 $(ADVAPI32) \ 133 $(ADVAPI32) \
134 $(GDI32) \ 134 $(GDI32) \
135 $(COMDLG32) \ 135 $(COMDLG32) \
136 $(USER32) \ 136 $(USER32) \
137 $(MPR) \ 137 $(MPR) \
138 $(SHELL32) \ 138 $(SHELL32) \
139 $(libc) 139 $(libc)
140 140
141# 141#
142# Build the executable and dump it. 142# Build the executable and dump it.
143# 143#
144all: $(ALL) 144all: $(ALL)
145 145
146# 146#
147# The dumped executable 147# The dumped executable
148# 148#
149emacs: $(BLD) $(EMACS) 149emacs: $(BLD) $(EMACS)
150$(EMACS): $(DOC) $(TEMACS) 150$(EMACS): $(DOC) $(TEMACS)
151 "./$(BLD)/temacs.exe" -batch -l loadup dump 151 "./$(BLD)/temacs.exe" -batch -l loadup dump
152 152
153# 153#
154# The undumped executable 154# The undumped executable
155# Note the extra post-link step to insert a static preload heap section. 155# Note the extra post-link step to insert a static preload heap section.
156# If preload runs out of memory, increase the last argument to addsection 156# If preload runs out of memory, increase the last argument to addsection
157# (it is the preload heap size in MB). 157# (it is the preload heap size in MB).
158# 158#
159temacs: $(BLD) $(TEMACS) 159temacs: $(BLD) $(TEMACS)
160$(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) 160$(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
161 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) 161 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
162 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16 162 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
163 163
164bootstrap: bootstrap-emacs 164bootstrap: bootstrap-emacs
165 165
166# 166#
167# Build a temacs with a sufficiently large PURESIZE to load the 167# Build a temacs with a sufficiently large PURESIZE to load the
168# Lisp files from loadup.el in source form. 168# Lisp files from loadup.el in source form.
169# 169#
170bootstrap-temacs: bootstrap-clean 170bootstrap-temacs: bootstrap-clean
171 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE) 171 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
172 172
173# 173#
174# Dump an Emacs executable named bootstrap-emacs containing the 174# Dump an Emacs executable named bootstrap-emacs containing the
175# files from loadup.el in source form. 175# files from loadup.el in source form.
176# 176#
177bootstrap-emacs: bootstrap-temacs 177bootstrap-emacs: bootstrap-temacs
178 "./$(BLD)/temacs.exe" -batch -l loadup bootstrap 178 "./$(BLD)/temacs.exe" -batch -l loadup bootstrap
179 - mkdir "../bin" 179 - mkdir "../bin"
180 $(CP) $(EMACS) ../bin 180 $(CP) $(EMACS) ../bin
181 181
182# 182#
183# Force recompile of files that depend on PURESIZE 183# Force recompile of files that depend on PURESIZE
184# 184#
185bootstrap-clean: 185bootstrap-clean:
186 - $(DEL) $(BLD)/alloc.$(O) 186 - $(DEL) $(BLD)/alloc.$(O)
187 - $(DEL) $(BLD)/data.$(O) 187 - $(DEL) $(BLD)/data.$(O)
188 - $(DEL) $(BLD)/intervals.$(O) 188 - $(DEL) $(BLD)/intervals.$(O)
189 - $(DEL) $(BLD)/keyboard.$(O) 189 - $(DEL) $(BLD)/keyboard.$(O)
190 - $(DEL) $(BLD)/keymap.$(O) 190 - $(DEL) $(BLD)/keymap.$(O)
191 191
192# 192#
193# The resource file. NT 3.10 requires the use of cvtres; even though 193# The resource file. NT 3.10 requires the use of cvtres; even though
194# it is not necessary on later versions, it is still ok to use it. 194# it is not necessary on later versions, it is still ok to use it.
195# 195#
196$(TRES): ../nt/emacs.rc 196$(TRES): ../nt/emacs.rc
197 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS) 197 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
198 198
199# 199#
200# Build the library. Split up the build into two phases...otherwise we 200# Build the library. Split up the build into two phases...otherwise we
201# run out of command line space. 201# run out of command line space.
202# 202#
203$(TLIB0): $(OBJ0) 203$(TLIB0): $(OBJ0)
204 - $(DEL) $@ 204 - $(DEL) $@
205 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 205 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
206$(TLIB1): $(OBJ1) 206$(TLIB1): $(OBJ1)
207 - $(DEL) $@ 207 - $(DEL) $@
208 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 208 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
209$(TLIBW32): $(WIN32OBJ) 209$(TLIBW32): $(WIN32OBJ)
210 - $(DEL) $@ 210 - $(DEL) $@
211 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 211 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
212 212
213# 213#
214# Place lastfile.$(O) in its own library so that it can be loaded after 214# Place lastfile.$(O) in its own library so that it can be loaded after
215# the source libraries but before any system libraries. Doing so defines 215# the source libraries but before any system libraries. Doing so defines
216# the end of Emacs' data section portably across compilers and systems. 216# the end of Emacs' data section portably across compilers and systems.
217# 217#
218$(TLASTLIB): $(BLD)/lastfile.$(O) 218$(TLASTLIB): $(BLD)/lastfile.$(O)
219 - $(DEL) $@ 219 - $(DEL) $@
220 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 220 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
221 221
222# 222#
223# Assuming INSTALL_DIR is defined, build and install emacs in it. 223# Assuming INSTALL_DIR is defined, build and install emacs in it.
224# 224#
225install: $(ALL) 225install: $(ALL)
226 - mkdir "$(INSTALL_DIR)/bin" 226 - mkdir "$(INSTALL_DIR)/bin"
227 $(CP) $(EMACS) $(INSTALL_DIR)/bin 227 $(CP) $(EMACS) $(INSTALL_DIR)/bin
228 228
229# 229#
230# Maintenance 230# Maintenance
231# 231#
232clean: 232clean:
233 - $(DEL) *~ "s/*~" "m/*~" 233 - $(DEL) *~ "s/*~" "m/*~"
234 - $(DEL) *.pdb 234 - $(DEL) *.pdb
235 - $(DEL_TREE) $(OBJDIR) 235 - $(DEL_TREE) $(OBJDIR)
236 236
237distclean: clean 237distclean: clean
238 - $(DEL) config.h epaths.h 238 - $(DEL) config.h epaths.h
239 239
240cleanall: clean 240cleanall: clean
241 - $(DEL_TREE) obj 241 - $(DEL_TREE) obj
242 - $(DEL_TREE) obj-spd 242 - $(DEL_TREE) obj-spd
243 - $(DEL_TREE) oo 243 - $(DEL_TREE) oo
244 - $(DEL_TREE) oo-spd 244 - $(DEL_TREE) oo-spd
245 245
246### DEPENDENCIES ### 246### DEPENDENCIES ###
247 247
248EMACS_ROOT = .. 248EMACS_ROOT = ..
249SRC = . 249SRC = .
250 250
251$(BLD)/abbrev.obj : \ 251$(BLD)/abbrev.obj : \
252 $(SRC)/abbrev.c \ 252 $(SRC)/abbrev.c \
253 $(EMACS_ROOT)/src/s/ms-w32.h \ 253 $(EMACS_ROOT)/src/s/ms-w32.h \
254 $(EMACS_ROOT)/src/m/intel386.h \ 254 $(EMACS_ROOT)/src/m/intel386.h \
255 $(EMACS_ROOT)/src/config.h \ 255 $(EMACS_ROOT)/src/config.h \
256 $(SRC)/commands.h \ 256 $(SRC)/commands.h \
257 $(SRC)/buffer.h \ 257 $(SRC)/buffer.h \
258 $(SRC)/window.h 258 $(SRC)/window.h
259 259
260$(BLD)/alloc.obj : \ 260$(BLD)/alloc.obj : \
261 $(SRC)/alloc.c \ 261 $(SRC)/alloc.c \
262 $(EMACS_ROOT)/src/s/ms-w32.h \ 262 $(EMACS_ROOT)/src/s/ms-w32.h \
263 $(EMACS_ROOT)/src/m/intel386.h \ 263 $(EMACS_ROOT)/src/m/intel386.h \
264 $(EMACS_ROOT)/src/config.h \ 264 $(EMACS_ROOT)/src/config.h \
265 $(SRC)/dispextern.h \ 265 $(SRC)/dispextern.h \
266 $(SRC)/intervals.h \ 266 $(SRC)/intervals.h \
267 $(SRC)/composite.h \ 267 $(SRC)/composite.h \
268 $(SRC)/puresize.h \ 268 $(SRC)/puresize.h \
269 $(SRC)/buffer.h \ 269 $(SRC)/buffer.h \
270 $(SRC)/window.h \ 270 $(SRC)/window.h \
271 $(SRC)/frame.h \ 271 $(SRC)/frame.h \
272 $(SRC)/blockinput.h \ 272 $(SRC)/blockinput.h \
273 $(SRC)/syssignal.h 273 $(SRC)/syssignal.h
274 274
275$(BLD)/alloca.obj : \ 275$(BLD)/alloca.obj : \
276 $(SRC)/alloca.c \ 276 $(SRC)/alloca.c \
277 $(EMACS_ROOT)/src/s/ms-w32.h \ 277 $(EMACS_ROOT)/src/s/ms-w32.h \
278 $(EMACS_ROOT)/src/m/intel386.h \ 278 $(EMACS_ROOT)/src/m/intel386.h \
279 $(EMACS_ROOT)/src/config.h \ 279 $(EMACS_ROOT)/src/config.h \
280 $(SRC)/s/ms-w32.h \ 280 $(SRC)/s/ms-w32.h \
281 $(SRC)/m/intel386.h \ 281 $(SRC)/m/intel386.h \
282 $(SRC)/config.h \ 282 $(SRC)/config.h \
283 $(SRC)/blockinput.h 283 $(SRC)/blockinput.h
284 284
285$(BLD)/atimer.obj : \ 285$(BLD)/atimer.obj : \
286 $(SRC)/atimer.c \ 286 $(SRC)/atimer.c \
287 $(EMACS_ROOT)/src/s/ms-w32.h \ 287 $(EMACS_ROOT)/src/s/ms-w32.h \
288 $(EMACS_ROOT)/src/m/intel386.h \ 288 $(EMACS_ROOT)/src/m/intel386.h \
289 $(EMACS_ROOT)/src/config.h \ 289 $(EMACS_ROOT)/src/config.h \
290 $(SRC)/s/ms-w32.h \ 290 $(SRC)/s/ms-w32.h \
291 $(SRC)/m/intel386.h \ 291 $(SRC)/m/intel386.h \
292 $(SRC)/config.h \ 292 $(SRC)/config.h \
293 $(SRC)/atimer.h \ 293 $(SRC)/atimer.h \
294 $(SRC)/syssignal.h \ 294 $(SRC)/syssignal.h \
295 $(SRC)/systime.h \ 295 $(SRC)/systime.h \
296 $(SRC)/blockinput.h 296 $(SRC)/blockinput.h
297 297
298$(BLD)/buffer.obj : \ 298$(BLD)/buffer.obj : \
299 $(SRC)/buffer.c \ 299 $(SRC)/buffer.c \
300 $(EMACS_ROOT)/nt/inc/sys/param.h \ 300 $(EMACS_ROOT)/nt/inc/sys/param.h \
301 $(EMACS_ROOT)/src/s/ms-w32.h \ 301 $(EMACS_ROOT)/src/s/ms-w32.h \
302 $(EMACS_ROOT)/src/m/intel386.h \ 302 $(EMACS_ROOT)/src/m/intel386.h \
303 $(EMACS_ROOT)/src/config.h \ 303 $(EMACS_ROOT)/src/config.h \
304 $(SRC)/dispextern.h \ 304 $(SRC)/dispextern.h \
305 $(SRC)/intervals.h \ 305 $(SRC)/intervals.h \
306 $(SRC)/composite.h \ 306 $(SRC)/composite.h \
307 $(SRC)/frame.h \ 307 $(SRC)/frame.h \
308 $(SRC)/window.h \ 308 $(SRC)/window.h \
309 $(SRC)/commands.h \ 309 $(SRC)/commands.h \
310 $(SRC)/buffer.h \ 310 $(SRC)/buffer.h \
311 $(SRC)/indent.h \ 311 $(SRC)/indent.h \
312 $(SRC)/blockinput.h \ 312 $(SRC)/blockinput.h \
313 $(SRC)/region-cache.h 313 $(SRC)/region-cache.h
314 314
315$(BLD)/bytecode.obj : \ 315$(BLD)/bytecode.obj : \
316 $(SRC)/bytecode.c \ 316 $(SRC)/bytecode.c \
317 $(EMACS_ROOT)/src/s/ms-w32.h \ 317 $(EMACS_ROOT)/src/s/ms-w32.h \
318 $(EMACS_ROOT)/src/m/intel386.h \ 318 $(EMACS_ROOT)/src/m/intel386.h \
319 $(EMACS_ROOT)/src/config.h \ 319 $(EMACS_ROOT)/src/config.h \
320 $(SRC)/buffer.h \ 320 $(SRC)/buffer.h \
321 $(SRC)/syntax.h 321 $(SRC)/syntax.h
322 322
323$(BLD)/callint.obj : \ 323$(BLD)/callint.obj : \
324 $(SRC)/callint.c \ 324 $(SRC)/callint.c \
325 $(EMACS_ROOT)/src/s/ms-w32.h \ 325 $(EMACS_ROOT)/src/s/ms-w32.h \
326 $(EMACS_ROOT)/src/m/intel386.h \ 326 $(EMACS_ROOT)/src/m/intel386.h \
327 $(EMACS_ROOT)/src/config.h \ 327 $(EMACS_ROOT)/src/config.h \
328 $(SRC)/buffer.h \ 328 $(SRC)/buffer.h \
329 $(SRC)/commands.h \ 329 $(SRC)/commands.h \
330 $(SRC)/keyboard.h \ 330 $(SRC)/keyboard.h \
331 $(SRC)/window.h \ 331 $(SRC)/window.h \
332 $(SRC)/mocklisp.h 332 $(SRC)/mocklisp.h
333 333
334$(BLD)/callproc.obj : \ 334$(BLD)/callproc.obj : \
335 $(SRC)/callproc.c \ 335 $(SRC)/callproc.c \
336 $(EMACS_ROOT)/src/s/ms-w32.h \ 336 $(EMACS_ROOT)/src/s/ms-w32.h \
337 $(EMACS_ROOT)/src/m/intel386.h \ 337 $(EMACS_ROOT)/src/m/intel386.h \
338 $(EMACS_ROOT)/src/config.h \ 338 $(EMACS_ROOT)/src/config.h \
339 $(SRC)/msdos.h \ 339 $(SRC)/msdos.h \
340 $(EMACS_ROOT)/nt/inc/sys/param.h \ 340 $(EMACS_ROOT)/nt/inc/sys/param.h \
341 $(SRC)/commands.h \ 341 $(SRC)/commands.h \
342 $(SRC)/buffer.h \ 342 $(SRC)/buffer.h \
343 $(SRC)/process.h \ 343 $(SRC)/process.h \
344 $(SRC)/syssignal.h \ 344 $(SRC)/syssignal.h \
345 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 345 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
346 $(EMACS_ROOT)/nt/inc/sys/file.h \ 346 $(EMACS_ROOT)/nt/inc/sys/file.h \
347 $(SRC)/systty.h 347 $(SRC)/systty.h
348 348
349$(BLD)/casefiddle.obj : \ 349$(BLD)/casefiddle.obj : \
350 $(SRC)/casefiddle.c \ 350 $(SRC)/casefiddle.c \
351 $(EMACS_ROOT)/src/s/ms-w32.h \ 351 $(EMACS_ROOT)/src/s/ms-w32.h \
352 $(EMACS_ROOT)/src/m/intel386.h \ 352 $(EMACS_ROOT)/src/m/intel386.h \
353 $(EMACS_ROOT)/src/config.h \ 353 $(EMACS_ROOT)/src/config.h \
354 $(SRC)/buffer.h \ 354 $(SRC)/buffer.h \
355 $(SRC)/commands.h \ 355 $(SRC)/commands.h \
356 $(SRC)/syntax.h 356 $(SRC)/syntax.h
357 $(CC) $(CFLAGS) -Fo$@ casefiddle.c 357 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
358 358
359$(BLD)/casetab.obj : \ 359$(BLD)/casetab.obj : \
360 $(SRC)/casetab.c \ 360 $(SRC)/casetab.c \
361 $(EMACS_ROOT)/src/s/ms-w32.h \ 361 $(EMACS_ROOT)/src/s/ms-w32.h \
362 $(EMACS_ROOT)/src/m/intel386.h \ 362 $(EMACS_ROOT)/src/m/intel386.h \
363 $(EMACS_ROOT)/src/config.h \ 363 $(EMACS_ROOT)/src/config.h \
364 $(SRC)/buffer.h 364 $(SRC)/buffer.h
365 365
366$(BLD)/cm.obj : \ 366$(BLD)/cm.obj : \
367 $(SRC)/cm.c \ 367 $(SRC)/cm.c \
368 $(EMACS_ROOT)/src/s/ms-w32.h \ 368 $(EMACS_ROOT)/src/s/ms-w32.h \
369 $(EMACS_ROOT)/src/m/intel386.h \ 369 $(EMACS_ROOT)/src/m/intel386.h \
370 $(EMACS_ROOT)/src/config.h \ 370 $(EMACS_ROOT)/src/config.h \
371 $(SRC)/cm.h \ 371 $(SRC)/cm.h \
372 $(SRC)/termhooks.h 372 $(SRC)/termhooks.h
373 373
374$(BLD)/cmds.obj : \ 374$(BLD)/cmds.obj : \
375 $(SRC)/cmds.c \ 375 $(SRC)/cmds.c \
376 $(EMACS_ROOT)/src/s/ms-w32.h \ 376 $(EMACS_ROOT)/src/s/ms-w32.h \
377 $(EMACS_ROOT)/src/m/intel386.h \ 377 $(EMACS_ROOT)/src/m/intel386.h \
378 $(EMACS_ROOT)/src/config.h \ 378 $(EMACS_ROOT)/src/config.h \
379 $(SRC)/commands.h \ 379 $(SRC)/commands.h \
380 $(SRC)/buffer.h \ 380 $(SRC)/buffer.h \
381 $(SRC)/syntax.h 381 $(SRC)/syntax.h
382 382
383$(BLD)/composite.obj : \ 383$(BLD)/composite.obj : \
384 $(SRC)/composite.c \ 384 $(SRC)/composite.c \
385 $(SRC)/buffer.h \ 385 $(SRC)/buffer.h \
386 $(SRC)/charset.h \ 386 $(SRC)/charset.h \
387 $(SRC)/intervals.h \ 387 $(SRC)/intervals.h \
388 $(SRC)/composite.h \ 388 $(SRC)/composite.h \
389 $(EMACS_ROOT)/src/s/ms-w32.h \ 389 $(EMACS_ROOT)/src/s/ms-w32.h \
390 $(EMACS_ROOT)/src/m/intel386.h \ 390 $(EMACS_ROOT)/src/m/intel386.h \
391 $(EMACS_ROOT)/src/config.h 391 $(EMACS_ROOT)/src/config.h
392 392
393$(BLD)/data.obj : \ 393$(BLD)/data.obj : \
394 $(SRC)/data.c \ 394 $(SRC)/data.c \
395 $(EMACS_ROOT)/src/s/ms-w32.h \ 395 $(EMACS_ROOT)/src/s/ms-w32.h \
396 $(EMACS_ROOT)/src/m/intel386.h \ 396 $(EMACS_ROOT)/src/m/intel386.h \
397 $(EMACS_ROOT)/src/config.h \ 397 $(EMACS_ROOT)/src/config.h \
398 $(SRC)/puresize.h \ 398 $(SRC)/puresize.h \
399 $(SRC)/buffer.h \ 399 $(SRC)/buffer.h \
400 $(SRC)/syssignal.h 400 $(SRC)/syssignal.h
401 401
402$(BLD)/dired.obj : \ 402$(BLD)/dired.obj : \
403 $(SRC)/dired.c \ 403 $(SRC)/dired.c \
404 $(EMACS_ROOT)/src/s/ms-w32.h \ 404 $(EMACS_ROOT)/src/s/ms-w32.h \
405 $(EMACS_ROOT)/src/m/intel386.h \ 405 $(EMACS_ROOT)/src/m/intel386.h \
406 $(EMACS_ROOT)/src/config.h \ 406 $(EMACS_ROOT)/src/config.h \
407 $(SRC)/vmsdir.h \ 407 $(SRC)/vmsdir.h \
408 $(SRC)/ndir.h \ 408 $(SRC)/ndir.h \
409 $(SRC)/buffer.h \ 409 $(SRC)/buffer.h \
410 $(SRC)/commands.h \ 410 $(SRC)/commands.h \
411 $(SRC)/regex.h 411 $(SRC)/regex.h
412 412
413$(BLD)/dispnew.obj : \ 413$(BLD)/dispnew.obj : \
414 $(SRC)/dispnew.c \ 414 $(SRC)/dispnew.c \
415 $(EMACS_ROOT)/src/s/ms-w32.h \ 415 $(EMACS_ROOT)/src/s/ms-w32.h \
416 $(EMACS_ROOT)/src/m/intel386.h \ 416 $(EMACS_ROOT)/src/m/intel386.h \
417 $(EMACS_ROOT)/src/config.h \ 417 $(EMACS_ROOT)/src/config.h \
418 $(SRC)/termchar.h \ 418 $(SRC)/termchar.h \
419 $(SRC)/termopts.h \ 419 $(SRC)/termopts.h \
420 $(SRC)/termhooks.h \ 420 $(SRC)/termhooks.h \
421 $(SRC)/cm.h \ 421 $(SRC)/cm.h \
422 $(SRC)/buffer.h \ 422 $(SRC)/buffer.h \
423 $(SRC)/frame.h \ 423 $(SRC)/frame.h \
424 $(SRC)/window.h \ 424 $(SRC)/window.h \
425 $(SRC)/commands.h \ 425 $(SRC)/commands.h \
426 $(SRC)/disptab.h \ 426 $(SRC)/disptab.h \
427 $(SRC)/indent.h \ 427 $(SRC)/indent.h \
428 $(SRC)/dispextern.h \ 428 $(SRC)/dispextern.h \
429 $(SRC)/intervals.h \ 429 $(SRC)/intervals.h \
430 $(SRC)/composite.h \ 430 $(SRC)/composite.h \
431 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 431 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
432 $(EMACS_ROOT)/nt/inc/sys/file.h \ 432 $(EMACS_ROOT)/nt/inc/sys/file.h \
433 $(SRC)/systty.h \ 433 $(SRC)/systty.h \
434 $(SRC)/w32term.h \ 434 $(SRC)/w32term.h \
435 $(SRC)/xterm.h \ 435 $(SRC)/xterm.h \
436 $(SRC)/vmstime.h \ 436 $(SRC)/vmstime.h \
437 $(SRC)/systime.h 437 $(SRC)/systime.h
438 438
439$(BLD)/doc.obj : \ 439$(BLD)/doc.obj : \
440 $(SRC)/doc.c \ 440 $(SRC)/doc.c \
441 $(EMACS_ROOT)/src/s/ms-w32.h \ 441 $(EMACS_ROOT)/src/s/ms-w32.h \
442 $(EMACS_ROOT)/src/m/intel386.h \ 442 $(EMACS_ROOT)/src/m/intel386.h \
443 $(EMACS_ROOT)/src/config.h \ 443 $(EMACS_ROOT)/src/config.h \
444 $(EMACS_ROOT)/nt/inc/sys/file.h \ 444 $(EMACS_ROOT)/nt/inc/sys/file.h \
445 $(SRC)/buffer.h \ 445 $(SRC)/buffer.h \
446 $(SRC)/keyboard.h 446 $(SRC)/keyboard.h
447 447
448$(BLD)/doprnt.obj : \ 448$(BLD)/doprnt.obj : \
449 $(SRC)/doprnt.c \ 449 $(SRC)/doprnt.c \
450 $(EMACS_ROOT)/src/s/ms-w32.h \ 450 $(EMACS_ROOT)/src/s/ms-w32.h \
451 $(EMACS_ROOT)/src/m/intel386.h \ 451 $(EMACS_ROOT)/src/m/intel386.h \
452 $(EMACS_ROOT)/src/config.h 452 $(EMACS_ROOT)/src/config.h
453 453
454$(BLD)/dosfns.obj : \ 454$(BLD)/dosfns.obj : \
455 $(SRC)/dosfns.c \ 455 $(SRC)/dosfns.c \
456 $(EMACS_ROOT)/src/s/ms-w32.h \ 456 $(EMACS_ROOT)/src/s/ms-w32.h \
457 $(EMACS_ROOT)/src/m/intel386.h \ 457 $(EMACS_ROOT)/src/m/intel386.h \
458 $(EMACS_ROOT)/src/config.h \ 458 $(EMACS_ROOT)/src/config.h \
459 $(SRC)/buffer.h \ 459 $(SRC)/buffer.h \
460 $(SRC)/termchar.h \ 460 $(SRC)/termchar.h \
461 $(SRC)/termhooks.h \ 461 $(SRC)/termhooks.h \
462 $(SRC)/frame.h \ 462 $(SRC)/frame.h \
463 $(SRC)/dosfns.h \ 463 $(SRC)/dosfns.h \
464 $(SRC)/msdos.h 464 $(SRC)/msdos.h
465 465
466$(BLD)/editfns.obj : \ 466$(BLD)/editfns.obj : \
467 $(SRC)/editfns.c \ 467 $(SRC)/editfns.c \
468 $(EMACS_ROOT)/src/s/ms-w32.h \ 468 $(EMACS_ROOT)/src/s/ms-w32.h \
469 $(EMACS_ROOT)/src/m/intel386.h \ 469 $(EMACS_ROOT)/src/m/intel386.h \
470 $(EMACS_ROOT)/src/config.h \ 470 $(EMACS_ROOT)/src/config.h \
471 $(SRC)/uaf.h \ 471 $(SRC)/uaf.h \
472 $(SRC)/vms-pwd.h \ 472 $(SRC)/vms-pwd.h \
473 $(EMACS_ROOT)/nt/inc/pwd.h \ 473 $(EMACS_ROOT)/nt/inc/pwd.h \
474 $(SRC)/dispextern.h \ 474 $(SRC)/dispextern.h \
475 $(SRC)/intervals.h \ 475 $(SRC)/intervals.h \
476 $(SRC)/composite.h \ 476 $(SRC)/composite.h \
477 $(SRC)/buffer.h \ 477 $(SRC)/buffer.h \
478 $(SRC)/window.h \ 478 $(SRC)/window.h \
479 $(SRC)/vmstime.h \ 479 $(SRC)/vmstime.h \
480 $(SRC)/systime.h 480 $(SRC)/systime.h
481 481
482$(BLD)/emacs.obj : \ 482$(BLD)/emacs.obj : \
483 $(SRC)/emacs.c \ 483 $(SRC)/emacs.c \
484 $(EMACS_ROOT)/src/s/ms-w32.h \ 484 $(EMACS_ROOT)/src/s/ms-w32.h \
485 $(EMACS_ROOT)/src/m/intel386.h \ 485 $(EMACS_ROOT)/src/m/intel386.h \
486 $(EMACS_ROOT)/src/config.h \ 486 $(EMACS_ROOT)/src/config.h \
487 $(SRC)/commands.h \ 487 $(SRC)/commands.h \
488 $(SRC)/dispextern.h \ 488 $(SRC)/dispextern.h \
489 $(SRC)/intervals.h \ 489 $(SRC)/intervals.h \
490 $(SRC)/composite.h \ 490 $(SRC)/composite.h \
491 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 491 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
492 $(EMACS_ROOT)/nt/inc/sys/file.h \ 492 $(EMACS_ROOT)/nt/inc/sys/file.h \
493 $(SRC)/systty.h \ 493 $(SRC)/systty.h \
494 $(SRC)/syssignal.h \ 494 $(SRC)/syssignal.h \
495 $(SRC)/process.h 495 $(SRC)/process.h
496 496
497$(BLD)/eval.obj : \ 497$(BLD)/eval.obj : \
498 $(SRC)/eval.c \ 498 $(SRC)/eval.c \
499 $(EMACS_ROOT)/src/s/ms-w32.h \ 499 $(EMACS_ROOT)/src/s/ms-w32.h \
500 $(EMACS_ROOT)/src/m/intel386.h \ 500 $(EMACS_ROOT)/src/m/intel386.h \
501 $(EMACS_ROOT)/src/config.h \ 501 $(EMACS_ROOT)/src/config.h \
502 $(SRC)/blockinput.h \ 502 $(SRC)/blockinput.h \
503 $(SRC)/commands.h \ 503 $(SRC)/commands.h \
504 $(SRC)/keyboard.h 504 $(SRC)/keyboard.h
505 505
506$(BLD)/fileio.obj : \ 506$(BLD)/fileio.obj : \
507 $(SRC)/fileio.c \ 507 $(SRC)/fileio.c \
508 $(EMACS_ROOT)/src/s/ms-w32.h \ 508 $(EMACS_ROOT)/src/s/ms-w32.h \
509 $(EMACS_ROOT)/src/m/intel386.h \ 509 $(EMACS_ROOT)/src/m/intel386.h \
510 $(EMACS_ROOT)/src/config.h \ 510 $(EMACS_ROOT)/src/config.h \
511 $(SRC)/uaf.h \ 511 $(SRC)/uaf.h \
512 $(SRC)/vms-pwd.h \ 512 $(SRC)/vms-pwd.h \
513 $(EMACS_ROOT)/nt/inc/pwd.h \ 513 $(EMACS_ROOT)/nt/inc/pwd.h \
514 $(SRC)/msdos.h \ 514 $(SRC)/msdos.h \
515 $(EMACS_ROOT)/nt/inc/sys/param.h \ 515 $(EMACS_ROOT)/nt/inc/sys/param.h \
516 $(SRC)/vmsdir.h \ 516 $(SRC)/vmsdir.h \
517 $(SRC)/dispextern.h \ 517 $(SRC)/dispextern.h \
518 $(SRC)/intervals.h \ 518 $(SRC)/intervals.h \
519 $(SRC)/composite.h \ 519 $(SRC)/composite.h \
520 $(SRC)/buffer.h \ 520 $(SRC)/buffer.h \
521 $(SRC)/window.h \ 521 $(SRC)/window.h \
522 $(EMACS_ROOT)/nt/inc/sys/file.h \ 522 $(EMACS_ROOT)/nt/inc/sys/file.h \
523 $(SRC)/vmstime.h \ 523 $(SRC)/vmstime.h \
524 $(SRC)/systime.h 524 $(SRC)/systime.h
525 525
526$(BLD)/filelock.obj : \ 526$(BLD)/filelock.obj : \
527 $(SRC)/filelock.c \ 527 $(SRC)/filelock.c \
528 $(EMACS_ROOT)/src/s/ms-w32.h \ 528 $(EMACS_ROOT)/src/s/ms-w32.h \
529 $(EMACS_ROOT)/src/m/intel386.h \ 529 $(EMACS_ROOT)/src/m/intel386.h \
530 $(EMACS_ROOT)/src/config.h \ 530 $(EMACS_ROOT)/src/config.h \
531 $(SRC)/uaf.h \ 531 $(SRC)/uaf.h \
532 $(SRC)/vms-pwd.h \ 532 $(SRC)/vms-pwd.h \
533 $(EMACS_ROOT)/nt/inc/pwd.h \ 533 $(EMACS_ROOT)/nt/inc/pwd.h \
534 $(EMACS_ROOT)/nt/inc/sys/file.h \ 534 $(EMACS_ROOT)/nt/inc/sys/file.h \
535 $(EMACS_ROOT)/src/epaths.h \ 535 $(EMACS_ROOT)/src/epaths.h \
536 $(SRC)/buffer.h \ 536 $(SRC)/buffer.h \
537 $(SRC)/vmsdir.h \ 537 $(SRC)/vmsdir.h \
538 $(SRC)/ndir.h 538 $(SRC)/ndir.h
539 539
540$(BLD)/filemode.obj : \ 540$(BLD)/filemode.obj : \
541 $(SRC)/filemode.c \ 541 $(SRC)/filemode.c \
542 $(EMACS_ROOT)/src/s/ms-w32.h \ 542 $(EMACS_ROOT)/src/s/ms-w32.h \
543 $(EMACS_ROOT)/src/m/intel386.h \ 543 $(EMACS_ROOT)/src/m/intel386.h \
544 $(EMACS_ROOT)/src/config.h \ 544 $(EMACS_ROOT)/src/config.h \
545 $(SRC)/s/ms-w32.h \ 545 $(SRC)/s/ms-w32.h \
546 $(SRC)/m/intel386.h \ 546 $(SRC)/m/intel386.h \
547 $(SRC)/config.h 547 $(SRC)/config.h
548 548
549$(BLD)/firstfile.obj : \ 549$(BLD)/firstfile.obj : \
550 $(SRC)/firstfile.c \ 550 $(SRC)/firstfile.c \
551 $(EMACS_ROOT)/src/s/ms-w32.h \ 551 $(EMACS_ROOT)/src/s/ms-w32.h \
552 $(EMACS_ROOT)/src/m/intel386.h \ 552 $(EMACS_ROOT)/src/m/intel386.h \
553 $(EMACS_ROOT)/src/config.h 553 $(EMACS_ROOT)/src/config.h
554 554
555$(BLD)/floatfns.obj : \ 555$(BLD)/floatfns.obj : \
556 $(SRC)/floatfns.c \ 556 $(SRC)/floatfns.c \
557 $(EMACS_ROOT)/src/s/ms-w32.h \ 557 $(EMACS_ROOT)/src/s/ms-w32.h \
558 $(EMACS_ROOT)/src/m/intel386.h \ 558 $(EMACS_ROOT)/src/m/intel386.h \
559 $(EMACS_ROOT)/src/config.h \ 559 $(EMACS_ROOT)/src/config.h \
560 $(SRC)/syssignal.h 560 $(SRC)/syssignal.h
561 561
562$(BLD)/fns.obj : \ 562$(BLD)/fns.obj : \
563 $(SRC)/fns.c \ 563 $(SRC)/fns.c \
564 $(EMACS_ROOT)/src/s/ms-w32.h \ 564 $(EMACS_ROOT)/src/s/ms-w32.h \
565 $(EMACS_ROOT)/src/m/intel386.h \ 565 $(EMACS_ROOT)/src/m/intel386.h \
566 $(EMACS_ROOT)/src/config.h \ 566 $(EMACS_ROOT)/src/config.h \
567 $(SRC)/commands.h \ 567 $(SRC)/commands.h \
568 $(SRC)/buffer.h \ 568 $(SRC)/buffer.h \
569 $(SRC)/keyboard.h \ 569 $(SRC)/keyboard.h \
570 $(SRC)/dispextern.h \ 570 $(SRC)/dispextern.h \
571 $(SRC)/intervals.h \ 571 $(SRC)/intervals.h \
572 $(SRC)/composite.h 572 $(SRC)/composite.h
573 573
574$(BLD)/frame.obj : \ 574$(BLD)/frame.obj : \
575 $(SRC)/frame.c \ 575 $(SRC)/frame.c \
576 $(EMACS_ROOT)/src/s/ms-w32.h \ 576 $(EMACS_ROOT)/src/s/ms-w32.h \
577 $(EMACS_ROOT)/src/m/intel386.h \ 577 $(EMACS_ROOT)/src/m/intel386.h \
578 $(EMACS_ROOT)/src/config.h \ 578 $(EMACS_ROOT)/src/config.h \
579 $(SRC)/frame.h \ 579 $(SRC)/frame.h \
580 $(SRC)/termhooks.h \ 580 $(SRC)/termhooks.h \
581 $(SRC)/window.h \ 581 $(SRC)/window.h \
582 $(SRC)/buffer.h \ 582 $(SRC)/buffer.h \
583 $(SRC)/commands.h \ 583 $(SRC)/commands.h \
584 $(SRC)/keyboard.h 584 $(SRC)/keyboard.h
585 585
586$(BLD)/getloadavg.obj : \ 586$(BLD)/getloadavg.obj : \
587 $(SRC)/getloadavg.c \ 587 $(SRC)/getloadavg.c \
588 $(EMACS_ROOT)/nt/inc/sys/param.h \ 588 $(EMACS_ROOT)/nt/inc/sys/param.h \
589 $(EMACS_ROOT)/src/s/ms-w32.h \ 589 $(EMACS_ROOT)/src/s/ms-w32.h \
590 $(EMACS_ROOT)/src/m/intel386.h \ 590 $(EMACS_ROOT)/src/m/intel386.h \
591 $(EMACS_ROOT)/src/config.h \ 591 $(EMACS_ROOT)/src/config.h \
592 $(SRC)/s/ms-w32.h \ 592 $(SRC)/s/ms-w32.h \
593 $(SRC)/m/intel386.h \ 593 $(SRC)/m/intel386.h \
594 $(SRC)/config.h \ 594 $(SRC)/config.h \
595 $(EMACS_ROOT)/nt/inc/sys/file.h 595 $(EMACS_ROOT)/nt/inc/sys/file.h
596 596
597$(BLD)/gmalloc.obj : \ 597$(BLD)/gmalloc.obj : \
598 $(SRC)/gmalloc.c \ 598 $(SRC)/gmalloc.c \
599 $(EMACS_ROOT)/src/s/ms-w32.h \ 599 $(EMACS_ROOT)/src/s/ms-w32.h \
600 $(EMACS_ROOT)/src/m/intel386.h \ 600 $(EMACS_ROOT)/src/m/intel386.h \
601 $(EMACS_ROOT)/src/config.h \ 601 $(EMACS_ROOT)/src/config.h \
602 $(EMACS_ROOT)/nt/inc/sys/param.h \ 602 $(EMACS_ROOT)/nt/inc/sys/param.h \
603 $(SRC)/getpagesize.h 603 $(SRC)/getpagesize.h
604 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c 604 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
605 605
606$(BLD)/hftctl.obj : \ 606$(BLD)/hftctl.obj : \
607 $(SRC)/hftctl.c \ 607 $(SRC)/hftctl.c \
608 $(EMACS_ROOT)/src/s/ms-w32.h \ 608 $(EMACS_ROOT)/src/s/ms-w32.h \
609 $(EMACS_ROOT)/src/m/intel386.h \ 609 $(EMACS_ROOT)/src/m/intel386.h \
610 $(EMACS_ROOT)/src/config.h \ 610 $(EMACS_ROOT)/src/config.h \
611 $(EMACS_ROOT)/nt/inc/sys/ioctl.h 611 $(EMACS_ROOT)/nt/inc/sys/ioctl.h
612 612
613$(BLD)/indent.obj : \ 613$(BLD)/indent.obj : \
614 $(SRC)/indent.c \ 614 $(SRC)/indent.c \
615 $(EMACS_ROOT)/src/s/ms-w32.h \ 615 $(EMACS_ROOT)/src/s/ms-w32.h \
616 $(EMACS_ROOT)/src/m/intel386.h \ 616 $(EMACS_ROOT)/src/m/intel386.h \
617 $(EMACS_ROOT)/src/config.h \ 617 $(EMACS_ROOT)/src/config.h \
618 $(SRC)/buffer.h \ 618 $(SRC)/buffer.h \
619 $(SRC)/indent.h \ 619 $(SRC)/indent.h \
620 $(SRC)/frame.h \ 620 $(SRC)/frame.h \
621 $(SRC)/window.h \ 621 $(SRC)/window.h \
622 $(SRC)/termchar.h \ 622 $(SRC)/termchar.h \
623 $(SRC)/termopts.h \ 623 $(SRC)/termopts.h \
624 $(SRC)/disptab.h \ 624 $(SRC)/disptab.h \
625 $(SRC)/dispextern.h \ 625 $(SRC)/dispextern.h \
626 $(SRC)/intervals.h \ 626 $(SRC)/intervals.h \
627 $(SRC)/region-cache.h \ 627 $(SRC)/region-cache.h \
628 $(SRC)/composite.h 628 $(SRC)/composite.h
629 629
630$(BLD)/insdel.obj : \ 630$(BLD)/insdel.obj : \
631 $(SRC)/insdel.c \ 631 $(SRC)/insdel.c \
632 $(EMACS_ROOT)/src/s/ms-w32.h \ 632 $(EMACS_ROOT)/src/s/ms-w32.h \
633 $(EMACS_ROOT)/src/m/intel386.h \ 633 $(EMACS_ROOT)/src/m/intel386.h \
634 $(EMACS_ROOT)/src/config.h \ 634 $(EMACS_ROOT)/src/config.h \
635 $(SRC)/dispextern.h \ 635 $(SRC)/dispextern.h \
636 $(SRC)/intervals.h \ 636 $(SRC)/intervals.h \
637 $(SRC)/composite.h \ 637 $(SRC)/composite.h \
638 $(SRC)/buffer.h \ 638 $(SRC)/buffer.h \
639 $(SRC)/window.h \ 639 $(SRC)/window.h \
640 $(SRC)/blockinput.h 640 $(SRC)/blockinput.h
641 641
642$(BLD)/intervals.obj : \ 642$(BLD)/intervals.obj : \
643 $(SRC)/intervals.c \ 643 $(SRC)/intervals.c \
644 $(EMACS_ROOT)/src/s/ms-w32.h \ 644 $(EMACS_ROOT)/src/s/ms-w32.h \
645 $(EMACS_ROOT)/src/m/intel386.h \ 645 $(EMACS_ROOT)/src/m/intel386.h \
646 $(EMACS_ROOT)/src/config.h \ 646 $(EMACS_ROOT)/src/config.h \
647 $(SRC)/dispextern.h \ 647 $(SRC)/dispextern.h \
648 $(SRC)/intervals.h \ 648 $(SRC)/intervals.h \
649 $(SRC)/composite.h \ 649 $(SRC)/composite.h \
650 $(SRC)/keyboard.h \ 650 $(SRC)/keyboard.h \
651 $(SRC)/buffer.h \ 651 $(SRC)/buffer.h \
652 $(SRC)/puresize.h 652 $(SRC)/puresize.h
653 653
654$(BLD)/keyboard.obj : \ 654$(BLD)/keyboard.obj : \
655 $(SRC)/keyboard.c \ 655 $(SRC)/keyboard.c \
656 $(EMACS_ROOT)/src/s/ms-w32.h \ 656 $(EMACS_ROOT)/src/s/ms-w32.h \
657 $(EMACS_ROOT)/src/m/intel386.h \ 657 $(EMACS_ROOT)/src/m/intel386.h \
658 $(EMACS_ROOT)/src/config.h \ 658 $(EMACS_ROOT)/src/config.h \
659 $(SRC)/termchar.h \ 659 $(SRC)/termchar.h \
660 $(SRC)/termopts.h \ 660 $(SRC)/termopts.h \
661 $(SRC)/termhooks.h \ 661 $(SRC)/termhooks.h \
662 $(SRC)/macros.h \ 662 $(SRC)/macros.h \
663 $(SRC)/frame.h \ 663 $(SRC)/frame.h \
664 $(SRC)/window.h \ 664 $(SRC)/window.h \
665 $(SRC)/commands.h \ 665 $(SRC)/commands.h \
666 $(SRC)/buffer.h \ 666 $(SRC)/buffer.h \
667 $(SRC)/disptab.h \ 667 $(SRC)/disptab.h \
668 $(SRC)/keyboard.h \ 668 $(SRC)/keyboard.h \
669 $(SRC)/dispextern.h \ 669 $(SRC)/dispextern.h \
670 $(SRC)/intervals.h \ 670 $(SRC)/intervals.h \
671 $(SRC)/composite.h \ 671 $(SRC)/composite.h \
672 $(SRC)/blockinput.h \ 672 $(SRC)/blockinput.h \
673 $(SRC)/msdos.h \ 673 $(SRC)/msdos.h \
674 $(SRC)/syssignal.h \ 674 $(SRC)/syssignal.h \
675 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 675 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
676 $(EMACS_ROOT)/nt/inc/sys/file.h \ 676 $(EMACS_ROOT)/nt/inc/sys/file.h \
677 $(SRC)/systty.h \ 677 $(SRC)/systty.h \
678 $(SRC)/w32term.h \ 678 $(SRC)/w32term.h \
679 $(SRC)/xterm.h \ 679 $(SRC)/xterm.h \
680 $(SRC)/vmstime.h \ 680 $(SRC)/vmstime.h \
681 $(SRC)/systime.h \ 681 $(SRC)/systime.h \
682 $(SRC)/atimer.h 682 $(SRC)/atimer.h
683 683
684$(BLD)/keymap.obj : \ 684$(BLD)/keymap.obj : \
685 $(SRC)/keymap.c \ 685 $(SRC)/keymap.c \
686 $(EMACS_ROOT)/src/s/ms-w32.h \ 686 $(EMACS_ROOT)/src/s/ms-w32.h \
687 $(EMACS_ROOT)/src/m/intel386.h \ 687 $(EMACS_ROOT)/src/m/intel386.h \
688 $(EMACS_ROOT)/src/config.h \ 688 $(EMACS_ROOT)/src/config.h \
689 $(SRC)/commands.h \ 689 $(SRC)/commands.h \
690 $(SRC)/buffer.h \ 690 $(SRC)/buffer.h \
691 $(SRC)/keyboard.h \ 691 $(SRC)/keyboard.h \
692 $(SRC)/termhooks.h \ 692 $(SRC)/termhooks.h \
693 $(SRC)/blockinput.h 693 $(SRC)/blockinput.h
694 694
695$(BLD)/lastfile.obj : \ 695$(BLD)/lastfile.obj : \
696 $(SRC)/lastfile.c \ 696 $(SRC)/lastfile.c \
697 $(EMACS_ROOT)/src/s/ms-w32.h \ 697 $(EMACS_ROOT)/src/s/ms-w32.h \
698 $(EMACS_ROOT)/src/m/intel386.h \ 698 $(EMACS_ROOT)/src/m/intel386.h \
699 $(EMACS_ROOT)/src/config.h 699 $(EMACS_ROOT)/src/config.h
700 700
701$(BLD)/lread.obj : \ 701$(BLD)/lread.obj : \
702 $(SRC)/lread.c \ 702 $(SRC)/lread.c \
703 $(EMACS_ROOT)/src/s/ms-w32.h \ 703 $(EMACS_ROOT)/src/s/ms-w32.h \
704 $(EMACS_ROOT)/src/m/intel386.h \ 704 $(EMACS_ROOT)/src/m/intel386.h \
705 $(EMACS_ROOT)/src/config.h \ 705 $(EMACS_ROOT)/src/config.h \
706 $(EMACS_ROOT)/nt/inc/sys/file.h \ 706 $(EMACS_ROOT)/nt/inc/sys/file.h \
707 $(SRC)/buffer.h \ 707 $(SRC)/buffer.h \
708 $(EMACS_ROOT)/src/epaths.h \ 708 $(EMACS_ROOT)/src/epaths.h \
709 $(SRC)/commands.h \ 709 $(SRC)/commands.h \
710 $(SRC)/keyboard.h \ 710 $(SRC)/keyboard.h \
711 $(SRC)/termhooks.h \ 711 $(SRC)/termhooks.h \
712 $(SRC)/msdos.h 712 $(SRC)/msdos.h
713 713
714$(BLD)/macros.obj : \ 714$(BLD)/macros.obj : \
715 $(SRC)/macros.c \ 715 $(SRC)/macros.c \
716 $(EMACS_ROOT)/src/s/ms-w32.h \ 716 $(EMACS_ROOT)/src/s/ms-w32.h \
717 $(EMACS_ROOT)/src/m/intel386.h \ 717 $(EMACS_ROOT)/src/m/intel386.h \
718 $(EMACS_ROOT)/src/config.h \ 718 $(EMACS_ROOT)/src/config.h \
719 $(SRC)/macros.h \ 719 $(SRC)/macros.h \
720 $(SRC)/commands.h \ 720 $(SRC)/commands.h \
721 $(SRC)/buffer.h \ 721 $(SRC)/buffer.h \
722 $(SRC)/window.h 722 $(SRC)/window.h
723 723
724$(BLD)/marker.obj : \ 724$(BLD)/marker.obj : \
725 $(SRC)/marker.c \ 725 $(SRC)/marker.c \
726 $(EMACS_ROOT)/src/s/ms-w32.h \ 726 $(EMACS_ROOT)/src/s/ms-w32.h \
727 $(EMACS_ROOT)/src/m/intel386.h \ 727 $(EMACS_ROOT)/src/m/intel386.h \
728 $(EMACS_ROOT)/src/config.h \ 728 $(EMACS_ROOT)/src/config.h \
729 $(SRC)/buffer.h 729 $(SRC)/buffer.h
730 730
731$(BLD)/minibuf.obj : \ 731$(BLD)/minibuf.obj : \
732 $(SRC)/minibuf.c \ 732 $(SRC)/minibuf.c \
733 $(EMACS_ROOT)/src/s/ms-w32.h \ 733 $(EMACS_ROOT)/src/s/ms-w32.h \
734 $(EMACS_ROOT)/src/m/intel386.h \ 734 $(EMACS_ROOT)/src/m/intel386.h \
735 $(EMACS_ROOT)/src/config.h \ 735 $(EMACS_ROOT)/src/config.h \
736 $(SRC)/commands.h \ 736 $(SRC)/commands.h \
737 $(SRC)/buffer.h \ 737 $(SRC)/buffer.h \
738 $(SRC)/dispextern.h \ 738 $(SRC)/dispextern.h \
739 $(SRC)/frame.h \ 739 $(SRC)/frame.h \
740 $(SRC)/window.h \ 740 $(SRC)/window.h \
741 $(SRC)/syntax.h 741 $(SRC)/syntax.h
742 742
743$(BLD)/mocklisp.obj : \ 743$(BLD)/mocklisp.obj : \
744 $(SRC)/mocklisp.c \ 744 $(SRC)/mocklisp.c \
745 $(EMACS_ROOT)/src/s/ms-w32.h \ 745 $(EMACS_ROOT)/src/s/ms-w32.h \
746 $(EMACS_ROOT)/src/m/intel386.h \ 746 $(EMACS_ROOT)/src/m/intel386.h \
747 $(EMACS_ROOT)/src/config.h \ 747 $(EMACS_ROOT)/src/config.h \
748 $(SRC)/buffer.h 748 $(SRC)/buffer.h
749 749
750$(BLD)/w32.obj : \ 750$(BLD)/w32.obj : \
751 $(SRC)/w32.c \ 751 $(SRC)/w32.c \
752 $(SRC)/w32.h \ 752 $(SRC)/w32.h \
753 $(SRC)/s/ms-w32.h \ 753 $(SRC)/s/ms-w32.h \
754 $(SRC)/m/intel386.h \ 754 $(SRC)/m/intel386.h \
755 $(SRC)/config.h \ 755 $(SRC)/config.h \
756 $(EMACS_ROOT)/nt/inc/pwd.h \ 756 $(EMACS_ROOT)/nt/inc/pwd.h \
757 $(SRC)/w32heap.h 757 $(SRC)/w32heap.h
758 758
759$(BLD)/w32heap.obj : \ 759$(BLD)/w32heap.obj : \
760 $(SRC)/w32heap.c \ 760 $(SRC)/w32heap.c \
761 $(SRC)/w32heap.h \ 761 $(SRC)/w32heap.h \
762 $(SRC)/s/ms-w32.h \ 762 $(SRC)/s/ms-w32.h \
763 $(SRC)/m/intel386.h \ 763 $(SRC)/m/intel386.h \
764 $(SRC)/config.h 764 $(SRC)/config.h
765 765
766$(BLD)/w32inevt.obj : \ 766$(BLD)/w32inevt.obj : \
767 $(SRC)/w32inevt.c \ 767 $(SRC)/w32inevt.c \
768 $(SRC)/s/ms-w32.h \ 768 $(SRC)/s/ms-w32.h \
769 $(SRC)/m/intel386.h \ 769 $(SRC)/m/intel386.h \
770 $(SRC)/config.h \ 770 $(SRC)/config.h \
771 $(SRC)/frame.h \ 771 $(SRC)/frame.h \
772 $(SRC)/blockinput.h \ 772 $(SRC)/blockinput.h \
773 $(SRC)/termhooks.h \ 773 $(SRC)/termhooks.h \
774 $(SRC)/w32heap.h \ 774 $(SRC)/w32heap.h \
775 $(SRC)/w32term.h 775 $(SRC)/w32term.h
776 776
777$(BLD)/w32proc.obj : \ 777$(BLD)/w32proc.obj : \
778 $(SRC)/w32proc.c \ 778 $(SRC)/w32proc.c \
779 $(SRC)/s/ms-w32.h \ 779 $(SRC)/s/ms-w32.h \
780 $(SRC)/m/intel386.h \ 780 $(SRC)/m/intel386.h \
781 $(SRC)/config.h \ 781 $(SRC)/config.h \
782 $(SRC)/w32.h \ 782 $(SRC)/w32.h \
783 $(SRC)/w32heap.h \ 783 $(SRC)/w32heap.h \
784 $(SRC)/vmstime.h \ 784 $(SRC)/vmstime.h \
785 $(SRC)/systime.h 785 $(SRC)/systime.h
786 786
787$(BLD)/w32console.obj : \ 787$(BLD)/w32console.obj : \
788 $(SRC)/w32console.c \ 788 $(SRC)/w32console.c \
789 $(SRC)/s/ms-w32.h \ 789 $(SRC)/s/ms-w32.h \
790 $(SRC)/m/intel386.h \ 790 $(SRC)/m/intel386.h \
791 $(SRC)/config.h \ 791 $(SRC)/config.h \
792 $(SRC)/frame.h \ 792 $(SRC)/frame.h \
793 $(SRC)/disptab.h \ 793 $(SRC)/disptab.h \
794 $(SRC)/termhooks.h \ 794 $(SRC)/termhooks.h \
795 $(SRC)/w32inevt.h 795 $(SRC)/w32inevt.h
796 796
797$(BLD)/prefix-args.obj : \ 797$(BLD)/prefix-args.obj : \
798 $(SRC)/prefix-args.c 798 $(SRC)/prefix-args.c
799 799
800$(BLD)/print.obj : \ 800$(BLD)/print.obj : \
801 $(SRC)/print.c \ 801 $(SRC)/print.c \
802 $(EMACS_ROOT)/src/s/ms-w32.h \ 802 $(EMACS_ROOT)/src/s/ms-w32.h \
803 $(EMACS_ROOT)/src/m/intel386.h \ 803 $(EMACS_ROOT)/src/m/intel386.h \
804 $(EMACS_ROOT)/src/config.h \ 804 $(EMACS_ROOT)/src/config.h \
805 $(SRC)/buffer.h \ 805 $(SRC)/buffer.h \
806 $(SRC)/frame.h \ 806 $(SRC)/frame.h \
807 $(SRC)/window.h \ 807 $(SRC)/window.h \
808 $(SRC)/process.h \ 808 $(SRC)/process.h \
809 $(SRC)/termchar.h \ 809 $(SRC)/termchar.h \
810 $(SRC)/dispextern.h \ 810 $(SRC)/dispextern.h \
811 $(SRC)/intervals.h \ 811 $(SRC)/intervals.h \
812 $(SRC)/composite.h 812 $(SRC)/composite.h
813 813
814$(BLD)/process.obj : \ 814$(BLD)/process.obj : \
815 $(SRC)/process.c \ 815 $(SRC)/process.c \
816 $(EMACS_ROOT)/src/s/ms-w32.h \ 816 $(EMACS_ROOT)/src/s/ms-w32.h \
817 $(EMACS_ROOT)/src/m/intel386.h \ 817 $(EMACS_ROOT)/src/m/intel386.h \
818 $(EMACS_ROOT)/src/config.h \ 818 $(EMACS_ROOT)/src/config.h \
819 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 819 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
820 $(EMACS_ROOT)/nt/inc/sys/file.h \ 820 $(EMACS_ROOT)/nt/inc/sys/file.h \
821 $(SRC)/systty.h \ 821 $(SRC)/systty.h \
822 $(SRC)/window.h \ 822 $(SRC)/window.h \
823 $(SRC)/buffer.h \ 823 $(SRC)/buffer.h \
824 $(SRC)/process.h \ 824 $(SRC)/process.h \
825 $(SRC)/termhooks.h \ 825 $(SRC)/termhooks.h \
826 $(SRC)/commands.h \ 826 $(SRC)/commands.h \
827 $(SRC)/frame.h \ 827 $(SRC)/frame.h \
828 $(SRC)/syssignal.h \ 828 $(SRC)/syssignal.h \
829 $(SRC)/vmsproc.h \ 829 $(SRC)/vmsproc.h \
830 $(SRC)/syswait.h \ 830 $(SRC)/syswait.h \
831 $(SRC)/vmstime.h \ 831 $(SRC)/vmstime.h \
832 $(SRC)/systime.h \ 832 $(SRC)/systime.h \
833 $(SRC)/termopts.h \ 833 $(SRC)/termopts.h \
834 $(SRC)/composite.h \ 834 $(SRC)/composite.h \
835 $(SRC)/atimer.h 835 $(SRC)/atimer.h
836 836
837$(BLD)/ralloc.obj : \ 837$(BLD)/ralloc.obj : \
838 $(SRC)/ralloc.c \ 838 $(SRC)/ralloc.c \
839 $(EMACS_ROOT)/src/s/ms-w32.h \ 839 $(EMACS_ROOT)/src/s/ms-w32.h \
840 $(EMACS_ROOT)/src/m/intel386.h \ 840 $(EMACS_ROOT)/src/m/intel386.h \
841 $(EMACS_ROOT)/src/config.h \ 841 $(EMACS_ROOT)/src/config.h \
842 $(SRC)/s/ms-w32.h \ 842 $(SRC)/s/ms-w32.h \
843 $(SRC)/m/intel386.h \ 843 $(SRC)/m/intel386.h \
844 $(SRC)/config.h \ 844 $(SRC)/config.h \
845 $(EMACS_ROOT)/nt/inc/sys/param.h \ 845 $(EMACS_ROOT)/nt/inc/sys/param.h \
846 $(SRC)/getpagesize.h 846 $(SRC)/getpagesize.h
847 847
848$(BLD)/regex.obj : \ 848$(BLD)/regex.obj : \
849 $(SRC)/regex.c \ 849 $(SRC)/regex.c \
850 $(EMACS_ROOT)/src/s/ms-w32.h \ 850 $(EMACS_ROOT)/src/s/ms-w32.h \
851 $(EMACS_ROOT)/src/m/intel386.h \ 851 $(EMACS_ROOT)/src/m/intel386.h \
852 $(EMACS_ROOT)/src/config.h \ 852 $(EMACS_ROOT)/src/config.h \
853 $(SRC)/s/ms-w32.h \ 853 $(SRC)/s/ms-w32.h \
854 $(SRC)/m/intel386.h \ 854 $(SRC)/m/intel386.h \
855 $(SRC)/config.h \ 855 $(SRC)/config.h \
856 $(SRC)/buffer.h \ 856 $(SRC)/buffer.h \
857 $(SRC)/syntax.h \ 857 $(SRC)/syntax.h \
858 $(SRC)/regex.h 858 $(SRC)/regex.h
859 859
860$(BLD)/region-cache.obj : \ 860$(BLD)/region-cache.obj : \
861 $(SRC)/region-cache.c \ 861 $(SRC)/region-cache.c \
862 $(EMACS_ROOT)/src/s/ms-w32.h \ 862 $(EMACS_ROOT)/src/s/ms-w32.h \
863 $(EMACS_ROOT)/src/m/intel386.h \ 863 $(EMACS_ROOT)/src/m/intel386.h \
864 $(EMACS_ROOT)/src/config.h \ 864 $(EMACS_ROOT)/src/config.h \
865 $(SRC)/buffer.h \ 865 $(SRC)/buffer.h \
866 $(SRC)/region-cache.h 866 $(SRC)/region-cache.h
867 867
868$(BLD)/scroll.obj : \ 868$(BLD)/scroll.obj : \
869 $(SRC)/scroll.c \ 869 $(SRC)/scroll.c \
870 $(EMACS_ROOT)/src/s/ms-w32.h \ 870 $(EMACS_ROOT)/src/s/ms-w32.h \
871 $(EMACS_ROOT)/src/m/intel386.h \ 871 $(EMACS_ROOT)/src/m/intel386.h \
872 $(EMACS_ROOT)/src/config.h \ 872 $(EMACS_ROOT)/src/config.h \
873 $(SRC)/termchar.h \ 873 $(SRC)/termchar.h \
874 $(SRC)/dispextern.h \ 874 $(SRC)/dispextern.h \
875 $(SRC)/frame.h 875 $(SRC)/frame.h
876 876
877$(BLD)/search.obj : \ 877$(BLD)/search.obj : \
878 $(SRC)/search.c \ 878 $(SRC)/search.c \
879 $(EMACS_ROOT)/src/s/ms-w32.h \ 879 $(EMACS_ROOT)/src/s/ms-w32.h \
880 $(EMACS_ROOT)/src/m/intel386.h \ 880 $(EMACS_ROOT)/src/m/intel386.h \
881 $(EMACS_ROOT)/src/config.h \ 881 $(EMACS_ROOT)/src/config.h \
882 $(SRC)/syntax.h \ 882 $(SRC)/syntax.h \
883 $(SRC)/buffer.h \ 883 $(SRC)/buffer.h \
884 $(SRC)/commands.h \ 884 $(SRC)/commands.h \
885 $(SRC)/blockinput.h \ 885 $(SRC)/blockinput.h \
886 $(SRC)/regex.h \ 886 $(SRC)/regex.h \
887 $(SRC)/region-cache.h \ 887 $(SRC)/region-cache.h \
888 $(SRC)/composite.h 888 $(SRC)/composite.h
889 889
890$(BLD)/strftime.obj : \ 890$(BLD)/strftime.obj : \
891 $(SRC)/strftime.c \ 891 $(SRC)/strftime.c \
892 $(EMACS_ROOT)/src/s/ms-w32.h \ 892 $(EMACS_ROOT)/src/s/ms-w32.h \
893 $(EMACS_ROOT)/src/m/intel386.h \ 893 $(EMACS_ROOT)/src/m/intel386.h \
894 $(EMACS_ROOT)/src/config.h 894 $(EMACS_ROOT)/src/config.h
895 895
896$(BLD)/sunfns.obj : \ 896$(BLD)/sunfns.obj : \
897 $(SRC)/sunfns.c \ 897 $(SRC)/sunfns.c \
898 $(EMACS_ROOT)/src/s/ms-w32.h \ 898 $(EMACS_ROOT)/src/s/ms-w32.h \
899 $(EMACS_ROOT)/src/m/intel386.h \ 899 $(EMACS_ROOT)/src/m/intel386.h \
900 $(EMACS_ROOT)/src/config.h \ 900 $(EMACS_ROOT)/src/config.h \
901 $(SRC)/window.h \ 901 $(SRC)/window.h \
902 $(SRC)/buffer.h \ 902 $(SRC)/buffer.h \
903 $(SRC)/termhooks.h 903 $(SRC)/termhooks.h
904 904
905$(BLD)/syntax.obj : \ 905$(BLD)/syntax.obj : \
906 $(SRC)/syntax.c \ 906 $(SRC)/syntax.c \
907 $(EMACS_ROOT)/src/s/ms-w32.h \ 907 $(EMACS_ROOT)/src/s/ms-w32.h \
908 $(EMACS_ROOT)/src/m/intel386.h \ 908 $(EMACS_ROOT)/src/m/intel386.h \
909 $(EMACS_ROOT)/src/config.h \ 909 $(EMACS_ROOT)/src/config.h \
910 $(SRC)/commands.h \ 910 $(SRC)/commands.h \
911 $(SRC)/buffer.h \ 911 $(SRC)/buffer.h \
912 $(SRC)/syntax.h \ 912 $(SRC)/syntax.h \
913 $(SRC)/composite.h 913 $(SRC)/composite.h
914 914
915$(BLD)/sysdep.obj : \ 915$(BLD)/sysdep.obj : \
916 $(SRC)/sysdep.c \ 916 $(SRC)/sysdep.c \
917 $(EMACS_ROOT)/src/s/ms-w32.h \ 917 $(EMACS_ROOT)/src/s/ms-w32.h \
918 $(EMACS_ROOT)/src/m/intel386.h \ 918 $(EMACS_ROOT)/src/m/intel386.h \
919 $(EMACS_ROOT)/src/config.h \ 919 $(EMACS_ROOT)/src/config.h \
920 $(SRC)/blockinput.h \ 920 $(SRC)/blockinput.h \
921 $(SRC)/dosfns.h \ 921 $(SRC)/dosfns.h \
922 $(SRC)/msdos.h \ 922 $(SRC)/msdos.h \
923 $(EMACS_ROOT)/nt/inc/sys/param.h \ 923 $(EMACS_ROOT)/nt/inc/sys/param.h \
924 $(EMACS_ROOT)/nt/inc/sys/file.h \ 924 $(EMACS_ROOT)/nt/inc/sys/file.h \
925 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 925 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
926 $(EMACS_ROOT)/nt/inc/sys/file.h \ 926 $(EMACS_ROOT)/nt/inc/sys/file.h \
927 $(SRC)/systty.h \ 927 $(SRC)/systty.h \
928 $(SRC)/vmsproc.h \ 928 $(SRC)/vmsproc.h \
929 $(SRC)/syswait.h \ 929 $(SRC)/syswait.h \
930 $(SRC)/frame.h \ 930 $(SRC)/frame.h \
931 $(SRC)/window.h \ 931 $(SRC)/window.h \
932 $(SRC)/termhooks.h \ 932 $(SRC)/termhooks.h \
933 $(SRC)/termchar.h \ 933 $(SRC)/termchar.h \
934 $(SRC)/termopts.h \ 934 $(SRC)/termopts.h \
935 $(SRC)/dispextern.h \ 935 $(SRC)/dispextern.h \
936 $(SRC)/process.h \ 936 $(SRC)/process.h \
937 $(SRC)/vmsdir.h \ 937 $(SRC)/vmsdir.h \
938 $(SRC)/ndir.h \ 938 $(SRC)/ndir.h \
939 $(SRC)/syssignal.h \ 939 $(SRC)/syssignal.h \
940 $(SRC)/vmstime.h \ 940 $(SRC)/vmstime.h \
941 $(SRC)/systime.h \ 941 $(SRC)/systime.h \
942 $(SRC)/uaf.h \ 942 $(SRC)/uaf.h \
943 $(SRC)/vms-pwd.h \ 943 $(SRC)/vms-pwd.h \
944 $(EMACS_ROOT)/src/acldef.h \ 944 $(EMACS_ROOT)/src/acldef.h \
945 $(EMACS_ROOT)/src/chpdef.h 945 $(EMACS_ROOT)/src/chpdef.h
946 946
947$(BLD)/term.obj : \ 947$(BLD)/term.obj : \
948 $(SRC)/term.c \ 948 $(SRC)/term.c \
949 $(EMACS_ROOT)/src/s/ms-w32.h \ 949 $(EMACS_ROOT)/src/s/ms-w32.h \
950 $(EMACS_ROOT)/src/m/intel386.h \ 950 $(EMACS_ROOT)/src/m/intel386.h \
951 $(EMACS_ROOT)/src/config.h \ 951 $(EMACS_ROOT)/src/config.h \
952 $(SRC)/termchar.h \ 952 $(SRC)/termchar.h \
953 $(SRC)/termopts.h \ 953 $(SRC)/termopts.h \
954 $(SRC)/cm.h \ 954 $(SRC)/cm.h \
955 $(SRC)/frame.h \ 955 $(SRC)/frame.h \
956 $(SRC)/disptab.h \ 956 $(SRC)/disptab.h \
957 $(SRC)/termhooks.h \ 957 $(SRC)/termhooks.h \
958 $(SRC)/keyboard.h 958 $(SRC)/keyboard.h
959 959
960$(BLD)/termcap.obj : \ 960$(BLD)/termcap.obj : \
961 $(SRC)/termcap.c \ 961 $(SRC)/termcap.c \
962 $(EMACS_ROOT)/src/s/ms-w32.h \ 962 $(EMACS_ROOT)/src/s/ms-w32.h \
963 $(EMACS_ROOT)/src/m/intel386.h \ 963 $(EMACS_ROOT)/src/m/intel386.h \
964 $(EMACS_ROOT)/src/config.h \ 964 $(EMACS_ROOT)/src/config.h \
965 $(EMACS_ROOT)/nt/inc/sys/file.h 965 $(EMACS_ROOT)/nt/inc/sys/file.h
966 966
967$(BLD)/terminfo.obj : \ 967$(BLD)/terminfo.obj : \
968 $(SRC)/terminfo.c 968 $(SRC)/terminfo.c
969 969
970$(BLD)/textprop.obj : \ 970$(BLD)/textprop.obj : \
971 $(SRC)/textprop.c \ 971 $(SRC)/textprop.c \
972 $(EMACS_ROOT)/src/s/ms-w32.h \ 972 $(EMACS_ROOT)/src/s/ms-w32.h \
973 $(EMACS_ROOT)/src/m/intel386.h \ 973 $(EMACS_ROOT)/src/m/intel386.h \
974 $(EMACS_ROOT)/src/config.h \ 974 $(EMACS_ROOT)/src/config.h \
975 $(SRC)/dispextern.h \ 975 $(SRC)/dispextern.h \
976 $(SRC)/intervals.h \ 976 $(SRC)/intervals.h \
977 $(SRC)/composite.h \ 977 $(SRC)/composite.h \
978 $(SRC)/buffer.h \ 978 $(SRC)/buffer.h \
979 $(SRC)/window.h 979 $(SRC)/window.h
980 980
981$(BLD)/tparam.obj : \ 981$(BLD)/tparam.obj : \
982 $(SRC)/tparam.c \ 982 $(SRC)/tparam.c \
983 $(EMACS_ROOT)/src/s/ms-w32.h \ 983 $(EMACS_ROOT)/src/s/ms-w32.h \
984 $(EMACS_ROOT)/src/m/intel386.h \ 984 $(EMACS_ROOT)/src/m/intel386.h \
985 $(EMACS_ROOT)/src/config.h 985 $(EMACS_ROOT)/src/config.h
986 986
987$(BLD)/undo.obj : \ 987$(BLD)/undo.obj : \
988 $(SRC)/undo.c \ 988 $(SRC)/undo.c \
989 $(EMACS_ROOT)/src/s/ms-w32.h \ 989 $(EMACS_ROOT)/src/s/ms-w32.h \
990 $(EMACS_ROOT)/src/m/intel386.h \ 990 $(EMACS_ROOT)/src/m/intel386.h \
991 $(EMACS_ROOT)/src/config.h \ 991 $(EMACS_ROOT)/src/config.h \
992 $(SRC)/buffer.h \ 992 $(SRC)/buffer.h \
993 $(SRC)/commands.h 993 $(SRC)/commands.h
994 994
995$(BLD)/unexw32.obj : \ 995$(BLD)/unexw32.obj : \
996 $(SRC)/unexw32.c \ 996 $(SRC)/unexw32.c \
997 $(EMACS_ROOT)/src/s/ms-w32.h \ 997 $(EMACS_ROOT)/src/s/ms-w32.h \
998 $(EMACS_ROOT)/src/m/intel386.h \ 998 $(EMACS_ROOT)/src/m/intel386.h \
999 $(EMACS_ROOT)/src/config.h \ 999 $(EMACS_ROOT)/src/config.h \
1000 $(SRC)/w32heap.h 1000 $(SRC)/w32heap.h
1001 1001
1002$(BLD)/vm-limit.obj : \ 1002$(BLD)/vm-limit.obj : \
1003 $(SRC)/vm-limit.c \ 1003 $(SRC)/vm-limit.c \
1004 $(EMACS_ROOT)/src/s/ms-w32.h \ 1004 $(EMACS_ROOT)/src/s/ms-w32.h \
1005 $(EMACS_ROOT)/src/m/intel386.h \ 1005 $(EMACS_ROOT)/src/m/intel386.h \
1006 $(EMACS_ROOT)/src/config.h \ 1006 $(EMACS_ROOT)/src/config.h \
1007 $(SRC)/mem-limits.h 1007 $(SRC)/mem-limits.h
1008 1008
1009$(BLD)/widget.obj : \ 1009$(BLD)/widget.obj : \
1010 $(SRC)/widget.c \ 1010 $(SRC)/widget.c \
1011 $(EMACS_ROOT)/src/s/ms-w32.h \ 1011 $(EMACS_ROOT)/src/s/ms-w32.h \
1012 $(EMACS_ROOT)/src/m/intel386.h \ 1012 $(EMACS_ROOT)/src/m/intel386.h \
1013 $(EMACS_ROOT)/src/config.h \ 1013 $(EMACS_ROOT)/src/config.h \
1014 $(SRC)/xterm.h \ 1014 $(SRC)/xterm.h \
1015 $(SRC)/frame.h \ 1015 $(SRC)/frame.h \
1016 $(SRC)/dispextern.h \ 1016 $(SRC)/dispextern.h \
1017 $(SRC)/widget.h \ 1017 $(SRC)/widget.h \
1018 $(SRC)/widgetprv.h 1018 $(SRC)/widgetprv.h
1019 1019
1020$(BLD)/window.obj : \ 1020$(BLD)/window.obj : \
1021 $(SRC)/window.c \ 1021 $(SRC)/window.c \
1022 $(EMACS_ROOT)/src/s/ms-w32.h \ 1022 $(EMACS_ROOT)/src/s/ms-w32.h \
1023 $(EMACS_ROOT)/src/m/intel386.h \ 1023 $(EMACS_ROOT)/src/m/intel386.h \
1024 $(EMACS_ROOT)/src/config.h \ 1024 $(EMACS_ROOT)/src/config.h \
1025 $(SRC)/buffer.h \ 1025 $(SRC)/buffer.h \
1026 $(SRC)/frame.h \ 1026 $(SRC)/frame.h \
1027 $(SRC)/window.h \ 1027 $(SRC)/window.h \
1028 $(SRC)/commands.h \ 1028 $(SRC)/commands.h \
1029 $(SRC)/indent.h \ 1029 $(SRC)/indent.h \
1030 $(SRC)/termchar.h \ 1030 $(SRC)/termchar.h \
1031 $(SRC)/disptab.h \ 1031 $(SRC)/disptab.h \
1032 $(SRC)/keyboard.h \ 1032 $(SRC)/keyboard.h \
1033 $(SRC)/composite.h 1033 $(SRC)/composite.h
1034 1034
1035$(BLD)/xdisp.obj : \ 1035$(BLD)/xdisp.obj : \
1036 $(SRC)/xdisp.c \ 1036 $(SRC)/xdisp.c \
1037 $(EMACS_ROOT)/src/s/ms-w32.h \ 1037 $(EMACS_ROOT)/src/s/ms-w32.h \
1038 $(EMACS_ROOT)/src/m/intel386.h \ 1038 $(EMACS_ROOT)/src/m/intel386.h \
1039 $(EMACS_ROOT)/src/config.h \ 1039 $(EMACS_ROOT)/src/config.h \
1040 $(SRC)/frame.h \ 1040 $(SRC)/frame.h \
1041 $(SRC)/window.h \ 1041 $(SRC)/window.h \
1042 $(SRC)/termchar.h \ 1042 $(SRC)/termchar.h \
1043 $(SRC)/buffer.h \ 1043 $(SRC)/buffer.h \
1044 $(SRC)/indent.h \ 1044 $(SRC)/indent.h \
1045 $(SRC)/commands.h \ 1045 $(SRC)/commands.h \
1046 $(SRC)/macros.h \ 1046 $(SRC)/macros.h \
1047 $(SRC)/disptab.h \ 1047 $(SRC)/disptab.h \
1048 $(SRC)/termhooks.h \ 1048 $(SRC)/termhooks.h \
1049 $(SRC)/dispextern.h \ 1049 $(SRC)/dispextern.h \
1050 $(SRC)/intervals.h \ 1050 $(SRC)/intervals.h \
1051 $(SRC)/composite.h 1051 $(SRC)/composite.h
1052 1052
1053$(BLD)/xfaces.obj: \ 1053$(BLD)/xfaces.obj: \
1054 $(EMACS_ROOT)/src/s/ms-w32.h \ 1054 $(EMACS_ROOT)/src/s/ms-w32.h \
1055 $(EMACS_ROOT)/src/m/intel386.h \ 1055 $(EMACS_ROOT)/src/m/intel386.h \
1056 $(EMACS_ROOT)/src/config.h \ 1056 $(EMACS_ROOT)/src/config.h \
1057 $(SRC)/xfaces.c \ 1057 $(SRC)/xfaces.c \
1058 $(SRC)/charset.h \ 1058 $(SRC)/charset.h \
1059 $(SRC)/fontset.h \ 1059 $(SRC)/fontset.h \
1060 $(SRC)/w32term.h \ 1060 $(SRC)/w32term.h \
1061 $(SRC)/w32gui.h \ 1061 $(SRC)/w32gui.h \
1062 $(SRC)/buffer.h \ 1062 $(SRC)/buffer.h \
1063 $(SRC)/dispextern.h \ 1063 $(SRC)/dispextern.h \
1064 $(SRC)/frame.h \ 1064 $(SRC)/frame.h \
1065 $(SRC)/blockinput.h \ 1065 $(SRC)/blockinput.h \
1066 $(SRC)/window.h \ 1066 $(SRC)/window.h \
1067 $(SRC)/intervals.h \ 1067 $(SRC)/intervals.h \
1068 $(SRC)/composite.h 1068 $(SRC)/composite.h
1069 1069
1070$(BLD)/w32fns.obj: \ 1070$(BLD)/w32fns.obj: \
1071 $(EMACS_ROOT)/src/s/ms-w32.h \ 1071 $(EMACS_ROOT)/src/s/ms-w32.h \
1072 $(EMACS_ROOT)/src/m/intel386.h \ 1072 $(EMACS_ROOT)/src/m/intel386.h \
1073 $(EMACS_ROOT)/src/config.h \ 1073 $(EMACS_ROOT)/src/config.h \
1074 $(SRC)/w32fns.c \ 1074 $(SRC)/w32fns.c \
1075 $(SRC)/x-list-font.c \ 1075 $(SRC)/x-list-font.c \
1076 $(SRC)/w32term.h \ 1076 $(SRC)/w32term.h \
1077 $(SRC)/w32gui.h \ 1077 $(SRC)/w32gui.h \
1078 $(SRC)/frame.h \ 1078 $(SRC)/frame.h \
1079 $(SRC)/window.h \ 1079 $(SRC)/window.h \
1080 $(SRC)/buffer.h \ 1080 $(SRC)/buffer.h \
1081 $(SRC)/charset.h \ 1081 $(SRC)/charset.h \
1082 $(SRC)/coding.h \ 1082 $(SRC)/coding.h \
1083 $(SRC)/dispextern.h \ 1083 $(SRC)/dispextern.h \
1084 $(SRC)/keyboard.h \ 1084 $(SRC)/keyboard.h \
1085 $(SRC)/blockinput.h \ 1085 $(SRC)/blockinput.h \
1086 $(SRC)/epaths.h \ 1086 $(SRC)/epaths.h \
1087 $(SRC)/w32heap.h \ 1087 $(SRC)/w32heap.h \
1088 $(SRC)/termhooks.h 1088 $(SRC)/termhooks.h
1089 1089
1090$(BLD)/w32menu.obj: \ 1090$(BLD)/w32menu.obj: \
1091 $(EMACS_ROOT)/src/s/ms-w32.h \ 1091 $(EMACS_ROOT)/src/s/ms-w32.h \
1092 $(EMACS_ROOT)/src/m/intel386.h \ 1092 $(EMACS_ROOT)/src/m/intel386.h \
1093 $(EMACS_ROOT)/src/config.h \ 1093 $(EMACS_ROOT)/src/config.h \
1094 $(SRC)/w32menu.c \ 1094 $(SRC)/w32menu.c \
1095 $(SRC)/termhooks.h \ 1095 $(SRC)/termhooks.h \
1096 $(SRC)/frame.h \ 1096 $(SRC)/frame.h \
1097 $(SRC)/window.h \ 1097 $(SRC)/window.h \
1098 $(SRC)/keyboard.h \ 1098 $(SRC)/keyboard.h \
1099 $(SRC)/blockinput.h \ 1099 $(SRC)/blockinput.h \
1100 $(SRC)/buffer.h \ 1100 $(SRC)/buffer.h \
1101 $(SRC)/charset.h \ 1101 $(SRC)/charset.h \
1102 $(SRC)/coding.h 1102 $(SRC)/coding.h
1103 1103
1104$(BLD)/w32term.obj: \ 1104$(BLD)/w32term.obj: \
1105 $(EMACS_ROOT)/src/s/ms-w32.h \ 1105 $(EMACS_ROOT)/src/s/ms-w32.h \
1106 $(EMACS_ROOT)/src/m/intel386.h \ 1106 $(EMACS_ROOT)/src/m/intel386.h \
1107 $(EMACS_ROOT)/src/config.h \ 1107 $(EMACS_ROOT)/src/config.h \
1108 $(SRC)/w32term.c \ 1108 $(SRC)/w32term.c \
1109 $(SRC)/blockinput.h \ 1109 $(SRC)/blockinput.h \
1110 $(SRC)/w32heap.h \ 1110 $(SRC)/w32heap.h \
1111 $(SRC)/w32term.h \ 1111 $(SRC)/w32term.h \
1112 $(SRC)/w32gui.h \ 1112 $(SRC)/w32gui.h \
1113 $(SRC)/systty.h \ 1113 $(SRC)/systty.h \
1114 $(SRC)/systime.h \ 1114 $(SRC)/systime.h \
1115 $(SRC)/frame.h \ 1115 $(SRC)/frame.h \
1116 $(SRC)/dispextern.h \ 1116 $(SRC)/dispextern.h \
1117 $(SRC)/termhooks.h \ 1117 $(SRC)/termhooks.h \
1118 $(SRC)/termopts.h \ 1118 $(SRC)/termopts.h \
1119 $(SRC)/termchar.h \ 1119 $(SRC)/termchar.h \
1120 $(SRC)/gnu.h \ 1120 $(SRC)/gnu.h \
1121 $(SRC)/disptab.h \ 1121 $(SRC)/disptab.h \
1122 $(SRC)/buffer.h \ 1122 $(SRC)/buffer.h \
1123 $(SRC)/window.h \ 1123 $(SRC)/window.h \
1124 $(SRC)/keyboard.h \ 1124 $(SRC)/keyboard.h \
1125 $(SRC)/intervals.h \ 1125 $(SRC)/intervals.h \
1126 $(SRC)/composite.h \ 1126 $(SRC)/composite.h \
1127 $(SRC)/atimer.h 1127 $(SRC)/atimer.h
1128 1128
1129$(BLD)/w32select.obj: \ 1129$(BLD)/w32select.obj: \
1130 $(EMACS_ROOT)/src/s/ms-w32.h \ 1130 $(EMACS_ROOT)/src/s/ms-w32.h \
1131 $(EMACS_ROOT)/src/m/intel386.h \ 1131 $(EMACS_ROOT)/src/m/intel386.h \
1132 $(EMACS_ROOT)/src/config.h \ 1132 $(EMACS_ROOT)/src/config.h \
1133 $(SRC)/w32select.c \ 1133 $(SRC)/w32select.c \
1134 $(SRC)/w32term.h \ 1134 $(SRC)/w32term.h \
1135 $(SRC)/w32gui.h \ 1135 $(SRC)/w32gui.h \
1136 $(SRC)/dispextern.h \ 1136 $(SRC)/dispextern.h \
1137 $(SRC)/frame.h \ 1137 $(SRC)/frame.h \
1138 $(SRC)/blockinput.h 1138 $(SRC)/blockinput.h
1139 1139
1140$(BLD)/w32reg.obj: \ 1140$(BLD)/w32reg.obj: \
1141 $(EMACS_ROOT)/src/s/ms-w32.h \ 1141 $(EMACS_ROOT)/src/s/ms-w32.h \
1142 $(EMACS_ROOT)/src/m/intel386.h \ 1142 $(EMACS_ROOT)/src/m/intel386.h \
1143 $(EMACS_ROOT)/src/config.h \ 1143 $(EMACS_ROOT)/src/config.h \
1144 $(SRC)/w32reg.c \ 1144 $(SRC)/w32reg.c \
1145 $(SRC)/w32term.h \ 1145 $(SRC)/w32term.h \
1146 $(SRC)/w32gui.h \ 1146 $(SRC)/w32gui.h \
1147 $(SRC)/blockinput.h 1147 $(SRC)/blockinput.h
1148 1148
1149$(BLD)/w32xfns.obj: \ 1149$(BLD)/w32xfns.obj: \
1150 $(EMACS_ROOT)/src/s/ms-w32.h \ 1150 $(EMACS_ROOT)/src/s/ms-w32.h \
1151 $(EMACS_ROOT)/src/m/intel386.h \ 1151 $(EMACS_ROOT)/src/m/intel386.h \
1152 $(EMACS_ROOT)/src/config.h \ 1152 $(EMACS_ROOT)/src/config.h \
1153 $(SRC)/w32xfns.c \ 1153 $(SRC)/w32xfns.c \
1154 1154
1155$(BLD)/w32bdf.obj: \ 1155$(BLD)/w32bdf.obj: \
1156 $(EMACS_ROOT)/src/s/ms-w32.h \ 1156 $(EMACS_ROOT)/src/s/ms-w32.h \
1157 $(EMACS_ROOT)/src/m/intel386.h \ 1157 $(EMACS_ROOT)/src/m/intel386.h \
1158 $(EMACS_ROOT)/src/config.h \ 1158 $(EMACS_ROOT)/src/config.h \
1159 $(SRC)/w32bdf.c \ 1159 $(SRC)/w32bdf.c \
1160 $(SRC)/charset.h \ 1160 $(SRC)/charset.h \
1161 $(SRC)/frame.h \ 1161 $(SRC)/frame.h \
1162 $(SRC)/dispextern.h \ 1162 $(SRC)/dispextern.h \
1163 $(SRC)/fontset.h \ 1163 $(SRC)/fontset.h \
1164 $(SRC)/blockinput.h \ 1164 $(SRC)/blockinput.h \
1165 $(SRC)/w32gui.h \ 1165 $(SRC)/w32gui.h \
1166 $(SRC)/w32term.h \ 1166 $(SRC)/w32term.h \
1167 $(SRC)/w32bdf.h \ 1167 $(SRC)/w32bdf.h \
1168 $(SRC)/w32.h \ 1168 $(SRC)/w32.h \
1169 $(SRC)/frame.h \ 1169 $(SRC)/frame.h \
1170 $(SRC)/blockinput.h 1170 $(SRC)/blockinput.h