]> code.delx.au - gnu-emacs/blob - src/makefile.w32-in
All dependencies updated.
[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)/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)/buffer.h \
261 $(SRC)/charset.h \
262 $(SRC)/commands.h \
263 $(SRC)/dispextern.h \
264 $(SRC)/syntax.h \
265 $(SRC)/w32bdf.h \
266 $(SRC)/w32gui.h \
267 $(SRC)/window.h
268
269 $(BLD)/alloc.$(O) : \
270 $(SRC)/alloc.c \
271 $(EMACS_ROOT)/src/s/ms-w32.h \
272 $(EMACS_ROOT)/src/m/intel386.h \
273 $(EMACS_ROOT)/src/config.h \
274 $(SRC)/blockinput.h \
275 $(SRC)/buffer.h \
276 $(SRC)/charset.h \
277 $(SRC)/composite.h \
278 $(SRC)/dispextern.h \
279 $(SRC)/frame.h \
280 $(SRC)/intervals.h \
281 $(SRC)/keyboard.h \
282 $(SRC)/process.h \
283 $(SRC)/puresize.h \
284 $(SRC)/syssignal.h \
285 $(SRC)/w32bdf.h \
286 $(SRC)/w32gui.h \
287 $(SRC)/window.h
288
289 $(BLD)/alloca.$(O) : \
290 $(SRC)/alloca.c \
291 $(EMACS_ROOT)/src/s/ms-w32.h \
292 $(EMACS_ROOT)/src/m/intel386.h \
293 $(EMACS_ROOT)/src/config.h \
294 $(SRC)/s/ms-w32.h \
295 $(SRC)/m/intel386.h \
296 $(SRC)/config.h \
297 $(SRC)/atimer.h \
298 $(SRC)/blockinput.h \
299 $(SRC)/systime.h
300
301 $(BLD)/atimer.$(O) : \
302 $(SRC)/atimer.c \
303 $(EMACS_ROOT)/src/s/ms-w32.h \
304 $(EMACS_ROOT)/src/m/intel386.h \
305 $(EMACS_ROOT)/src/config.h \
306 $(SRC)/s/ms-w32.h \
307 $(SRC)/m/intel386.h \
308 $(SRC)/config.h \
309 $(SRC)/atimer.h \
310 $(SRC)/blockinput.h \
311 $(SRC)/syssignal.h \
312 $(SRC)/systime.h
313
314 $(BLD)/buffer.$(O) : \
315 $(SRC)/buffer.c \
316 $(EMACS_ROOT)/nt/inc/sys/param.h \
317 $(EMACS_ROOT)/src/s/ms-w32.h \
318 $(EMACS_ROOT)/src/m/intel386.h \
319 $(EMACS_ROOT)/src/config.h \
320 $(SRC)/blockinput.h \
321 $(SRC)/buffer.h \
322 $(SRC)/charset.h \
323 $(SRC)/commands.h \
324 $(SRC)/composite.h \
325 $(SRC)/dispextern.h \
326 $(SRC)/frame.h \
327 $(SRC)/indent.h \
328 $(SRC)/intervals.h \
329 $(SRC)/keyboard.h \
330 $(SRC)/keymap.h \
331 $(SRC)/region-cache.h \
332 $(SRC)/w32bdf.h \
333 $(SRC)/w32gui.h \
334 $(SRC)/window.h
335
336 $(BLD)/bytecode.$(O) : \
337 $(SRC)/bytecode.c \
338 $(EMACS_ROOT)/src/s/ms-w32.h \
339 $(EMACS_ROOT)/src/m/intel386.h \
340 $(EMACS_ROOT)/src/config.h \
341 $(SRC)/buffer.h \
342 $(SRC)/charset.h \
343 $(SRC)/syntax.h
344
345 $(BLD)/callint.$(O) : \
346 $(SRC)/callint.c \
347 $(EMACS_ROOT)/src/s/ms-w32.h \
348 $(EMACS_ROOT)/src/m/intel386.h \
349 $(EMACS_ROOT)/src/config.h \
350 $(SRC)/buffer.h \
351 $(SRC)/commands.h \
352 $(SRC)/dispextern.h \
353 $(SRC)/keyboard.h \
354 $(SRC)/keymap.h \
355 $(SRC)/w32bdf.h \
356 $(SRC)/w32gui.h \
357 $(SRC)/window.h
358
359 $(BLD)/callproc.$(O) : \
360 $(SRC)/callproc.c \
361 $(EMACS_ROOT)/src/s/ms-w32.h \
362 $(EMACS_ROOT)/src/m/intel386.h \
363 $(EMACS_ROOT)/src/config.h \
364 $(EMACS_ROOT)/nt/inc/sys/param.h \
365 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
366 $(EMACS_ROOT)/nt/inc/sys/file.h \
367 $(SRC)/buffer.h \
368 $(SRC)/ccl.h \
369 $(SRC)/charset.h \
370 $(SRC)/coding.h \
371 $(SRC)/commands.h \
372 $(SRC)/composite.h \
373 $(SRC)/epaths.h \
374 $(SRC)/process.h \
375 $(SRC)/syssignal.h \
376 $(SRC)/systty.h \
377 $(SRC)/w32.h
378
379 $(BLD)/casefiddle.$(O) : \
380 $(SRC)/casefiddle.c \
381 $(EMACS_ROOT)/src/s/ms-w32.h \
382 $(EMACS_ROOT)/src/m/intel386.h \
383 $(EMACS_ROOT)/src/config.h \
384 $(SRC)/buffer.h \
385 $(SRC)/charset.h \
386 $(SRC)/commands.h \
387 $(SRC)/composite.h \
388 $(SRC)/keymap.h \
389 $(SRC)/syntax.h
390
391 $(BLD)/casetab.$(O) : \
392 $(SRC)/casetab.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)/charset.h
398
399 $(BLD)/category.$(O) : \
400 $(SRC)/category.c \
401 $(EMACS_ROOT)/src/s/ms-w32.h \
402 $(EMACS_ROOT)/src/m/intel386.h \
403 $(EMACS_ROOT)/src/config.h \
404 $(SRC)/buffer.h \
405 $(SRC)/category.h \
406 $(SRC)/charset.h \
407 $(SRC)/keymap.h
408
409 $(BLD)/ccl.$(O) : \
410 $(SRC)/ccl.c \
411 $(EMACS_ROOT)/src/s/ms-w32.h \
412 $(EMACS_ROOT)/src/m/intel386.h \
413 $(EMACS_ROOT)/src/config.h \
414 $(SRC)/ccl.h \
415 $(SRC)/charset.h \
416 $(SRC)/coding.h
417
418 $(BLD)/charset.$(O) : \
419 $(SRC)/charset.c \
420 $(EMACS_ROOT)/src/s/ms-w32.h \
421 $(EMACS_ROOT)/src/m/intel386.h \
422 $(EMACS_ROOT)/src/config.h \
423 $(SRC)/buffer.h \
424 $(SRC)/ccl.h \
425 $(SRC)/charset.h \
426 $(SRC)/coding.h \
427 $(SRC)/composite.h \
428 $(SRC)/disptab.h
429
430 $(BLD)/cm.$(O) : \
431 $(SRC)/cm.c \
432 $(EMACS_ROOT)/src/s/ms-w32.h \
433 $(EMACS_ROOT)/src/m/intel386.h \
434 $(EMACS_ROOT)/src/config.h \
435 $(SRC)/cm.h \
436 $(SRC)/termhooks.h
437
438 $(BLD)/cmds.$(O) : \
439 $(SRC)/cmds.c \
440 $(EMACS_ROOT)/src/s/ms-w32.h \
441 $(EMACS_ROOT)/src/m/intel386.h \
442 $(EMACS_ROOT)/src/config.h \
443 $(SRC)/buffer.h \
444 $(SRC)/charset.h \
445 $(SRC)/commands.h \
446 $(SRC)/dispextern.h \
447 $(SRC)/keyboard.h \
448 $(SRC)/keymap.h \
449 $(SRC)/syntax.h \
450 $(SRC)/w32bdf.h \
451 $(SRC)/w32gui.h \
452 $(SRC)/window.h
453
454 $(BLD)/coding.$(O) : \
455 $(SRC)/coding.c \
456 $(EMACS_ROOT)/src/s/ms-w32.h \
457 $(EMACS_ROOT)/src/m/intel386.h \
458 $(EMACS_ROOT)/src/config.h \
459 $(SRC)/buffer.h \
460 $(SRC)/ccl.h \
461 $(SRC)/charset.h \
462 $(SRC)/coding.h \
463 $(SRC)/composite.h \
464 $(SRC)/dispextern.h \
465 $(SRC)/w32bdf.h \
466 $(SRC)/w32gui.h \
467 $(SRC)/window.h
468
469 $(BLD)/composite.$(O) : \
470 $(SRC)/composite.c \
471 $(EMACS_ROOT)/src/s/ms-w32.h \
472 $(EMACS_ROOT)/src/m/intel386.h \
473 $(EMACS_ROOT)/src/config.h \
474 $(SRC)/buffer.h \
475 $(SRC)/charset.h \
476 $(SRC)/composite.h \
477 $(SRC)/dispextern.h \
478 $(SRC)/intervals.h \
479 $(SRC)/w32bdf.h \
480 $(SRC)/w32gui.h
481
482 $(BLD)/data.$(O) : \
483 $(SRC)/data.c \
484 $(EMACS_ROOT)/src/s/ms-w32.h \
485 $(EMACS_ROOT)/src/m/intel386.h \
486 $(EMACS_ROOT)/src/config.h \
487 $(SRC)/buffer.h \
488 $(SRC)/charset.h \
489 $(SRC)/frame.h \
490 $(SRC)/keyboard.h \
491 $(SRC)/puresize.h \
492 $(SRC)/syssignal.h
493
494 $(BLD)/dired.$(O) : \
495 $(SRC)/dired.c \
496 $(EMACS_ROOT)/src/s/ms-w32.h \
497 $(EMACS_ROOT)/src/m/intel386.h \
498 $(EMACS_ROOT)/src/config.h \
499 $(SRC)/buffer.h \
500 $(SRC)/ccl.h \
501 $(SRC)/charset.h \
502 $(SRC)/coding.h \
503 $(SRC)/commands.h \
504 $(SRC)/ndir.h \
505 $(SRC)/regex.h \
506 $(SRC)/systime.h
507
508 $(BLD)/dispnew.$(O) : \
509 $(SRC)/dispnew.c \
510 $(EMACS_ROOT)/src/s/ms-w32.h \
511 $(EMACS_ROOT)/src/m/intel386.h \
512 $(EMACS_ROOT)/src/config.h \
513 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
514 $(EMACS_ROOT)/nt/inc/sys/file.h \
515 $(SRC)/atimer.h \
516 $(SRC)/blockinput.h \
517 $(SRC)/buffer.h \
518 $(SRC)/charset.h \
519 $(SRC)/cm.h \
520 $(SRC)/commands.h \
521 $(SRC)/composite.h \
522 $(SRC)/dispextern.h \
523 $(SRC)/disptab.h \
524 $(SRC)/frame.h \
525 $(SRC)/indent.h \
526 $(SRC)/intervals.h \
527 $(SRC)/keyboard.h \
528 $(SRC)/process.h \
529 $(SRC)/syssignal.h \
530 $(SRC)/systime.h \
531 $(SRC)/termchar.h \
532 $(SRC)/termhooks.h \
533 $(SRC)/termopts.h \
534 $(SRC)/w32bdf.h \
535 $(SRC)/w32gui.h \
536 $(SRC)/w32term.h \
537 $(SRC)/window.h
538
539 $(BLD)/doc.$(O) : \
540 $(SRC)/doc.c \
541 $(EMACS_ROOT)/src/s/ms-w32.h \
542 $(EMACS_ROOT)/src/m/intel386.h \
543 $(EMACS_ROOT)/src/config.h \
544 $(EMACS_ROOT)/nt/inc/sys/file.h \
545 $(SRC)/buffer.h \
546 $(SRC)/charset.h \
547 $(SRC)/keyboard.h \
548 $(SRC)/keymap.h
549
550 $(BLD)/doprnt.$(O) : \
551 $(SRC)/doprnt.c \
552 $(EMACS_ROOT)/src/s/ms-w32.h \
553 $(EMACS_ROOT)/src/m/intel386.h \
554 $(EMACS_ROOT)/src/config.h \
555 $(SRC)/charset.c
556
557 $(BLD)/editfns.$(O) : \
558 $(SRC)/editfns.c \
559 $(EMACS_ROOT)/src/s/ms-w32.h \
560 $(EMACS_ROOT)/src/m/intel386.h \
561 $(EMACS_ROOT)/src/config.h \
562 $(EMACS_ROOT)/nt/inc/pwd.h \
563 $(SRC)/buffer.h \
564 $(SRC)/ccl.h \
565 $(SRC)/charset.h \
566 $(SRC)/coding.h \
567 $(SRC)/composite.h \
568 $(SRC)/dispextern.h \
569 $(SRC)/frame.h \
570 $(SRC)/intervals.h \
571 $(SRC)/systime.h \
572 $(SRC)/w32bdf.h \
573 $(SRC)/w32gui.h \
574 $(SRC)/window.h
575
576 $(BLD)/emacs.$(O) : \
577 $(SRC)/emacs.c \
578 $(EMACS_ROOT)/src/s/ms-w32.h \
579 $(EMACS_ROOT)/src/m/intel386.h \
580 $(EMACS_ROOT)/src/config.h \
581 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
582 $(EMACS_ROOT)/nt/inc/sys/file.h \
583 $(SRC)/atimer.h \
584 $(SRC)/blockinput.h \
585 $(SRC)/buffer.h \
586 $(SRC)/commands.h \
587 $(SRC)/composite.h \
588 $(SRC)/dispextern.h \
589 $(SRC)/intervals.h \
590 $(SRC)/keyboard.h \
591 $(SRC)/keymap.h \
592 $(SRC)/process.h \
593 $(SRC)/syssignal.h \
594 $(SRC)/systime.h \
595 $(SRC)/systty.h \
596 $(SRC)/termhooks.h \
597 $(SRC)/w32bdf.h \
598 $(SRC)/w32gui.h
599
600 $(BLD)/eval.$(O) : \
601 $(SRC)/eval.c \
602 $(EMACS_ROOT)/src/s/ms-w32.h \
603 $(EMACS_ROOT)/src/m/intel386.h \
604 $(EMACS_ROOT)/src/config.h \
605 $(SRC)/atimer.h \
606 $(SRC)/blockinput.h \
607 $(SRC)/commands.h \
608 $(SRC)/dispextern.h \
609 $(SRC)/keyboard.h \
610 $(SRC)/systime.h \
611 $(SRC)/w32bdf.h \
612 $(SRC)/w32gui.h
613
614 $(BLD)/fileio.$(O) : \
615 $(SRC)/fileio.c \
616 $(EMACS_ROOT)/src/s/ms-w32.h \
617 $(EMACS_ROOT)/src/m/intel386.h \
618 $(EMACS_ROOT)/src/config.h \
619 $(EMACS_ROOT)/nt/inc/pwd.h \
620 $(EMACS_ROOT)/nt/inc/sys/param.h \
621 $(EMACS_ROOT)/nt/inc/sys/file.h \
622 $(SRC)/buffer.h \
623 $(SRC)/ccl.h \
624 $(SRC)/charset.h \
625 $(SRC)/coding.h \
626 $(SRC)/commands.h \
627 $(SRC)/composite.h \
628 $(SRC)/dispextern.h \
629 $(SRC)/intervals.h \
630 $(SRC)/systime.h \
631 $(SRC)/w32bdf.h \
632 $(SRC)/w32gui.h \
633 $(SRC)/window.h
634
635 $(BLD)/filelock.$(O) : \
636 $(SRC)/filelock.c \
637 $(EMACS_ROOT)/src/s/ms-w32.h \
638 $(EMACS_ROOT)/src/m/intel386.h \
639 $(EMACS_ROOT)/src/config.h \
640 $(EMACS_ROOT)/nt/inc/pwd.h \
641 $(EMACS_ROOT)/nt/inc/sys/file.h \
642 $(EMACS_ROOT)/src/epaths.h \
643 $(SRC)/buffer.h \
644 $(SRC)/ccl.h \
645 $(SRC)/charset.h \
646 $(SRC)/coding.h \
647 $(SRC)/systime.h
648
649 $(BLD)/filemode.$(O) : \
650 $(SRC)/filemode.c \
651 $(EMACS_ROOT)/src/s/ms-w32.h \
652 $(EMACS_ROOT)/src/m/intel386.h \
653 $(EMACS_ROOT)/src/config.h \
654 $(SRC)/s/ms-w32.h \
655 $(SRC)/m/intel386.h \
656 $(SRC)/config.h
657
658 $(BLD)/firstfile.$(O) : \
659 $(SRC)/firstfile.c \
660 $(EMACS_ROOT)/src/s/ms-w32.h \
661 $(EMACS_ROOT)/src/m/intel386.h \
662 $(EMACS_ROOT)/src/config.h
663
664 $(BLD)/floatfns.$(O) : \
665 $(SRC)/floatfns.c \
666 $(EMACS_ROOT)/src/s/ms-w32.h \
667 $(EMACS_ROOT)/src/m/intel386.h \
668 $(EMACS_ROOT)/src/config.h \
669 $(SRC)/syssignal.h
670
671 $(BLD)/fns.$(O) : \
672 $(SRC)/fns.c \
673 $(EMACS_ROOT)/src/s/ms-w32.h \
674 $(EMACS_ROOT)/src/m/intel386.h \
675 $(EMACS_ROOT)/src/config.h \
676 $(SRC)/atimer.h \
677 $(SRC)/blockinput.h \
678 $(SRC)/buffer.h \
679 $(SRC)/ccl.h \
680 $(SRC)/charset.h \
681 $(SRC)/coding.h \
682 $(SRC)/commands.h \
683 $(SRC)/composite.h \
684 $(SRC)/dispextern.h \
685 $(SRC)/frame.h \
686 $(SRC)/intervals.h \
687 $(SRC)/keyboard.h \
688 $(SRC)/keymap.h \
689 $(SRC)/md5.h \
690 $(SRC)/systime.h \
691 $(SRC)/w32bdf.h \
692 $(SRC)/w32gui.h \
693 $(SRC)/window.h
694
695 $(BLD)/fontset.$(O) : \
696 $(SRC)/fontset.c \
697 $(EMACS_ROOT)/src/s/ms-w32.h \
698 $(EMACS_ROOT)/src/m/intel386.h \
699 $(EMACS_ROOT)/src/config.h \
700 $(SRC)/buffer.h \
701 $(SRC)/ccl.h \
702 $(SRC)/charset.h \
703 $(SRC)/dispextern.h \
704 $(SRC)/fontset.h \
705 $(SRC)/frame.h \
706 $(SRC)/keyboard.h \
707 $(SRC)/w32bdf.h \
708 $(SRC)/w32gui.h \
709 $(SRC)/window.h
710
711 $(BLD)/frame.$(O) : \
712 $(SRC)/frame.c \
713 $(EMACS_ROOT)/src/s/ms-w32.h \
714 $(EMACS_ROOT)/src/m/intel386.h \
715 $(EMACS_ROOT)/src/config.h \
716 $(SRC)/buffer.h \
717 $(SRC)/charset.h \
718 $(SRC)/commands.h \
719 $(SRC)/dispextern.h \
720 $(SRC)/fontset.h \
721 $(SRC)/frame.h \
722 $(SRC)/keyboard.h \
723 $(SRC)/termhooks.h \
724 $(SRC)/w32bdf.h \
725 $(SRC)/w32gui.h \
726 $(SRC)/w32term.h \
727 $(SRC)/window.h
728
729 $(BLD)/gmalloc.$(O) : \
730 $(SRC)/gmalloc.c \
731 $(EMACS_ROOT)/src/s/ms-w32.h \
732 $(EMACS_ROOT)/src/m/intel386.h \
733 $(EMACS_ROOT)/src/config.h \
734 $(EMACS_ROOT)/nt/inc/sys/param.h \
735 $(SRC)/getpagesize.h
736
737 $(BLD)/indent.$(O) : \
738 $(SRC)/indent.c \
739 $(EMACS_ROOT)/src/s/ms-w32.h \
740 $(EMACS_ROOT)/src/m/intel386.h \
741 $(EMACS_ROOT)/src/config.h \
742 $(SRC)/buffer.h \
743 $(SRC)/category.h \
744 $(SRC)/charset.h \
745 $(SRC)/composite.h \
746 $(SRC)/dispextern.h \
747 $(SRC)/disptab.h \
748 $(SRC)/frame.h \
749 $(SRC)/indent.h \
750 $(SRC)/intervals.h \
751 $(SRC)/keyboard.h \
752 $(SRC)/region-cache.h \
753 $(SRC)/termchar.h \
754 $(SRC)/termopts.h \
755 $(SRC)/w32bdf.h \
756 $(SRC)/w32gui.h \
757 $(SRC)/window.h
758
759 $(BLD)/insdel.$(O) : \
760 $(SRC)/insdel.c \
761 $(EMACS_ROOT)/src/s/ms-w32.h \
762 $(EMACS_ROOT)/src/m/intel386.h \
763 $(EMACS_ROOT)/src/config.h \
764 $(SRC)/atimer.h \
765 $(SRC)/blockinput.h \
766 $(SRC)/buffer.h \
767 $(SRC)/charset.h \
768 $(SRC)/composite.h \
769 $(SRC)/dispextern.h \
770 $(SRC)/intervals.h \
771 $(SRC)/region-cache.h \
772 $(SRC)/systime.h \
773 $(SRC)/w32bdf.h \
774 $(SRC)/w32gui.h \
775 $(SRC)/window.h
776
777 $(BLD)/intervals.$(O) : \
778 $(SRC)/intervals.c \
779 $(EMACS_ROOT)/src/s/ms-w32.h \
780 $(EMACS_ROOT)/src/m/intel386.h \
781 $(EMACS_ROOT)/src/config.h \
782 $(SRC)/buffer.h \
783 $(SRC)/composite.h \
784 $(SRC)/dispextern.h \
785 $(SRC)/intervals.h \
786 $(SRC)/keyboard.h \
787 $(SRC)/keymap.h \
788 $(SRC)/puresize.h \
789 $(SRC)/w32bdf.h \
790 $(SRC)/w32gui.h
791
792 $(BLD)/keyboard.$(O) : \
793 $(SRC)/keyboard.c \
794 $(EMACS_ROOT)/src/s/ms-w32.h \
795 $(EMACS_ROOT)/src/m/intel386.h \
796 $(EMACS_ROOT)/src/config.h \
797 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
798 $(EMACS_ROOT)/nt/inc/sys/file.h \
799 $(SRC)/atimer.h \
800 $(SRC)/blockinput.h \
801 $(SRC)/buffer.h \
802 $(SRC)/charset.h \
803 $(SRC)/commands.h \
804 $(SRC)/composite.h \
805 $(SRC)/dispextern.h \
806 $(SRC)/disptab.h \
807 $(SRC)/frame.h \
808 $(SRC)/intervals.h \
809 $(SRC)/keyboard.h \
810 $(SRC)/keymap.h \
811 $(SRC)/macros.h \
812 $(SRC)/puresize.h \
813 $(SRC)/syntax.h \
814 $(SRC)/syssignal.h \
815 $(SRC)/systime.h \
816 $(SRC)/systty.h \
817 $(SRC)/termchar.h \
818 $(SRC)/termhooks.h \
819 $(SRC)/termopts.h \
820 $(SRC)/w32bdf.h \
821 $(SRC)/w32gui.h \
822 $(SRC)/w32term.h \
823 $(SRC)/window.h
824
825 $(BLD)/keymap.$(O) : \
826 $(SRC)/keymap.c \
827 $(EMACS_ROOT)/src/s/ms-w32.h \
828 $(EMACS_ROOT)/src/m/intel386.h \
829 $(EMACS_ROOT)/src/config.h \
830 $(SRC)/atimer.h \
831 $(SRC)/blockinput.h \
832 $(SRC)/buffer.h \
833 $(SRC)/charset.h \
834 $(SRC)/commands.h \
835 $(SRC)/composite.h \
836 $(SRC)/dispextern.h \
837 $(SRC)/intervals.h \
838 $(SRC)/keyboard.h \
839 $(SRC)/keymap.h \
840 $(SRC)/puresize.h \
841 $(SRC)/systime.h \
842 $(SRC)/termhooks.h \
843 $(SRC)/w32bdf.h \
844 $(SRC)/w32gui.h
845
846 $(BLD)/lastfile.$(O) : \
847 $(SRC)/lastfile.c \
848 $(EMACS_ROOT)/src/s/ms-w32.h \
849 $(EMACS_ROOT)/src/m/intel386.h \
850 $(EMACS_ROOT)/src/config.h
851
852 $(BLD)/lread.$(O) : \
853 $(SRC)/lread.c \
854 $(EMACS_ROOT)/src/s/ms-w32.h \
855 $(EMACS_ROOT)/src/m/intel386.h \
856 $(EMACS_ROOT)/src/config.h \
857 $(EMACS_ROOT)/nt/inc/sys/file.h \
858 $(EMACS_ROOT)/src/epaths.h \
859 $(SRC)/buffer.h \
860 $(SRC)/ccl.h \
861 $(SRC)/charset.h \
862 $(SRC)/coding.h \
863 $(SRC)/commands.h \
864 $(SRC)/composite.h \
865 $(SRC)/dispextern.h \
866 $(SRC)/intervals.h \
867 $(SRC)/keyboard.h \
868 $(SRC)/termhooks.h \
869 $(SRC)/w32bdf.h \
870 $(SRC)/w32gui.h
871
872 $(BLD)/macros.$(O) : \
873 $(SRC)/macros.c \
874 $(EMACS_ROOT)/src/s/ms-w32.h \
875 $(EMACS_ROOT)/src/m/intel386.h \
876 $(EMACS_ROOT)/src/config.h \
877 $(SRC)/buffer.h \
878 $(SRC)/commands.h \
879 $(SRC)/dispextern.h \
880 $(SRC)/keyboard.h \
881 $(SRC)/macros.h \
882 $(SRC)/w32bdf.h \
883 $(SRC)/w32gui.h \
884 $(SRC)/window.h
885
886 $(BLD)/marker.$(O) : \
887 $(SRC)/marker.c \
888 $(EMACS_ROOT)/src/s/ms-w32.h \
889 $(EMACS_ROOT)/src/m/intel386.h \
890 $(EMACS_ROOT)/src/config.h \
891 $(SRC)/buffer.h \
892 $(SRC)/charset.h
893
894 $(BLD)/md5.$(O) : \
895 $(SRC)/md5.c \
896 $(SRC)/md5.h
897
898 $(BLD)/minibuf.$(O) : \
899 $(SRC)/minibuf.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 $(SRC)/commands.h \
906 $(SRC)/composite.h \
907 $(SRC)/dispextern.h \
908 $(SRC)/frame.h \
909 $(SRC)/intervals.h \
910 $(SRC)/keyboard.h \
911 $(SRC)/keymap.h \
912 $(SRC)/syntax.h \
913 $(SRC)/w32bdf.h \
914 $(SRC)/w32gui.h \
915 $(SRC)/window.h
916
917 $(BLD)/w32.$(O) : \
918 $(SRC)/w32.c \
919 $(EMACS_ROOT)/nt/inc/pwd.h \
920 $(SRC)/s/ms-w32.h \
921 $(SRC)/m/intel386.h \
922 $(SRC)/config.h \
923 $(SRC)/ndir.h \
924 $(SRC)/systime.h \
925 $(SRC)/w32.h \
926 $(SRC)/w32heap.h
927
928 $(BLD)/w32heap.$(O) : \
929 $(SRC)/w32heap.c \
930 $(SRC)/s/ms-w32.h \
931 $(SRC)/m/intel386.h \
932 $(SRC)/config.h \
933 $(SRC)/w32heap.h
934
935 $(BLD)/w32inevt.$(O) : \
936 $(SRC)/w32inevt.c \
937 $(SRC)/s/ms-w32.h \
938 $(SRC)/m/intel386.h \
939 $(SRC)/config.h \
940 $(SRC)/atimer.h \
941 $(SRC)/blockinput.h \
942 $(SRC)/frame.h \
943 $(SRC)/keyboard.h \
944 $(SRC)/systime.h \
945 $(SRC)/termhooks.h \
946 $(SRC)/w32bdf.h \
947 $(SRC)/w32gui.h \
948 $(SRC)/w32heap.h \
949 $(SRC)/w32term.h
950
951 $(BLD)/w32proc.$(O) : \
952 $(SRC)/w32proc.c \
953 $(SRC)/s/ms-w32.h \
954 $(SRC)/m/intel386.h \
955 $(SRC)/config.h \
956 $(SRC)/process.h \
957 $(SRC)/syssignal.h \
958 $(SRC)/systime.h \
959 $(SRC)/syswait.h \
960 $(SRC)/w32.h \
961 $(SRC)/w32bdf.h \
962 $(SRC)/w32gui.h \
963 $(SRC)/w32heap.h \
964 $(SRC)/w32term.h
965
966 $(BLD)/w32console.$(O) : \
967 $(SRC)/w32console.c \
968 $(SRC)/s/ms-w32.h \
969 $(SRC)/m/intel386.h \
970 $(SRC)/ccl.h \
971 $(SRC)/charset.h \
972 $(SRC)/coding.h \
973 $(SRC)/config.h \
974 $(SRC)/dispextern.h \
975 $(SRC)/disptab.h \
976 $(SRC)/frame.h \
977 $(SRC)/termhooks.h \
978 $(SRC)/w32bdf.h \
979 $(SRC)/w32gui.h \
980 $(SRC)/w32inevt.h
981
982 $(BLD)/print.$(O) : \
983 $(SRC)/print.c \
984 $(EMACS_ROOT)/src/s/ms-w32.h \
985 $(EMACS_ROOT)/src/m/intel386.h \
986 $(EMACS_ROOT)/src/config.h \
987 $(SRC)/buffer.h \
988 $(SRC)/charset.h \
989 $(SRC)/composite.h \
990 $(SRC)/dispextern.h \
991 $(SRC)/frame.h \
992 $(SRC)/intervals.h \
993 $(SRC)/keyboard.h \
994 $(SRC)/process.h \
995 $(SRC)/termchar.h \
996 $(SRC)/w32bdf.h \
997 $(SRC)/w32gui.h \
998 $(SRC)/window.h
999
1000 $(BLD)/process.$(O) : \
1001 $(SRC)/process.c \
1002 $(EMACS_ROOT)/src/s/ms-w32.h \
1003 $(EMACS_ROOT)/src/m/intel386.h \
1004 $(EMACS_ROOT)/src/config.h \
1005 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1006 $(EMACS_ROOT)/nt/inc/sys/file.h \
1007 $(SRC)/atimer.h \
1008 $(SRC)/blockinput.h \
1009 $(SRC)/buffer.h \
1010 $(SRC)/ccl.h \
1011 $(SRC)/charset.h \
1012 $(SRC)/coding.h \
1013 $(SRC)/commands.h \
1014 $(SRC)/composite.h \
1015 $(SRC)/dispextern.h \
1016 $(SRC)/frame.h \
1017 $(SRC)/keyboard.h \
1018 $(SRC)/process.h \
1019 $(SRC)/sysselect.h \
1020 $(SRC)/syssignal.h \
1021 $(SRC)/systime.h \
1022 $(SRC)/systty.h \
1023 $(SRC)/syswait.h \
1024 $(SRC)/termhooks.h \
1025 $(SRC)/termopts.h \
1026 $(SRC)/w32bdf.h \
1027 $(SRC)/w32gui.h \
1028 $(SRC)/window.h
1029
1030 $(BLD)/ralloc.$(O) : \
1031 $(SRC)/ralloc.c \
1032 $(EMACS_ROOT)/src/s/ms-w32.h \
1033 $(EMACS_ROOT)/src/m/intel386.h \
1034 $(EMACS_ROOT)/src/config.h \
1035 $(EMACS_ROOT)/nt/inc/sys/param.h \
1036 $(SRC)/s/ms-w32.h \
1037 $(SRC)/m/intel386.h \
1038 $(SRC)/config.h \
1039 $(SRC)/getpagesize.h
1040
1041 $(BLD)/regex.$(O) : \
1042 $(SRC)/regex.c \
1043 $(EMACS_ROOT)/src/s/ms-w32.h \
1044 $(EMACS_ROOT)/src/m/intel386.h \
1045 $(EMACS_ROOT)/src/config.h \
1046 $(SRC)/s/ms-w32.h \
1047 $(SRC)/m/intel386.h \
1048 $(SRC)/buffer.h \
1049 $(SRC)/category.h \
1050 $(SRC)/charset.h \
1051 $(SRC)/config.h \
1052 $(SRC)/regex.h \
1053 $(SRC)/syntax.h
1054
1055 $(BLD)/region-cache.$(O) : \
1056 $(SRC)/region-cache.c \
1057 $(EMACS_ROOT)/src/s/ms-w32.h \
1058 $(EMACS_ROOT)/src/m/intel386.h \
1059 $(EMACS_ROOT)/src/config.h \
1060 $(SRC)/buffer.h \
1061 $(SRC)/region-cache.h
1062
1063 $(BLD)/scroll.$(O) : \
1064 $(SRC)/scroll.c \
1065 $(EMACS_ROOT)/src/s/ms-w32.h \
1066 $(EMACS_ROOT)/src/m/intel386.h \
1067 $(EMACS_ROOT)/src/config.h \
1068 $(SRC)/dispextern.h \
1069 $(SRC)/frame.h \
1070 $(SRC)/keyboard.h \
1071 $(SRC)/termchar.h \
1072 $(SRC)/w32bdf.h \
1073 $(SRC)/w32gui.h \
1074 $(SRC)/window.h
1075
1076 $(BLD)/search.$(O) : \
1077 $(SRC)/search.c \
1078 $(EMACS_ROOT)/src/s/ms-w32.h \
1079 $(EMACS_ROOT)/src/m/intel386.h \
1080 $(EMACS_ROOT)/src/config.h \
1081 $(SRC)/atimer.h \
1082 $(SRC)/blockinput.h \
1083 $(SRC)/buffer.h \
1084 $(SRC)/category.h \
1085 $(SRC)/charset.h \
1086 $(SRC)/commands.h \
1087 $(SRC)/composite.h \
1088 $(SRC)/dispextern.h \
1089 $(SRC)/intervals.h \
1090 $(SRC)/regex.h \
1091 $(SRC)/region-cache.h \
1092 $(SRC)/syntax.h \
1093 $(SRC)/systime.h \
1094 $(SRC)/w32bdf.h \
1095 $(SRC)/w32gui.h
1096
1097 $(BLD)/strftime.$(O) : \
1098 $(SRC)/strftime.c \
1099 $(EMACS_ROOT)/src/s/ms-w32.h \
1100 $(EMACS_ROOT)/src/m/intel386.h \
1101 $(EMACS_ROOT)/src/config.h
1102
1103 $(BLD)/syntax.$(O) : \
1104 $(SRC)/syntax.c \
1105 $(EMACS_ROOT)/src/s/ms-w32.h \
1106 $(EMACS_ROOT)/src/m/intel386.h \
1107 $(EMACS_ROOT)/src/config.h \
1108 $(SRC)/buffer.h \
1109 $(SRC)/category.h \
1110 $(SRC)/charset.h \
1111 $(SRC)/commands.h \
1112 $(SRC)/composite.h \
1113 $(SRC)/dispextern.h \
1114 $(SRC)/intervals.h \
1115 $(SRC)/keymap.h \
1116 $(SRC)/syntax.h \
1117 $(SRC)/w32bdf.h \
1118 $(SRC)/w32gui.h
1119
1120 $(BLD)/sysdep.$(O) : \
1121 $(SRC)/sysdep.c \
1122 $(EMACS_ROOT)/src/s/ms-w32.h \
1123 $(EMACS_ROOT)/src/m/intel386.h \
1124 $(EMACS_ROOT)/src/config.h \
1125 $(EMACS_ROOT)/nt/inc/sys/param.h \
1126 $(EMACS_ROOT)/nt/inc/sys/file.h \
1127 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1128 $(EMACS_ROOT)/nt/inc/sys/file.h \
1129 $(SRC)/atimer.h \
1130 $(SRC)/blockinput.h \
1131 $(SRC)/dispextern.h \
1132 $(SRC)/frame.h \
1133 $(SRC)/keyboard.h \
1134 $(SRC)/ndir.h \
1135 $(SRC)/process.h \
1136 $(SRC)/sysselect.h \
1137 $(SRC)/syssignal.h \
1138 $(SRC)/systime.h \
1139 $(SRC)/systty.h \
1140 $(SRC)/syswait.h \
1141 $(SRC)/termchar.h \
1142 $(SRC)/termhooks.h \
1143 $(SRC)/termopts.h \
1144 $(SRC)/w32bdf.h \
1145 $(SRC)/w32gui.h \
1146 $(SRC)/window.h
1147
1148 $(BLD)/term.$(O) : \
1149 $(SRC)/term.c \
1150 $(EMACS_ROOT)/src/s/ms-w32.h \
1151 $(EMACS_ROOT)/src/m/intel386.h \
1152 $(EMACS_ROOT)/src/config.h \
1153 $(SRC)/ccl.h \
1154 $(SRC)/charset.h \
1155 $(SRC)/cm.h \
1156 $(SRC)/coding.h \
1157 $(SRC)/dispextern.h \
1158 $(SRC)/disptab.h \
1159 $(SRC)/frame.h \
1160 $(SRC)/keyboard.h \
1161 $(SRC)/keymap.h \
1162 $(SRC)/termchar.h \
1163 $(SRC)/termhooks.h \
1164 $(SRC)/termopts.h \
1165 $(SRC)/w32bdf.h \
1166 $(SRC)/w32gui.h \
1167 $(SRC)/window.h
1168
1169 $(BLD)/termcap.$(O) : \
1170 $(SRC)/termcap.c \
1171 $(EMACS_ROOT)/src/s/ms-w32.h \
1172 $(EMACS_ROOT)/src/m/intel386.h \
1173 $(EMACS_ROOT)/src/config.h \
1174 $(EMACS_ROOT)/nt/inc/sys/file.h
1175
1176 $(BLD)/textprop.$(O) : \
1177 $(SRC)/textprop.c \
1178 $(EMACS_ROOT)/src/s/ms-w32.h \
1179 $(EMACS_ROOT)/src/m/intel386.h \
1180 $(EMACS_ROOT)/src/config.h \
1181 $(SRC)/buffer.h \
1182 $(SRC)/composite.h \
1183 $(SRC)/dispextern.h \
1184 $(SRC)/intervals.h \
1185 $(SRC)/w32bdf.h \
1186 $(SRC)/w32gui.h \
1187 $(SRC)/window.h
1188
1189 $(BLD)/tparam.$(O) : \
1190 $(SRC)/tparam.c \
1191 $(EMACS_ROOT)/src/s/ms-w32.h \
1192 $(EMACS_ROOT)/src/m/intel386.h \
1193 $(EMACS_ROOT)/src/config.h
1194
1195 $(BLD)/undo.$(O) : \
1196 $(SRC)/undo.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)/commands.h
1202
1203 $(BLD)/unexw32.$(O) : \
1204 $(SRC)/unexw32.c \
1205 $(EMACS_ROOT)/src/s/ms-w32.h \
1206 $(EMACS_ROOT)/src/m/intel386.h \
1207 $(EMACS_ROOT)/src/config.h \
1208 $(SRC)/w32heap.h
1209
1210 $(BLD)/vm-limit.$(O) : \
1211 $(SRC)/vm-limit.c \
1212 $(EMACS_ROOT)/src/s/ms-w32.h \
1213 $(EMACS_ROOT)/src/m/intel386.h \
1214 $(EMACS_ROOT)/src/config.h \
1215 $(SRC)/mem-limits.h
1216
1217 $(BLD)/window.$(O) : \
1218 $(SRC)/window.c \
1219 $(EMACS_ROOT)/src/s/ms-w32.h \
1220 $(EMACS_ROOT)/src/m/intel386.h \
1221 $(EMACS_ROOT)/src/config.h \
1222 $(SRC)/atimer.h \
1223 $(SRC)/blockinput.h \
1224 $(SRC)/buffer.h \
1225 $(SRC)/commands.h \
1226 $(SRC)/composite.h \
1227 $(SRC)/dispextern.h \
1228 $(SRC)/disptab.h \
1229 $(SRC)/frame.h \
1230 $(SRC)/indent.h \
1231 $(SRC)/intervals.h \
1232 $(SRC)/keyboard.h \
1233 $(SRC)/keymap.h \
1234 $(SRC)/systime.h \
1235 $(SRC)/termchar.h \
1236 $(SRC)/w32bdf.h \
1237 $(SRC)/w32gui.h \
1238 $(SRC)/w32term.h \
1239 $(SRC)/window.h
1240
1241 $(BLD)/xdisp.$(O) : \
1242 $(SRC)/xdisp.c \
1243 $(EMACS_ROOT)/src/s/ms-w32.h \
1244 $(EMACS_ROOT)/src/m/intel386.h \
1245 $(EMACS_ROOT)/src/config.h \
1246 $(SRC)/buffer.h \
1247 $(SRC)/ccl.h \
1248 $(SRC)/charset.h \
1249 $(SRC)/coding.h \
1250 $(SRC)/commands.h \
1251 $(SRC)/composite.h \
1252 $(SRC)/dispextern.h \
1253 $(SRC)/disptab.h \
1254 $(SRC)/fontset.h \
1255 $(SRC)/frame.h \
1256 $(SRC)/indent.h \
1257 $(SRC)/intervals.h \
1258 $(SRC)/keyboard.h \
1259 $(SRC)/macros.h \
1260 $(SRC)/process.h \
1261 $(SRC)/region-cache.h \
1262 $(SRC)/termchar.h \
1263 $(SRC)/termhooks.h \
1264 $(SRC)/w32bdf.h \
1265 $(SRC)/w32gui.h \
1266 $(SRC)/w32term.h \
1267 $(SRC)/window.h
1268
1269 $(BLD)/xfaces.$(O): \
1270 $(SRC)/xfaces.c \
1271 $(EMACS_ROOT)/src/s/ms-w32.h \
1272 $(EMACS_ROOT)/src/m/intel386.h \
1273 $(EMACS_ROOT)/src/config.h \
1274 $(SRC)/atimer.h \
1275 $(SRC)/blockinput.h \
1276 $(SRC)/buffer.h \
1277 $(SRC)/charset.h \
1278 $(SRC)/composite.h \
1279 $(SRC)/dispextern.h \
1280 $(SRC)/fontset.h \
1281 $(SRC)/frame.h \
1282 $(SRC)/intervals.h \
1283 $(SRC)/keyboard.h \
1284 $(SRC)/systime.h \
1285 $(SRC)/w32bdf.h \
1286 $(SRC)/w32gui.h \
1287 $(SRC)/w32term.h \
1288 $(SRC)/window.h
1289
1290 $(BLD)/w32fns.$(O): \
1291 $(SRC)/w32fns.c \
1292 $(EMACS_ROOT)/src/s/ms-w32.h \
1293 $(EMACS_ROOT)/src/m/intel386.h \
1294 $(EMACS_ROOT)/src/config.h \
1295 $(SRC)/atimer.h \
1296 $(SRC)/blockinput.h \
1297 $(SRC)/buffer.h \
1298 $(SRC)/ccl.h \
1299 $(SRC)/charset.h \
1300 $(SRC)/coding.h \
1301 $(SRC)/composite.h \
1302 $(SRC)/dispextern.h \
1303 $(SRC)/epaths.h \
1304 $(SRC)/fontset.h \
1305 $(SRC)/frame.h \
1306 $(SRC)/intervals.h \
1307 $(SRC)/keyboard.h \
1308 $(SRC)/systime.h \
1309 $(SRC)/termhooks.h \
1310 $(SRC)/w32bdf.h \
1311 $(SRC)/w32gui.h \
1312 $(SRC)/w32heap.h \
1313 $(SRC)/w32term.h \
1314 $(SRC)/window.h
1315
1316 $(BLD)/w32menu.$(O): \
1317 $(SRC)/w32menu.c \
1318 $(EMACS_ROOT)/src/s/ms-w32.h \
1319 $(EMACS_ROOT)/src/m/intel386.h \
1320 $(EMACS_ROOT)/src/config.h \
1321 $(SRC)/atimer.h \
1322 $(SRC)/blockinput.h \
1323 $(SRC)/buffer.h \
1324 $(SRC)/charset.h \
1325 $(SRC)/coding.h \
1326 $(SRC)/dispextern.h \
1327 $(SRC)/frame.h \
1328 $(SRC)/keyboard.h \
1329 $(SRC)/keymap.h \
1330 $(SRC)/systime.h \
1331 $(SRC)/termhooks.h \
1332 $(SRC)/w32bdf.h \
1333 $(SRC)/w32gui.h \
1334 $(SRC)/w32term.h \
1335 $(SRC)/window.h
1336
1337 $(BLD)/w32term.$(O): \
1338 $(SRC)/w32term.c \
1339 $(EMACS_ROOT)/src/s/ms-w32.h \
1340 $(EMACS_ROOT)/src/m/intel386.h \
1341 $(EMACS_ROOT)/src/config.h \
1342 $(SRC)/atimer.h \
1343 $(SRC)/blockinput.h \
1344 $(SRC)/buffer.h \
1345 $(SRC)/ccl.h \
1346 $(SRC)/charset.h \
1347 $(SRC)/coding.h \
1348 $(SRC)/composite.h \
1349 $(SRC)/dispextern.h \
1350 $(SRC)/disptab.h \
1351 $(SRC)/fontset.h \
1352 $(SRC)/frame.h \
1353 $(SRC)/gnu.h \
1354 $(SRC)/intervals.h \
1355 $(SRC)/keyboard.h \
1356 $(SRC)/keymap.h \
1357 $(SRC)/systime.h \
1358 $(SRC)/systty.h \
1359 $(SRC)/termchar.h \
1360 $(SRC)/termhooks.h \
1361 $(SRC)/termopts.h \
1362 $(SRC)/w32bdf.h \
1363 $(SRC)/w32gui.h \
1364 $(SRC)/w32heap.h \
1365 $(SRC)/w32term.h \
1366 $(SRC)/window.h
1367
1368 $(BLD)/w32select.$(O): \
1369 $(SRC)/w32select.c \
1370 $(EMACS_ROOT)/src/s/ms-w32.h \
1371 $(EMACS_ROOT)/src/m/intel386.h \
1372 $(EMACS_ROOT)/src/config.h \
1373 $(SRC)/atimer.h \
1374 $(SRC)/blockinput.h \
1375 $(SRC)/buffer.h \
1376 $(SRC)/ccl.h \
1377 $(SRC)/charset.h \
1378 $(SRC)/coding.h \
1379 $(SRC)/composite.h \
1380 $(SRC)/dispextern.h \
1381 $(SRC)/frame.h \
1382 $(SRC)/keyboard.h \
1383 $(SRC)/systime.h \
1384 $(SRC)/w32bdf.h \
1385 $(SRC)/w32gui.h \
1386 $(SRC)/w32term.h
1387
1388 $(BLD)/w32reg.$(O): \
1389 $(SRC)/w32reg.c \
1390 $(EMACS_ROOT)/src/s/ms-w32.h \
1391 $(EMACS_ROOT)/src/m/intel386.h \
1392 $(EMACS_ROOT)/src/config.h \
1393 $(SRC)/atimer.h \
1394 $(SRC)/blockinput.h \
1395 $(SRC)/systime.h \
1396 $(SRC)/w32bdf.h \
1397 $(SRC)/w32gui.h \
1398 $(SRC)/w32term.h
1399
1400 $(BLD)/w32xfns.$(O): \
1401 $(SRC)/w32xfns.c \
1402 $(EMACS_ROOT)/src/s/ms-w32.h \
1403 $(EMACS_ROOT)/src/m/intel386.h \
1404 $(EMACS_ROOT)/src/config.h \
1405 $(SRC)/atimer.h \
1406 $(SRC)/blockinput.h \
1407 $(SRC)/charset.h \
1408 $(SRC)/fontset.h \
1409 $(SRC)/frame.h \
1410 $(SRC)/keyboard.h \
1411 $(SRC)/systime.h \
1412 $(SRC)/w32bdf.h \
1413 $(SRC)/w32gui.h \
1414 $(SRC)/w32term.h
1415
1416 $(BLD)/w32bdf.$(O): \
1417 $(SRC)/w32bdf.c \
1418 $(EMACS_ROOT)/src/s/ms-w32.h \
1419 $(EMACS_ROOT)/src/m/intel386.h \
1420 $(EMACS_ROOT)/src/config.h \
1421 $(SRC)/atimer.h \
1422 $(SRC)/blockinput.h \
1423 $(SRC)/charset.h \
1424 $(SRC)/dispextern.h \
1425 $(SRC)/fontset.h \
1426 $(SRC)/frame.h \
1427 $(SRC)/keyboard.h \
1428 $(SRC)/systime.h \
1429 $(SRC)/w32bdf.h \
1430 $(SRC)/w32gui.h \
1431 $(SRC)/w32term.h