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