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