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