]> code.delx.au - gnu-emacs/blob - src/makefile.w32-in
0c153b185d86651ba3ec916fec7977c34498a1a8
[gnu-emacs] / 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)/atimer.$(O) \
59 $(BLD)/buffer.$(O) \
60 $(BLD)/bytecode.$(O) \
61 $(BLD)/callint.$(O) \
62 $(BLD)/callproc.$(O) \
63 $(BLD)/casefiddle.$(O) \
64 $(BLD)/cm.$(O) \
65 $(BLD)/cmds.$(O) \
66 $(BLD)/data.$(O) \
67 $(BLD)/dired.$(O) \
68 $(BLD)/dispnew.$(O) \
69 $(BLD)/doc.$(O) \
70 $(BLD)/doprnt.$(O) \
71 $(BLD)/editfns.$(O) \
72 $(BLD)/eval.$(O) \
73 $(BLD)/fileio.$(O) \
74 $(BLD)/filelock.$(O) \
75 $(BLD)/filemode.$(O) \
76 $(BLD)/fns.$(O) \
77 $(BLD)/indent.$(O) \
78 $(BLD)/insdel.$(O) \
79 $(BLD)/keyboard.$(O) \
80 $(BLD)/keymap.$(O) \
81 $(BLD)/lread.$(O) \
82 $(BLD)/macros.$(O) \
83 $(BLD)/marker.$(O) \
84 $(BLD)/md5.$(O) \
85 $(BLD)/minibuf.$(O) \
86 $(BLD)/w32.$(O) \
87 $(BLD)/w32heap.$(O) \
88 $(BLD)/w32inevt.$(O) \
89 $(BLD)/w32proc.$(O) \
90 $(BLD)/w32console.$(O) \
91 $(BLD)/print.$(O) \
92 $(BLD)/process.$(O) \
93 $(BLD)/regex.$(O) \
94 $(BLD)/scroll.$(O) \
95 $(BLD)/search.$(O) \
96 $(BLD)/sound.$(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 $(BLD)/fringe.$(O)
123
124 WIN32OBJ = $(BLD)/w32term.$(O) \
125 $(BLD)/w32xfns.$(O) \
126 $(BLD)/w32fns.$(O) \
127 $(BLD)/xfaces.$(O) \
128 $(BLD)/w32select.$(O) \
129 $(BLD)/w32menu.$(O) \
130 $(BLD)/w32reg.$(O) \
131 $(BLD)/w32bdf.$(O)
132
133 LIBS = $(TLIB0) \
134 $(TLIB1) \
135 $(TLIBW32) \
136 $(TLASTLIB) \
137 $(WINMM) \
138 $(ADVAPI32) \
139 $(GDI32) \
140 $(COMDLG32) \
141 $(USER32) \
142 $(MPR) \
143 $(SHELL32) \
144 $(WINSPOOL) \
145 $(libc)
146
147 #
148 # Build the executable and dump it.
149 #
150 all: $(ALL)
151
152 #
153 # The dumped executable
154 #
155 emacs: $(BLD) $(EMACS)
156 $(EMACS): $(DOC) $(TEMACS)
157 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
158 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
159
160 #
161 # The undumped executable
162 # Note the extra post-link step to insert a static preload heap section.
163 # If preload runs out of memory, increase the last argument to addsection
164 # (it is the preload heap size in MB).
165 #
166 temacs: $(BLD) $(TEMACS)
167 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
168 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
169 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
170
171 bootstrap: bootstrap-emacs
172
173 #
174 # Build a temacs with a sufficiently large PURESIZE to load the
175 # Lisp files from loadup.el in source form.
176 #
177 bootstrap-temacs:
178 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
179
180 #
181 # Dump an Emacs executable named bootstrap-emacs containing the
182 # files from loadup.el in source form.
183 #
184 bootstrap-emacs: bootstrap-temacs
185 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
186 - mkdir "../bin"
187 $(CP) $(EMACS) ../bin
188
189 #
190 # Force recompile of files that depend on PURESIZE
191 #
192 bootstrap-clean:
193 - $(DEL) $(BLD)/alloc.$(O)
194 - $(DEL) $(BLD)/data.$(O)
195 - $(DEL) $(BLD)/intervals.$(O)
196 - $(DEL) $(BLD)/keyboard.$(O)
197 - $(DEL) $(BLD)/keymap.$(O)
198
199 #
200 # The resource file. NT 3.10 requires the use of cvtres; even though
201 # it is not necessary on later versions, it is still ok to use it.
202 #
203 $(TRES): ../nt/emacs.rc
204 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
205
206 #
207 # Build the library. Split up the build into two phases...otherwise we
208 # run out of command line space.
209 #
210 $(TLIB0): $(OBJ0)
211 - $(DEL) $@
212 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
213 $(TLIB1): $(OBJ1)
214 - $(DEL) $@
215 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
216 $(TLIBW32): $(WIN32OBJ)
217 - $(DEL) $@
218 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
219
220 #
221 # Place lastfile.$(O) in its own library so that it can be loaded after
222 # the source libraries but before any system libraries. Doing so defines
223 # the end of Emacs' data section portably across compilers and systems.
224 #
225 $(TLASTLIB): $(BLD)/lastfile.$(O)
226 - $(DEL) $@
227 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
228
229 #
230 # Assuming INSTALL_DIR is defined, build and install emacs in it.
231 #
232 install: $(ALL)
233 - mkdir "$(INSTALL_DIR)/bin"
234 $(CP) $(EMACS) $(INSTALL_DIR)/bin
235
236 #
237 # Maintenance
238 #
239 clean:
240 - $(DEL) *~ "s/*~" "m/*~"
241 - $(DEL) $(COMPILER_TEMP_FILES)
242 - $(DEL_TREE) $(OBJDIR)
243
244 distclean: clean
245 - $(DEL) config.h epaths.h
246
247 cleanall: clean
248 - $(DEL_TREE) obj
249 - $(DEL_TREE) obj-spd
250 - $(DEL_TREE) oo
251 - $(DEL_TREE) oo-spd
252
253 ### DEPENDENCIES ###
254
255 EMACS_ROOT = ..
256 SRC = .
257
258 $(BLD)/abbrev.$(O) : \
259 $(SRC)/abbrev.c \
260 $(EMACS_ROOT)/src/s/ms-w32.h \
261 $(EMACS_ROOT)/src/m/intel386.h \
262 $(EMACS_ROOT)/src/config.h \
263 $(SRC)/buffer.h \
264 $(SRC)/charset.h \
265 $(SRC)/commands.h \
266 $(SRC)/dispextern.h \
267 $(SRC)/syntax.h \
268 $(SRC)/w32bdf.h \
269 $(SRC)/w32gui.h \
270 $(SRC)/window.h
271
272 $(BLD)/alloc.$(O) : \
273 $(SRC)/alloc.c \
274 $(EMACS_ROOT)/src/s/ms-w32.h \
275 $(EMACS_ROOT)/src/m/intel386.h \
276 $(EMACS_ROOT)/src/config.h \
277 $(SRC)/blockinput.h \
278 $(SRC)/buffer.h \
279 $(SRC)/charset.h \
280 $(SRC)/composite.h \
281 $(SRC)/dispextern.h \
282 $(SRC)/frame.h \
283 $(SRC)/intervals.h \
284 $(SRC)/keyboard.h \
285 $(SRC)/process.h \
286 $(SRC)/puresize.h \
287 $(SRC)/syssignal.h \
288 $(SRC)/w32bdf.h \
289 $(SRC)/w32gui.h \
290 $(SRC)/window.h
291
292 $(BLD)/atimer.$(O) : \
293 $(SRC)/atimer.c \
294 $(EMACS_ROOT)/src/s/ms-w32.h \
295 $(EMACS_ROOT)/src/m/intel386.h \
296 $(EMACS_ROOT)/src/config.h \
297 $(SRC)/s/ms-w32.h \
298 $(SRC)/m/intel386.h \
299 $(SRC)/config.h \
300 $(SRC)/atimer.h \
301 $(SRC)/blockinput.h \
302 $(SRC)/syssignal.h \
303 $(SRC)/systime.h
304
305 $(BLD)/buffer.$(O) : \
306 $(SRC)/buffer.c \
307 $(EMACS_ROOT)/nt/inc/sys/param.h \
308 $(EMACS_ROOT)/src/s/ms-w32.h \
309 $(EMACS_ROOT)/src/m/intel386.h \
310 $(EMACS_ROOT)/src/config.h \
311 $(SRC)/blockinput.h \
312 $(SRC)/buffer.h \
313 $(SRC)/charset.h \
314 $(SRC)/commands.h \
315 $(SRC)/composite.h \
316 $(SRC)/dispextern.h \
317 $(SRC)/frame.h \
318 $(SRC)/indent.h \
319 $(SRC)/intervals.h \
320 $(SRC)/keyboard.h \
321 $(SRC)/keymap.h \
322 $(SRC)/region-cache.h \
323 $(SRC)/w32bdf.h \
324 $(SRC)/w32gui.h \
325 $(SRC)/window.h
326
327 $(BLD)/bytecode.$(O) : \
328 $(SRC)/bytecode.c \
329 $(EMACS_ROOT)/src/s/ms-w32.h \
330 $(EMACS_ROOT)/src/m/intel386.h \
331 $(EMACS_ROOT)/src/config.h \
332 $(SRC)/buffer.h \
333 $(SRC)/charset.h \
334 $(SRC)/syntax.h \
335 $(SRC)/window.h
336
337 $(BLD)/callint.$(O) : \
338 $(SRC)/callint.c \
339 $(EMACS_ROOT)/src/s/ms-w32.h \
340 $(EMACS_ROOT)/src/m/intel386.h \
341 $(EMACS_ROOT)/src/config.h \
342 $(SRC)/buffer.h \
343 $(SRC)/commands.h \
344 $(SRC)/dispextern.h \
345 $(SRC)/keyboard.h \
346 $(SRC)/keymap.h \
347 $(SRC)/w32bdf.h \
348 $(SRC)/w32gui.h \
349 $(SRC)/window.h
350
351 $(BLD)/callproc.$(O) : \
352 $(SRC)/callproc.c \
353 $(EMACS_ROOT)/src/s/ms-w32.h \
354 $(EMACS_ROOT)/src/m/intel386.h \
355 $(EMACS_ROOT)/src/config.h \
356 $(EMACS_ROOT)/nt/inc/sys/param.h \
357 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
358 $(EMACS_ROOT)/nt/inc/sys/file.h \
359 $(SRC)/buffer.h \
360 $(SRC)/ccl.h \
361 $(SRC)/charset.h \
362 $(SRC)/coding.h \
363 $(SRC)/commands.h \
364 $(SRC)/composite.h \
365 $(SRC)/epaths.h \
366 $(SRC)/process.h \
367 $(SRC)/syssignal.h \
368 $(SRC)/systty.h \
369 $(SRC)/w32.h
370
371 $(BLD)/casefiddle.$(O) : \
372 $(SRC)/casefiddle.c \
373 $(EMACS_ROOT)/src/s/ms-w32.h \
374 $(EMACS_ROOT)/src/m/intel386.h \
375 $(EMACS_ROOT)/src/config.h \
376 $(SRC)/buffer.h \
377 $(SRC)/charset.h \
378 $(SRC)/commands.h \
379 $(SRC)/composite.h \
380 $(SRC)/keymap.h \
381 $(SRC)/syntax.h
382
383 $(BLD)/casetab.$(O) : \
384 $(SRC)/casetab.c \
385 $(EMACS_ROOT)/src/s/ms-w32.h \
386 $(EMACS_ROOT)/src/m/intel386.h \
387 $(EMACS_ROOT)/src/config.h \
388 $(SRC)/buffer.h \
389 $(SRC)/charset.h
390
391 $(BLD)/category.$(O) : \
392 $(SRC)/category.c \
393 $(EMACS_ROOT)/src/s/ms-w32.h \
394 $(EMACS_ROOT)/src/m/intel386.h \
395 $(EMACS_ROOT)/src/config.h \
396 $(SRC)/buffer.h \
397 $(SRC)/category.h \
398 $(SRC)/charset.h \
399 $(SRC)/keymap.h
400
401 $(BLD)/ccl.$(O) : \
402 $(SRC)/ccl.c \
403 $(EMACS_ROOT)/src/s/ms-w32.h \
404 $(EMACS_ROOT)/src/m/intel386.h \
405 $(EMACS_ROOT)/src/config.h \
406 $(SRC)/ccl.h \
407 $(SRC)/charset.h \
408 $(SRC)/coding.h
409
410 $(BLD)/charset.$(O) : \
411 $(SRC)/charset.c \
412 $(EMACS_ROOT)/src/s/ms-w32.h \
413 $(EMACS_ROOT)/src/m/intel386.h \
414 $(EMACS_ROOT)/src/config.h \
415 $(SRC)/buffer.h \
416 $(SRC)/ccl.h \
417 $(SRC)/charset.h \
418 $(SRC)/coding.h \
419 $(SRC)/composite.h \
420 $(SRC)/disptab.h
421
422 $(BLD)/cm.$(O) : \
423 $(SRC)/cm.c \
424 $(EMACS_ROOT)/src/s/ms-w32.h \
425 $(EMACS_ROOT)/src/m/intel386.h \
426 $(EMACS_ROOT)/src/config.h \
427 $(SRC)/cm.h \
428 $(SRC)/termhooks.h
429
430 $(BLD)/cmds.$(O) : \
431 $(SRC)/cmds.c \
432 $(EMACS_ROOT)/src/s/ms-w32.h \
433 $(EMACS_ROOT)/src/m/intel386.h \
434 $(EMACS_ROOT)/src/config.h \
435 $(SRC)/buffer.h \
436 $(SRC)/charset.h \
437 $(SRC)/commands.h \
438 $(SRC)/dispextern.h \
439 $(SRC)/keyboard.h \
440 $(SRC)/keymap.h \
441 $(SRC)/syntax.h \
442 $(SRC)/w32bdf.h \
443 $(SRC)/w32gui.h \
444 $(SRC)/window.h
445
446 $(BLD)/coding.$(O) : \
447 $(SRC)/coding.c \
448 $(EMACS_ROOT)/src/s/ms-w32.h \
449 $(EMACS_ROOT)/src/m/intel386.h \
450 $(EMACS_ROOT)/src/config.h \
451 $(SRC)/buffer.h \
452 $(SRC)/ccl.h \
453 $(SRC)/charset.h \
454 $(SRC)/coding.h \
455 $(SRC)/composite.h \
456 $(SRC)/dispextern.h \
457 $(SRC)/intervals.h \
458 $(SRC)/w32bdf.h \
459 $(SRC)/w32gui.h \
460 $(SRC)/window.h
461
462 $(BLD)/composite.$(O) : \
463 $(SRC)/composite.c \
464 $(EMACS_ROOT)/src/s/ms-w32.h \
465 $(EMACS_ROOT)/src/m/intel386.h \
466 $(EMACS_ROOT)/src/config.h \
467 $(SRC)/buffer.h \
468 $(SRC)/charset.h \
469 $(SRC)/composite.h \
470 $(SRC)/dispextern.h \
471 $(SRC)/intervals.h \
472 $(SRC)/w32bdf.h \
473 $(SRC)/w32gui.h
474
475 $(BLD)/data.$(O) : \
476 $(SRC)/data.c \
477 $(EMACS_ROOT)/src/s/ms-w32.h \
478 $(EMACS_ROOT)/src/m/intel386.h \
479 $(EMACS_ROOT)/src/config.h \
480 $(SRC)/buffer.h \
481 $(SRC)/charset.h \
482 $(SRC)/frame.h \
483 $(SRC)/keyboard.h \
484 $(SRC)/puresize.h \
485 $(SRC)/syssignal.h
486
487 $(BLD)/dired.$(O) : \
488 $(SRC)/dired.c \
489 $(EMACS_ROOT)/src/s/ms-w32.h \
490 $(EMACS_ROOT)/src/m/intel386.h \
491 $(EMACS_ROOT)/src/config.h \
492 $(SRC)/buffer.h \
493 $(SRC)/ccl.h \
494 $(SRC)/charset.h \
495 $(SRC)/coding.h \
496 $(SRC)/commands.h \
497 $(SRC)/ndir.h \
498 $(SRC)/regex.h \
499 $(SRC)/systime.h
500
501 $(BLD)/dispnew.$(O) : \
502 $(SRC)/dispnew.c \
503 $(EMACS_ROOT)/src/s/ms-w32.h \
504 $(EMACS_ROOT)/src/m/intel386.h \
505 $(EMACS_ROOT)/src/config.h \
506 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
507 $(EMACS_ROOT)/nt/inc/sys/file.h \
508 $(SRC)/atimer.h \
509 $(SRC)/blockinput.h \
510 $(SRC)/buffer.h \
511 $(SRC)/charset.h \
512 $(SRC)/cm.h \
513 $(SRC)/commands.h \
514 $(SRC)/composite.h \
515 $(SRC)/dispextern.h \
516 $(SRC)/disptab.h \
517 $(SRC)/frame.h \
518 $(SRC)/indent.h \
519 $(SRC)/intervals.h \
520 $(SRC)/keyboard.h \
521 $(SRC)/process.h \
522 $(SRC)/syssignal.h \
523 $(SRC)/systime.h \
524 $(SRC)/termchar.h \
525 $(SRC)/termhooks.h \
526 $(SRC)/termopts.h \
527 $(SRC)/w32bdf.h \
528 $(SRC)/w32gui.h \
529 $(SRC)/w32term.h \
530 $(SRC)/window.h
531
532 $(BLD)/doc.$(O) : \
533 $(SRC)/doc.c \
534 $(EMACS_ROOT)/src/s/ms-w32.h \
535 $(EMACS_ROOT)/src/m/intel386.h \
536 $(EMACS_ROOT)/src/config.h \
537 $(EMACS_ROOT)/nt/inc/sys/file.h \
538 $(SRC)/buffer.h \
539 $(SRC)/charset.h \
540 $(SRC)/keyboard.h \
541 $(SRC)/keymap.h
542
543 $(BLD)/doprnt.$(O) : \
544 $(SRC)/doprnt.c \
545 $(EMACS_ROOT)/src/s/ms-w32.h \
546 $(EMACS_ROOT)/src/m/intel386.h \
547 $(EMACS_ROOT)/src/config.h \
548 $(SRC)/charset.c
549
550 $(BLD)/editfns.$(O) : \
551 $(SRC)/editfns.c \
552 $(EMACS_ROOT)/src/s/ms-w32.h \
553 $(EMACS_ROOT)/src/m/intel386.h \
554 $(EMACS_ROOT)/src/config.h \
555 $(EMACS_ROOT)/nt/inc/pwd.h \
556 $(SRC)/buffer.h \
557 $(SRC)/ccl.h \
558 $(SRC)/charset.h \
559 $(SRC)/coding.h \
560 $(SRC)/composite.h \
561 $(SRC)/dispextern.h \
562 $(SRC)/frame.h \
563 $(SRC)/intervals.h \
564 $(SRC)/systime.h \
565 $(SRC)/w32bdf.h \
566 $(SRC)/w32gui.h \
567 $(SRC)/window.h
568
569 $(BLD)/emacs.$(O) : \
570 $(SRC)/emacs.c \
571 $(EMACS_ROOT)/src/s/ms-w32.h \
572 $(EMACS_ROOT)/src/m/intel386.h \
573 $(EMACS_ROOT)/src/config.h \
574 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
575 $(EMACS_ROOT)/nt/inc/sys/file.h \
576 $(SRC)/atimer.h \
577 $(SRC)/blockinput.h \
578 $(SRC)/buffer.h \
579 $(SRC)/commands.h \
580 $(SRC)/composite.h \
581 $(SRC)/dispextern.h \
582 $(SRC)/intervals.h \
583 $(SRC)/keyboard.h \
584 $(SRC)/keymap.h \
585 $(SRC)/process.h \
586 $(SRC)/syssignal.h \
587 $(SRC)/systime.h \
588 $(SRC)/systty.h \
589 $(SRC)/termhooks.h \
590 $(SRC)/w32bdf.h \
591 $(SRC)/w32gui.h \
592 $(SRC)/window.h
593
594 $(BLD)/eval.$(O) : \
595 $(SRC)/eval.c \
596 $(EMACS_ROOT)/src/s/ms-w32.h \
597 $(EMACS_ROOT)/src/m/intel386.h \
598 $(EMACS_ROOT)/src/config.h \
599 $(SRC)/atimer.h \
600 $(SRC)/blockinput.h \
601 $(SRC)/commands.h \
602 $(SRC)/dispextern.h \
603 $(SRC)/keyboard.h \
604 $(SRC)/systime.h \
605 $(SRC)/w32bdf.h \
606 $(SRC)/w32gui.h
607
608 $(BLD)/fileio.$(O) : \
609 $(SRC)/fileio.c \
610 $(EMACS_ROOT)/src/s/ms-w32.h \
611 $(EMACS_ROOT)/src/m/intel386.h \
612 $(EMACS_ROOT)/src/config.h \
613 $(EMACS_ROOT)/nt/inc/pwd.h \
614 $(EMACS_ROOT)/nt/inc/sys/param.h \
615 $(EMACS_ROOT)/nt/inc/sys/file.h \
616 $(SRC)/buffer.h \
617 $(SRC)/ccl.h \
618 $(SRC)/charset.h \
619 $(SRC)/coding.h \
620 $(SRC)/commands.h \
621 $(SRC)/composite.h \
622 $(SRC)/dispextern.h \
623 $(SRC)/intervals.h \
624 $(SRC)/systime.h \
625 $(SRC)/w32bdf.h \
626 $(SRC)/w32gui.h \
627 $(SRC)/window.h
628
629 $(BLD)/filelock.$(O) : \
630 $(SRC)/filelock.c \
631 $(EMACS_ROOT)/src/s/ms-w32.h \
632 $(EMACS_ROOT)/src/m/intel386.h \
633 $(EMACS_ROOT)/src/config.h \
634 $(EMACS_ROOT)/nt/inc/pwd.h \
635 $(EMACS_ROOT)/nt/inc/sys/file.h \
636 $(EMACS_ROOT)/src/epaths.h \
637 $(SRC)/buffer.h \
638 $(SRC)/ccl.h \
639 $(SRC)/charset.h \
640 $(SRC)/coding.h \
641 $(SRC)/systime.h
642
643 $(BLD)/filemode.$(O) : \
644 $(SRC)/filemode.c \
645 $(EMACS_ROOT)/src/s/ms-w32.h \
646 $(EMACS_ROOT)/src/m/intel386.h \
647 $(EMACS_ROOT)/src/config.h \
648 $(SRC)/s/ms-w32.h \
649 $(SRC)/m/intel386.h \
650 $(SRC)/config.h
651
652 $(BLD)/firstfile.$(O) : \
653 $(SRC)/firstfile.c \
654 $(EMACS_ROOT)/src/s/ms-w32.h \
655 $(EMACS_ROOT)/src/m/intel386.h \
656 $(EMACS_ROOT)/src/config.h
657
658 $(BLD)/floatfns.$(O) : \
659 $(SRC)/floatfns.c \
660 $(EMACS_ROOT)/src/s/ms-w32.h \
661 $(EMACS_ROOT)/src/m/intel386.h \
662 $(EMACS_ROOT)/src/config.h \
663 $(SRC)/syssignal.h
664
665 $(BLD)/fns.$(O) : \
666 $(SRC)/fns.c \
667 $(EMACS_ROOT)/src/s/ms-w32.h \
668 $(EMACS_ROOT)/src/m/intel386.h \
669 $(EMACS_ROOT)/src/config.h \
670 $(SRC)/atimer.h \
671 $(SRC)/blockinput.h \
672 $(SRC)/buffer.h \
673 $(SRC)/ccl.h \
674 $(SRC)/charset.h \
675 $(SRC)/coding.h \
676 $(SRC)/commands.h \
677 $(SRC)/composite.h \
678 $(SRC)/dispextern.h \
679 $(SRC)/frame.h \
680 $(SRC)/intervals.h \
681 $(SRC)/keyboard.h \
682 $(SRC)/keymap.h \
683 $(SRC)/md5.h \
684 $(SRC)/systime.h \
685 $(SRC)/w32bdf.h \
686 $(SRC)/w32gui.h \
687 $(SRC)/window.h
688
689 $(BLD)/fontset.$(O) : \
690 $(SRC)/fontset.c \
691 $(EMACS_ROOT)/src/s/ms-w32.h \
692 $(EMACS_ROOT)/src/m/intel386.h \
693 $(EMACS_ROOT)/src/config.h \
694 $(SRC)/buffer.h \
695 $(SRC)/ccl.h \
696 $(SRC)/charset.h \
697 $(SRC)/dispextern.h \
698 $(SRC)/fontset.h \
699 $(SRC)/frame.h \
700 $(SRC)/keyboard.h \
701 $(SRC)/w32bdf.h \
702 $(SRC)/w32gui.h \
703 $(SRC)/window.h
704
705 $(BLD)/frame.$(O) : \
706 $(SRC)/frame.c \
707 $(EMACS_ROOT)/src/s/ms-w32.h \
708 $(EMACS_ROOT)/src/m/intel386.h \
709 $(EMACS_ROOT)/src/config.h \
710 $(SRC)/atimer.h \
711 $(SRC)/blockinput.h \
712 $(SRC)/buffer.h \
713 $(SRC)/charset.h \
714 $(SRC)/commands.h \
715 $(SRC)/dispextern.h \
716 $(SRC)/fontset.h \
717 $(SRC)/frame.h \
718 $(SRC)/keyboard.h \
719 $(SRC)/systime.h \
720 $(SRC)/termhooks.h \
721 $(SRC)/w32bdf.h \
722 $(SRC)/w32gui.h \
723 $(SRC)/w32term.h \
724 $(SRC)/window.h
725
726 $(BLD)/fringe.$(O) : \
727 $(SRC)/fringe.c \
728 $(EMACS_ROOT)/src/s/ms-w32.h \
729 $(EMACS_ROOT)/src/m/intel386.h \
730 $(EMACS_ROOT)/src/config.h \
731 $(SRC)/atimer.h \
732 $(SRC)/blockinput.h \
733 $(SRC)/buffer.h \
734 $(SRC)/dispextern.h \
735 $(SRC)/frame.h \
736 $(SRC)/systime.h \
737 $(SRC)/w32bdf.h \
738 $(SRC)/w32gui.h \
739 $(SRC)/window.h
740
741 $(BLD)/gmalloc.$(O) : \
742 $(SRC)/gmalloc.c \
743 $(EMACS_ROOT)/src/s/ms-w32.h \
744 $(EMACS_ROOT)/src/m/intel386.h \
745 $(EMACS_ROOT)/src/config.h \
746 $(EMACS_ROOT)/nt/inc/sys/param.h \
747 $(SRC)/getpagesize.h
748
749 $(BLD)/indent.$(O) : \
750 $(SRC)/indent.c \
751 $(EMACS_ROOT)/src/s/ms-w32.h \
752 $(EMACS_ROOT)/src/m/intel386.h \
753 $(EMACS_ROOT)/src/config.h \
754 $(SRC)/buffer.h \
755 $(SRC)/category.h \
756 $(SRC)/charset.h \
757 $(SRC)/composite.h \
758 $(SRC)/dispextern.h \
759 $(SRC)/disptab.h \
760 $(SRC)/frame.h \
761 $(SRC)/indent.h \
762 $(SRC)/intervals.h \
763 $(SRC)/keyboard.h \
764 $(SRC)/region-cache.h \
765 $(SRC)/termchar.h \
766 $(SRC)/termopts.h \
767 $(SRC)/w32bdf.h \
768 $(SRC)/w32gui.h \
769 $(SRC)/window.h
770
771 $(BLD)/insdel.$(O) : \
772 $(SRC)/insdel.c \
773 $(EMACS_ROOT)/src/s/ms-w32.h \
774 $(EMACS_ROOT)/src/m/intel386.h \
775 $(EMACS_ROOT)/src/config.h \
776 $(SRC)/atimer.h \
777 $(SRC)/blockinput.h \
778 $(SRC)/buffer.h \
779 $(SRC)/charset.h \
780 $(SRC)/composite.h \
781 $(SRC)/dispextern.h \
782 $(SRC)/intervals.h \
783 $(SRC)/region-cache.h \
784 $(SRC)/systime.h \
785 $(SRC)/w32bdf.h \
786 $(SRC)/w32gui.h \
787 $(SRC)/window.h
788
789 $(BLD)/intervals.$(O) : \
790 $(SRC)/intervals.c \
791 $(EMACS_ROOT)/src/s/ms-w32.h \
792 $(EMACS_ROOT)/src/m/intel386.h \
793 $(EMACS_ROOT)/src/config.h \
794 $(SRC)/buffer.h \
795 $(SRC)/composite.h \
796 $(SRC)/dispextern.h \
797 $(SRC)/intervals.h \
798 $(SRC)/keyboard.h \
799 $(SRC)/keymap.h \
800 $(SRC)/puresize.h \
801 $(SRC)/w32bdf.h \
802 $(SRC)/w32gui.h
803
804 $(BLD)/keyboard.$(O) : \
805 $(SRC)/keyboard.c \
806 $(EMACS_ROOT)/src/s/ms-w32.h \
807 $(EMACS_ROOT)/src/m/intel386.h \
808 $(EMACS_ROOT)/src/config.h \
809 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
810 $(EMACS_ROOT)/nt/inc/sys/file.h \
811 $(SRC)/atimer.h \
812 $(SRC)/blockinput.h \
813 $(SRC)/buffer.h \
814 $(SRC)/charset.h \
815 $(SRC)/commands.h \
816 $(SRC)/composite.h \
817 $(SRC)/dispextern.h \
818 $(SRC)/disptab.h \
819 $(SRC)/frame.h \
820 $(SRC)/intervals.h \
821 $(SRC)/keyboard.h \
822 $(SRC)/keymap.h \
823 $(SRC)/macros.h \
824 $(SRC)/puresize.h \
825 $(SRC)/syntax.h \
826 $(SRC)/syssignal.h \
827 $(SRC)/systime.h \
828 $(SRC)/systty.h \
829 $(SRC)/termchar.h \
830 $(SRC)/termhooks.h \
831 $(SRC)/termopts.h \
832 $(SRC)/w32bdf.h \
833 $(SRC)/w32gui.h \
834 $(SRC)/w32term.h \
835 $(SRC)/window.h
836
837 $(BLD)/keymap.$(O) : \
838 $(SRC)/keymap.c \
839 $(EMACS_ROOT)/src/s/ms-w32.h \
840 $(EMACS_ROOT)/src/m/intel386.h \
841 $(EMACS_ROOT)/src/config.h \
842 $(SRC)/atimer.h \
843 $(SRC)/blockinput.h \
844 $(SRC)/buffer.h \
845 $(SRC)/charset.h \
846 $(SRC)/commands.h \
847 $(SRC)/composite.h \
848 $(SRC)/dispextern.h \
849 $(SRC)/intervals.h \
850 $(SRC)/keyboard.h \
851 $(SRC)/keymap.h \
852 $(SRC)/puresize.h \
853 $(SRC)/systime.h \
854 $(SRC)/termhooks.h \
855 $(SRC)/w32bdf.h \
856 $(SRC)/w32gui.h
857
858 $(BLD)/lastfile.$(O) : \
859 $(SRC)/lastfile.c \
860 $(EMACS_ROOT)/src/s/ms-w32.h \
861 $(EMACS_ROOT)/src/m/intel386.h \
862 $(EMACS_ROOT)/src/config.h
863
864 $(BLD)/lread.$(O) : \
865 $(SRC)/lread.c \
866 $(EMACS_ROOT)/src/s/ms-w32.h \
867 $(EMACS_ROOT)/src/m/intel386.h \
868 $(EMACS_ROOT)/src/config.h \
869 $(EMACS_ROOT)/nt/inc/sys/file.h \
870 $(EMACS_ROOT)/src/epaths.h \
871 $(SRC)/buffer.h \
872 $(SRC)/ccl.h \
873 $(SRC)/charset.h \
874 $(SRC)/coding.h \
875 $(SRC)/commands.h \
876 $(SRC)/composite.h \
877 $(SRC)/dispextern.h \
878 $(SRC)/intervals.h \
879 $(SRC)/keyboard.h \
880 $(SRC)/termhooks.h \
881 $(SRC)/w32bdf.h \
882 $(SRC)/w32gui.h
883
884 $(BLD)/macros.$(O) : \
885 $(SRC)/macros.c \
886 $(EMACS_ROOT)/src/s/ms-w32.h \
887 $(EMACS_ROOT)/src/m/intel386.h \
888 $(EMACS_ROOT)/src/config.h \
889 $(SRC)/buffer.h \
890 $(SRC)/commands.h \
891 $(SRC)/dispextern.h \
892 $(SRC)/keyboard.h \
893 $(SRC)/macros.h \
894 $(SRC)/w32bdf.h \
895 $(SRC)/w32gui.h \
896 $(SRC)/window.h
897
898 $(BLD)/marker.$(O) : \
899 $(SRC)/marker.c \
900 $(EMACS_ROOT)/src/s/ms-w32.h \
901 $(EMACS_ROOT)/src/m/intel386.h \
902 $(EMACS_ROOT)/src/config.h \
903 $(SRC)/buffer.h \
904 $(SRC)/charset.h
905
906 $(BLD)/md5.$(O) : \
907 $(SRC)/md5.c \
908 $(SRC)/md5.h
909
910 $(BLD)/minibuf.$(O) : \
911 $(SRC)/minibuf.c \
912 $(EMACS_ROOT)/src/s/ms-w32.h \
913 $(EMACS_ROOT)/src/m/intel386.h \
914 $(EMACS_ROOT)/src/config.h \
915 $(SRC)/buffer.h \
916 $(SRC)/charset.h \
917 $(SRC)/commands.h \
918 $(SRC)/composite.h \
919 $(SRC)/dispextern.h \
920 $(SRC)/frame.h \
921 $(SRC)/intervals.h \
922 $(SRC)/keyboard.h \
923 $(SRC)/keymap.h \
924 $(SRC)/syntax.h \
925 $(SRC)/w32bdf.h \
926 $(SRC)/w32gui.h \
927 $(SRC)/window.h
928
929 $(BLD)/w32.$(O) : \
930 $(SRC)/w32.c \
931 $(EMACS_ROOT)/nt/inc/pwd.h \
932 $(SRC)/s/ms-w32.h \
933 $(SRC)/m/intel386.h \
934 $(SRC)/config.h \
935 $(SRC)/ndir.h \
936 $(SRC)/systime.h \
937 $(SRC)/w32.h \
938 $(SRC)/w32heap.h
939
940 $(BLD)/w32heap.$(O) : \
941 $(SRC)/w32heap.c \
942 $(SRC)/s/ms-w32.h \
943 $(SRC)/m/intel386.h \
944 $(SRC)/config.h \
945 $(SRC)/w32heap.h
946
947 $(BLD)/w32inevt.$(O) : \
948 $(SRC)/w32inevt.c \
949 $(SRC)/s/ms-w32.h \
950 $(SRC)/m/intel386.h \
951 $(SRC)/config.h \
952 $(SRC)/atimer.h \
953 $(SRC)/blockinput.h \
954 $(SRC)/frame.h \
955 $(SRC)/keyboard.h \
956 $(SRC)/systime.h \
957 $(SRC)/termhooks.h \
958 $(SRC)/w32bdf.h \
959 $(SRC)/w32gui.h \
960 $(SRC)/w32heap.h \
961 $(SRC)/w32term.h
962
963 $(BLD)/w32proc.$(O) : \
964 $(SRC)/w32proc.c \
965 $(SRC)/s/ms-w32.h \
966 $(SRC)/m/intel386.h \
967 $(SRC)/config.h \
968 $(SRC)/process.h \
969 $(SRC)/syssignal.h \
970 $(SRC)/systime.h \
971 $(SRC)/syswait.h \
972 $(SRC)/w32.h \
973 $(SRC)/w32bdf.h \
974 $(SRC)/w32gui.h \
975 $(SRC)/w32heap.h \
976 $(SRC)/w32term.h
977
978 $(BLD)/w32console.$(O) : \
979 $(SRC)/w32console.c \
980 $(SRC)/s/ms-w32.h \
981 $(SRC)/m/intel386.h \
982 $(SRC)/ccl.h \
983 $(SRC)/charset.h \
984 $(SRC)/coding.h \
985 $(SRC)/config.h \
986 $(SRC)/dispextern.h \
987 $(SRC)/disptab.h \
988 $(SRC)/frame.h \
989 $(SRC)/termhooks.h \
990 $(SRC)/w32bdf.h \
991 $(SRC)/w32gui.h \
992 $(SRC)/w32inevt.h
993
994 $(BLD)/print.$(O) : \
995 $(SRC)/print.c \
996 $(EMACS_ROOT)/src/s/ms-w32.h \
997 $(EMACS_ROOT)/src/m/intel386.h \
998 $(EMACS_ROOT)/src/config.h \
999 $(SRC)/buffer.h \
1000 $(SRC)/charset.h \
1001 $(SRC)/composite.h \
1002 $(SRC)/dispextern.h \
1003 $(SRC)/frame.h \
1004 $(SRC)/intervals.h \
1005 $(SRC)/keyboard.h \
1006 $(SRC)/process.h \
1007 $(SRC)/termchar.h \
1008 $(SRC)/w32bdf.h \
1009 $(SRC)/w32gui.h \
1010 $(SRC)/window.h
1011
1012 $(BLD)/process.$(O) : \
1013 $(SRC)/process.c \
1014 $(EMACS_ROOT)/src/s/ms-w32.h \
1015 $(EMACS_ROOT)/src/m/intel386.h \
1016 $(EMACS_ROOT)/src/config.h \
1017 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1018 $(EMACS_ROOT)/nt/inc/sys/file.h \
1019 $(SRC)/atimer.h \
1020 $(SRC)/blockinput.h \
1021 $(SRC)/buffer.h \
1022 $(SRC)/ccl.h \
1023 $(SRC)/charset.h \
1024 $(SRC)/coding.h \
1025 $(SRC)/commands.h \
1026 $(SRC)/composite.h \
1027 $(SRC)/dispextern.h \
1028 $(SRC)/frame.h \
1029 $(SRC)/keyboard.h \
1030 $(SRC)/process.h \
1031 $(SRC)/sysselect.h \
1032 $(SRC)/syssignal.h \
1033 $(SRC)/systime.h \
1034 $(SRC)/systty.h \
1035 $(SRC)/syswait.h \
1036 $(SRC)/termhooks.h \
1037 $(SRC)/termopts.h \
1038 $(SRC)/w32bdf.h \
1039 $(SRC)/w32gui.h \
1040 $(SRC)/window.h
1041
1042 $(BLD)/ralloc.$(O) : \
1043 $(SRC)/ralloc.c \
1044 $(EMACS_ROOT)/src/s/ms-w32.h \
1045 $(EMACS_ROOT)/src/m/intel386.h \
1046 $(EMACS_ROOT)/src/config.h \
1047 $(EMACS_ROOT)/nt/inc/sys/param.h \
1048 $(SRC)/s/ms-w32.h \
1049 $(SRC)/m/intel386.h \
1050 $(SRC)/config.h \
1051 $(SRC)/getpagesize.h
1052
1053 $(BLD)/regex.$(O) : \
1054 $(SRC)/regex.c \
1055 $(EMACS_ROOT)/src/s/ms-w32.h \
1056 $(EMACS_ROOT)/src/m/intel386.h \
1057 $(EMACS_ROOT)/src/config.h \
1058 $(SRC)/s/ms-w32.h \
1059 $(SRC)/m/intel386.h \
1060 $(SRC)/buffer.h \
1061 $(SRC)/category.h \
1062 $(SRC)/charset.h \
1063 $(SRC)/config.h \
1064 $(SRC)/regex.h \
1065 $(SRC)/syntax.h
1066
1067 $(BLD)/region-cache.$(O) : \
1068 $(SRC)/region-cache.c \
1069 $(EMACS_ROOT)/src/s/ms-w32.h \
1070 $(EMACS_ROOT)/src/m/intel386.h \
1071 $(EMACS_ROOT)/src/config.h \
1072 $(SRC)/buffer.h \
1073 $(SRC)/region-cache.h
1074
1075 $(BLD)/scroll.$(O) : \
1076 $(SRC)/scroll.c \
1077 $(EMACS_ROOT)/src/s/ms-w32.h \
1078 $(EMACS_ROOT)/src/m/intel386.h \
1079 $(EMACS_ROOT)/src/config.h \
1080 $(SRC)/dispextern.h \
1081 $(SRC)/frame.h \
1082 $(SRC)/keyboard.h \
1083 $(SRC)/termchar.h \
1084 $(SRC)/w32bdf.h \
1085 $(SRC)/w32gui.h \
1086 $(SRC)/window.h
1087
1088 $(BLD)/search.$(O) : \
1089 $(SRC)/search.c \
1090 $(EMACS_ROOT)/src/s/ms-w32.h \
1091 $(EMACS_ROOT)/src/m/intel386.h \
1092 $(EMACS_ROOT)/src/config.h \
1093 $(SRC)/atimer.h \
1094 $(SRC)/blockinput.h \
1095 $(SRC)/buffer.h \
1096 $(SRC)/category.h \
1097 $(SRC)/charset.h \
1098 $(SRC)/commands.h \
1099 $(SRC)/composite.h \
1100 $(SRC)/dispextern.h \
1101 $(SRC)/intervals.h \
1102 $(SRC)/regex.h \
1103 $(SRC)/region-cache.h \
1104 $(SRC)/syntax.h \
1105 $(SRC)/systime.h \
1106 $(SRC)/w32bdf.h \
1107 $(SRC)/w32gui.h
1108
1109 $(BLD)/sound.$(O) : \
1110 $(SRC)/sound.c \
1111 $(SRC)/lisp.h \
1112 $(SRC)/dispextern.h \
1113 $(SRC)/atimer.h \
1114 $(SRC)/syssignal.h
1115
1116 $(BLD)/strftime.$(O) : \
1117 $(SRC)/strftime.c \
1118 $(EMACS_ROOT)/src/s/ms-w32.h \
1119 $(EMACS_ROOT)/src/m/intel386.h \
1120 $(EMACS_ROOT)/src/config.h
1121
1122 $(BLD)/syntax.$(O) : \
1123 $(SRC)/syntax.c \
1124 $(EMACS_ROOT)/src/s/ms-w32.h \
1125 $(EMACS_ROOT)/src/m/intel386.h \
1126 $(EMACS_ROOT)/src/config.h \
1127 $(SRC)/buffer.h \
1128 $(SRC)/category.h \
1129 $(SRC)/charset.h \
1130 $(SRC)/commands.h \
1131 $(SRC)/composite.h \
1132 $(SRC)/dispextern.h \
1133 $(SRC)/intervals.h \
1134 $(SRC)/keymap.h \
1135 $(SRC)/syntax.h \
1136 $(SRC)/w32bdf.h \
1137 $(SRC)/w32gui.h
1138
1139 $(BLD)/sysdep.$(O) : \
1140 $(SRC)/sysdep.c \
1141 $(EMACS_ROOT)/src/s/ms-w32.h \
1142 $(EMACS_ROOT)/src/m/intel386.h \
1143 $(EMACS_ROOT)/src/config.h \
1144 $(EMACS_ROOT)/nt/inc/sys/param.h \
1145 $(EMACS_ROOT)/nt/inc/sys/file.h \
1146 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1147 $(EMACS_ROOT)/nt/inc/sys/file.h \
1148 $(SRC)/atimer.h \
1149 $(SRC)/blockinput.h \
1150 $(SRC)/dispextern.h \
1151 $(SRC)/frame.h \
1152 $(SRC)/keyboard.h \
1153 $(SRC)/ndir.h \
1154 $(SRC)/process.h \
1155 $(SRC)/sysselect.h \
1156 $(SRC)/syssignal.h \
1157 $(SRC)/systime.h \
1158 $(SRC)/systty.h \
1159 $(SRC)/syswait.h \
1160 $(SRC)/termchar.h \
1161 $(SRC)/termhooks.h \
1162 $(SRC)/termopts.h \
1163 $(SRC)/w32bdf.h \
1164 $(SRC)/w32gui.h \
1165 $(SRC)/window.h
1166
1167 $(BLD)/term.$(O) : \
1168 $(SRC)/term.c \
1169 $(EMACS_ROOT)/src/s/ms-w32.h \
1170 $(EMACS_ROOT)/src/m/intel386.h \
1171 $(EMACS_ROOT)/src/config.h \
1172 $(SRC)/ccl.h \
1173 $(SRC)/charset.h \
1174 $(SRC)/cm.h \
1175 $(SRC)/coding.h \
1176 $(SRC)/dispextern.h \
1177 $(SRC)/disptab.h \
1178 $(SRC)/frame.h \
1179 $(SRC)/keyboard.h \
1180 $(SRC)/keymap.h \
1181 $(SRC)/termchar.h \
1182 $(SRC)/termhooks.h \
1183 $(SRC)/termopts.h \
1184 $(SRC)/w32bdf.h \
1185 $(SRC)/w32gui.h \
1186 $(SRC)/window.h
1187
1188 $(BLD)/termcap.$(O) : \
1189 $(SRC)/termcap.c \
1190 $(EMACS_ROOT)/src/s/ms-w32.h \
1191 $(EMACS_ROOT)/src/m/intel386.h \
1192 $(EMACS_ROOT)/src/config.h \
1193 $(EMACS_ROOT)/nt/inc/sys/file.h
1194
1195 $(BLD)/textprop.$(O) : \
1196 $(SRC)/textprop.c \
1197 $(EMACS_ROOT)/src/s/ms-w32.h \
1198 $(EMACS_ROOT)/src/m/intel386.h \
1199 $(EMACS_ROOT)/src/config.h \
1200 $(SRC)/buffer.h \
1201 $(SRC)/composite.h \
1202 $(SRC)/dispextern.h \
1203 $(SRC)/intervals.h \
1204 $(SRC)/w32bdf.h \
1205 $(SRC)/w32gui.h \
1206 $(SRC)/window.h
1207
1208 $(BLD)/tparam.$(O) : \
1209 $(SRC)/tparam.c \
1210 $(EMACS_ROOT)/src/s/ms-w32.h \
1211 $(EMACS_ROOT)/src/m/intel386.h \
1212 $(EMACS_ROOT)/src/config.h
1213
1214 $(BLD)/undo.$(O) : \
1215 $(SRC)/undo.c \
1216 $(EMACS_ROOT)/src/s/ms-w32.h \
1217 $(EMACS_ROOT)/src/m/intel386.h \
1218 $(EMACS_ROOT)/src/config.h \
1219 $(SRC)/buffer.h \
1220 $(SRC)/commands.h
1221
1222 $(BLD)/unexw32.$(O) : \
1223 $(SRC)/unexw32.c \
1224 $(EMACS_ROOT)/src/s/ms-w32.h \
1225 $(EMACS_ROOT)/src/m/intel386.h \
1226 $(EMACS_ROOT)/src/config.h \
1227 $(SRC)/w32heap.h
1228
1229 $(BLD)/vm-limit.$(O) : \
1230 $(SRC)/vm-limit.c \
1231 $(EMACS_ROOT)/src/s/ms-w32.h \
1232 $(EMACS_ROOT)/src/m/intel386.h \
1233 $(EMACS_ROOT)/src/config.h \
1234 $(SRC)/mem-limits.h
1235
1236 $(BLD)/window.$(O) : \
1237 $(SRC)/window.c \
1238 $(EMACS_ROOT)/src/s/ms-w32.h \
1239 $(EMACS_ROOT)/src/m/intel386.h \
1240 $(EMACS_ROOT)/src/config.h \
1241 $(SRC)/atimer.h \
1242 $(SRC)/blockinput.h \
1243 $(SRC)/buffer.h \
1244 $(SRC)/commands.h \
1245 $(SRC)/composite.h \
1246 $(SRC)/dispextern.h \
1247 $(SRC)/disptab.h \
1248 $(SRC)/frame.h \
1249 $(SRC)/indent.h \
1250 $(SRC)/intervals.h \
1251 $(SRC)/keyboard.h \
1252 $(SRC)/keymap.h \
1253 $(SRC)/systime.h \
1254 $(SRC)/termchar.h \
1255 $(SRC)/w32bdf.h \
1256 $(SRC)/w32gui.h \
1257 $(SRC)/w32term.h \
1258 $(SRC)/window.h
1259
1260 $(BLD)/xdisp.$(O) : \
1261 $(SRC)/xdisp.c \
1262 $(EMACS_ROOT)/src/s/ms-w32.h \
1263 $(EMACS_ROOT)/src/m/intel386.h \
1264 $(EMACS_ROOT)/src/config.h \
1265 $(SRC)/atimer.h \
1266 $(SRC)/blockinput.h \
1267 $(SRC)/buffer.h \
1268 $(SRC)/ccl.h \
1269 $(SRC)/charset.h \
1270 $(SRC)/coding.h \
1271 $(SRC)/commands.h \
1272 $(SRC)/composite.h \
1273 $(SRC)/dispextern.h \
1274 $(SRC)/disptab.h \
1275 $(SRC)/fontset.h \
1276 $(SRC)/frame.h \
1277 $(SRC)/indent.h \
1278 $(SRC)/intervals.h \
1279 $(SRC)/keyboard.h \
1280 $(SRC)/keymap.h \
1281 $(SRC)/macros.h \
1282 $(SRC)/process.h \
1283 $(SRC)/region-cache.h \
1284 $(SRC)/systime.h \
1285 $(SRC)/termchar.h \
1286 $(SRC)/termhooks.h \
1287 $(SRC)/w32bdf.h \
1288 $(SRC)/w32gui.h \
1289 $(SRC)/w32term.h \
1290 $(SRC)/window.h
1291
1292 $(BLD)/xfaces.$(O): \
1293 $(SRC)/xfaces.c \
1294 $(EMACS_ROOT)/src/s/ms-w32.h \
1295 $(EMACS_ROOT)/src/m/intel386.h \
1296 $(EMACS_ROOT)/src/config.h \
1297 $(SRC)/atimer.h \
1298 $(SRC)/blockinput.h \
1299 $(SRC)/buffer.h \
1300 $(SRC)/charset.h \
1301 $(SRC)/composite.h \
1302 $(SRC)/dispextern.h \
1303 $(SRC)/fontset.h \
1304 $(SRC)/frame.h \
1305 $(SRC)/intervals.h \
1306 $(SRC)/keyboard.h \
1307 $(SRC)/systime.h \
1308 $(SRC)/w32bdf.h \
1309 $(SRC)/w32gui.h \
1310 $(SRC)/w32term.h \
1311 $(SRC)/window.h
1312
1313 $(BLD)/w32fns.$(O): \
1314 $(SRC)/w32fns.c \
1315 $(EMACS_ROOT)/src/s/ms-w32.h \
1316 $(EMACS_ROOT)/src/m/intel386.h \
1317 $(EMACS_ROOT)/src/config.h \
1318 $(SRC)/atimer.h \
1319 $(SRC)/blockinput.h \
1320 $(SRC)/buffer.h \
1321 $(SRC)/ccl.h \
1322 $(SRC)/charset.h \
1323 $(SRC)/coding.h \
1324 $(SRC)/composite.h \
1325 $(SRC)/dispextern.h \
1326 $(SRC)/epaths.h \
1327 $(SRC)/fontset.h \
1328 $(SRC)/frame.h \
1329 $(SRC)/intervals.h \
1330 $(SRC)/keyboard.h \
1331 $(SRC)/systime.h \
1332 $(SRC)/termhooks.h \
1333 $(SRC)/w32bdf.h \
1334 $(SRC)/w32gui.h \
1335 $(SRC)/w32heap.h \
1336 $(SRC)/w32term.h \
1337 $(SRC)/window.h
1338
1339 $(BLD)/w32menu.$(O): \
1340 $(SRC)/w32menu.c \
1341 $(EMACS_ROOT)/src/s/ms-w32.h \
1342 $(EMACS_ROOT)/src/m/intel386.h \
1343 $(EMACS_ROOT)/src/config.h \
1344 $(SRC)/atimer.h \
1345 $(SRC)/blockinput.h \
1346 $(SRC)/buffer.h \
1347 $(SRC)/charset.h \
1348 $(SRC)/coding.h \
1349 $(SRC)/dispextern.h \
1350 $(SRC)/frame.h \
1351 $(SRC)/keyboard.h \
1352 $(SRC)/keymap.h \
1353 $(SRC)/systime.h \
1354 $(SRC)/termhooks.h \
1355 $(SRC)/w32bdf.h \
1356 $(SRC)/w32gui.h \
1357 $(SRC)/w32term.h \
1358 $(SRC)/window.h
1359
1360 $(BLD)/w32term.$(O): \
1361 $(SRC)/w32term.c \
1362 $(EMACS_ROOT)/src/s/ms-w32.h \
1363 $(EMACS_ROOT)/src/m/intel386.h \
1364 $(EMACS_ROOT)/src/config.h \
1365 $(SRC)/atimer.h \
1366 $(SRC)/blockinput.h \
1367 $(SRC)/buffer.h \
1368 $(SRC)/ccl.h \
1369 $(SRC)/charset.h \
1370 $(SRC)/coding.h \
1371 $(SRC)/composite.h \
1372 $(SRC)/dispextern.h \
1373 $(SRC)/disptab.h \
1374 $(SRC)/fontset.h \
1375 $(SRC)/frame.h \
1376 $(SRC)/gnu.h \
1377 $(SRC)/intervals.h \
1378 $(SRC)/keyboard.h \
1379 $(SRC)/keymap.h \
1380 $(SRC)/systime.h \
1381 $(SRC)/systty.h \
1382 $(SRC)/termchar.h \
1383 $(SRC)/termhooks.h \
1384 $(SRC)/termopts.h \
1385 $(SRC)/w32bdf.h \
1386 $(SRC)/w32gui.h \
1387 $(SRC)/w32heap.h \
1388 $(SRC)/w32term.h \
1389 $(SRC)/window.h
1390
1391 $(BLD)/w32select.$(O): \
1392 $(SRC)/w32select.c \
1393 $(EMACS_ROOT)/src/s/ms-w32.h \
1394 $(EMACS_ROOT)/src/m/intel386.h \
1395 $(EMACS_ROOT)/src/config.h \
1396 $(SRC)/atimer.h \
1397 $(SRC)/blockinput.h \
1398 $(SRC)/buffer.h \
1399 $(SRC)/ccl.h \
1400 $(SRC)/charset.h \
1401 $(SRC)/coding.h \
1402 $(SRC)/composite.h \
1403 $(SRC)/dispextern.h \
1404 $(SRC)/frame.h \
1405 $(SRC)/keyboard.h \
1406 $(SRC)/systime.h \
1407 $(SRC)/w32bdf.h \
1408 $(SRC)/w32gui.h \
1409 $(SRC)/w32term.h
1410
1411 $(BLD)/w32reg.$(O): \
1412 $(SRC)/w32reg.c \
1413 $(EMACS_ROOT)/src/s/ms-w32.h \
1414 $(EMACS_ROOT)/src/m/intel386.h \
1415 $(EMACS_ROOT)/src/config.h \
1416 $(SRC)/atimer.h \
1417 $(SRC)/blockinput.h \
1418 $(SRC)/systime.h \
1419 $(SRC)/w32bdf.h \
1420 $(SRC)/w32gui.h \
1421 $(SRC)/w32term.h
1422
1423 $(BLD)/w32xfns.$(O): \
1424 $(SRC)/w32xfns.c \
1425 $(EMACS_ROOT)/src/s/ms-w32.h \
1426 $(EMACS_ROOT)/src/m/intel386.h \
1427 $(EMACS_ROOT)/src/config.h \
1428 $(SRC)/atimer.h \
1429 $(SRC)/blockinput.h \
1430 $(SRC)/charset.h \
1431 $(SRC)/fontset.h \
1432 $(SRC)/frame.h \
1433 $(SRC)/keyboard.h \
1434 $(SRC)/systime.h \
1435 $(SRC)/w32bdf.h \
1436 $(SRC)/w32gui.h \
1437 $(SRC)/w32term.h
1438
1439 $(BLD)/w32bdf.$(O): \
1440 $(SRC)/w32bdf.c \
1441 $(EMACS_ROOT)/src/s/ms-w32.h \
1442 $(EMACS_ROOT)/src/m/intel386.h \
1443 $(EMACS_ROOT)/src/config.h \
1444 $(SRC)/atimer.h \
1445 $(SRC)/blockinput.h \
1446 $(SRC)/charset.h \
1447 $(SRC)/dispextern.h \
1448 $(SRC)/fontset.h \
1449 $(SRC)/frame.h \
1450 $(SRC)/keyboard.h \
1451 $(SRC)/systime.h \
1452 $(SRC)/w32bdf.h \
1453 $(SRC)/w32gui.h \
1454 $(SRC)/w32term.h
1455
1456 # arch-tag: 9fd7aba8-f826-4111-b3c0-497a8e7db9a0