Update FSF's address.
[bpt/emacs.git] / src / makefile.w32-in
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (c) 2000-2001, 2004 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., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, 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 DOC = $(OBJDIR)/etc/DOC-X
46
47 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
48
49 #
50 # Split up the objects into two sets so that we don't run out of
51 # command line space when we link them into a library.
52 #
53 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
54 # as the "main" object file when linking.
55 #
56 OBJ0 = $(BLD)/emacs.$(O)
57
58 OBJ1 = $(BLD)/abbrev.$(O) \
59 $(BLD)/alloc.$(O) \
60 $(BLD)/atimer.$(O) \
61 $(BLD)/buffer.$(O) \
62 $(BLD)/bytecode.$(O) \
63 $(BLD)/callint.$(O) \
64 $(BLD)/callproc.$(O) \
65 $(BLD)/casefiddle.$(O) \
66 $(BLD)/cm.$(O) \
67 $(BLD)/cmds.$(O) \
68 $(BLD)/data.$(O) \
69 $(BLD)/dired.$(O) \
70 $(BLD)/dispnew.$(O) \
71 $(BLD)/doc.$(O) \
72 $(BLD)/doprnt.$(O) \
73 $(BLD)/editfns.$(O) \
74 $(BLD)/eval.$(O) \
75 $(BLD)/fileio.$(O) \
76 $(BLD)/filelock.$(O) \
77 $(BLD)/filemode.$(O) \
78 $(BLD)/fns.$(O) \
79 $(BLD)/indent.$(O) \
80 $(BLD)/insdel.$(O) \
81 $(BLD)/keyboard.$(O) \
82 $(BLD)/keymap.$(O) \
83 $(BLD)/lread.$(O) \
84 $(BLD)/macros.$(O) \
85 $(BLD)/marker.$(O) \
86 $(BLD)/md5.$(O) \
87 $(BLD)/minibuf.$(O) \
88 $(BLD)/w32.$(O) \
89 $(BLD)/w32heap.$(O) \
90 $(BLD)/w32inevt.$(O) \
91 $(BLD)/w32proc.$(O) \
92 $(BLD)/w32console.$(O) \
93 $(BLD)/print.$(O) \
94 $(BLD)/process.$(O) \
95 $(BLD)/regex.$(O) \
96 $(BLD)/scroll.$(O) \
97 $(BLD)/search.$(O) \
98 $(BLD)/sound.$(O) \
99 $(BLD)/syntax.$(O) \
100 $(BLD)/sysdep.$(O) \
101 $(BLD)/term.$(O) \
102 $(BLD)/termcap.$(O) \
103 $(BLD)/tparam.$(O) \
104 $(BLD)/undo.$(O) \
105 $(BLD)/unexw32.$(O) \
106 $(BLD)/window.$(O) \
107 $(BLD)/xdisp.$(O) \
108 $(BLD)/casetab.$(O) \
109 $(BLD)/floatfns.$(O) \
110 $(BLD)/frame.$(O) \
111 $(BLD)/gmalloc.$(O) \
112 $(BLD)/intervals.$(O) \
113 $(BLD)/composite.$(O) \
114 $(BLD)/ralloc.$(O) \
115 $(BLD)/textprop.$(O) \
116 $(BLD)/vm-limit.$(O) \
117 $(BLD)/region-cache.$(O) \
118 $(BLD)/strftime.$(O) \
119 $(BLD)/charset.$(O) \
120 $(BLD)/coding.$(O) \
121 $(BLD)/category.$(O) \
122 $(BLD)/ccl.$(O) \
123 $(BLD)/fontset.$(O) \
124 $(BLD)/fringe.$(O) \
125 $(BLD)/image.$(O)
126
127 WIN32OBJ = $(BLD)/w32term.$(O) \
128 $(BLD)/w32xfns.$(O) \
129 $(BLD)/w32fns.$(O) \
130 $(BLD)/xfaces.$(O) \
131 $(BLD)/w32select.$(O) \
132 $(BLD)/w32menu.$(O) \
133 $(BLD)/w32reg.$(O) \
134 $(BLD)/w32bdf.$(O)
135
136 LIBS = $(TLIB0) \
137 $(TLIB1) \
138 $(TLIBW32) \
139 $(TLASTLIB) \
140 $(WINMM) \
141 $(ADVAPI32) \
142 $(GDI32) \
143 $(COMDLG32) \
144 $(USER32) \
145 $(MPR) \
146 $(SHELL32) \
147 $(WINSPOOL) \
148 $(libc)
149
150 #
151 # Build the executable and dump it.
152 #
153 all: $(ALL)
154
155 #
156 # The dumped executable
157 #
158 emacs: $(BLD) $(EMACS)
159 $(EMACS): $(DOC) $(TEMACS)
160 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
161 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
162
163 #
164 # The undumped executable
165 # Note the extra post-link step to insert a static preload heap section.
166 # If preload runs out of memory, increase the last argument to addsection
167 # (it is the preload heap size in MB).
168 #
169 temacs: $(BLD) $(TEMACS)
170 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
171 ../nt/$(BLD)/addsection.exe
172 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
173 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
174 echo $(OBJ0) > $(BLD)/buildobj.lst
175 echo $(OBJ1) >> $(BLD)/buildobj.lst
176 echo $(WIN32OBJ) >> $(BLD)/buildobj.lst
177
178 bootstrap: bootstrap-emacs
179
180 #
181 # Build a temacs with a sufficiently large PURESIZE to load the
182 # Lisp files from loadup.el in source form.
183 #
184 bootstrap-temacs:
185 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
186
187 #
188 # Dump an Emacs executable named bootstrap-emacs containing the
189 # files from loadup.el in source form.
190 #
191 bootstrap-emacs: bootstrap-temacs
192 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
193 - mkdir "../bin"
194 $(CP) $(EMACS) ../bin
195
196 #
197 # Force recompile of files that depend on PURESIZE
198 #
199 bootstrap-clean:
200 - $(DEL) $(BLD)/alloc.$(O)
201 - $(DEL) $(BLD)/data.$(O)
202 - $(DEL) $(BLD)/intervals.$(O)
203 - $(DEL) $(BLD)/keyboard.$(O)
204 - $(DEL) $(BLD)/keymap.$(O)
205
206 #
207 # The resource file. NT 3.10 requires the use of cvtres; even though
208 # it is not necessary on later versions, it is still ok to use it.
209 #
210 $(TRES): ../nt/emacs.rc
211 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
212
213 #
214 # Build the library. Split up the build into two phases...otherwise we
215 # run out of command line space.
216 #
217 $(TLIB0): $(OBJ0)
218 - $(DEL) $@
219 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
220 $(TLIB1): $(OBJ1)
221 - $(DEL) $@
222 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
223 $(TLIBW32): $(WIN32OBJ)
224 - $(DEL) $@
225 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
226
227 #
228 # Place lastfile.$(O) in its own library so that it can be loaded after
229 # the source libraries but before any system libraries. Doing so defines
230 # the end of Emacs' data section portably across compilers and systems.
231 #
232 $(TLASTLIB): $(BLD)/lastfile.$(O)
233 - $(DEL) $@
234 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
235
236 #
237 # Assuming INSTALL_DIR is defined, build and install emacs in it.
238 #
239 install: $(ALL)
240 - mkdir "$(INSTALL_DIR)/bin"
241 $(CP) $(EMACS) $(INSTALL_DIR)/bin
242
243 #
244 # Maintenance
245 #
246 clean:
247 - $(DEL) *~ "s/*~" "m/*~"
248 - $(DEL) $(COMPILER_TEMP_FILES)
249 - $(DEL_TREE) $(OBJDIR)
250
251 distclean: clean
252 - $(DEL) config.h epaths.h
253
254 cleanall: clean
255 - $(DEL_TREE) obj
256 - $(DEL_TREE) obj-spd
257 - $(DEL_TREE) oo
258 - $(DEL_TREE) oo-spd
259
260 ### DEPENDENCIES ###
261
262 EMACS_ROOT = ..
263 SRC = .
264
265 $(BLD)/abbrev.$(O) : \
266 $(SRC)/abbrev.c \
267 $(EMACS_ROOT)/src/s/ms-w32.h \
268 $(EMACS_ROOT)/src/m/intel386.h \
269 $(EMACS_ROOT)/src/config.h \
270 $(SRC)/buffer.h \
271 $(SRC)/charset.h \
272 $(SRC)/commands.h \
273 $(SRC)/dispextern.h \
274 $(SRC)/syntax.h \
275 $(SRC)/w32bdf.h \
276 $(SRC)/w32gui.h \
277 $(SRC)/window.h
278
279 $(BLD)/alloc.$(O) : \
280 $(SRC)/alloc.c \
281 $(EMACS_ROOT)/src/s/ms-w32.h \
282 $(EMACS_ROOT)/src/m/intel386.h \
283 $(EMACS_ROOT)/src/config.h \
284 $(SRC)/blockinput.h \
285 $(SRC)/buffer.h \
286 $(SRC)/charset.h \
287 $(SRC)/composite.h \
288 $(SRC)/dispextern.h \
289 $(SRC)/frame.h \
290 $(SRC)/intervals.h \
291 $(SRC)/keyboard.h \
292 $(SRC)/process.h \
293 $(SRC)/puresize.h \
294 $(SRC)/syssignal.h \
295 $(SRC)/w32bdf.h \
296 $(SRC)/w32gui.h \
297 $(SRC)/window.h
298
299 $(BLD)/atimer.$(O) : \
300 $(SRC)/atimer.c \
301 $(EMACS_ROOT)/src/s/ms-w32.h \
302 $(EMACS_ROOT)/src/m/intel386.h \
303 $(EMACS_ROOT)/src/config.h \
304 $(SRC)/s/ms-w32.h \
305 $(SRC)/m/intel386.h \
306 $(SRC)/config.h \
307 $(SRC)/atimer.h \
308 $(SRC)/blockinput.h \
309 $(SRC)/syssignal.h \
310 $(SRC)/systime.h
311
312 $(BLD)/buffer.$(O) : \
313 $(SRC)/buffer.c \
314 $(EMACS_ROOT)/nt/inc/sys/param.h \
315 $(EMACS_ROOT)/src/s/ms-w32.h \
316 $(EMACS_ROOT)/src/m/intel386.h \
317 $(EMACS_ROOT)/src/config.h \
318 $(SRC)/blockinput.h \
319 $(SRC)/buffer.h \
320 $(SRC)/charset.h \
321 $(SRC)/commands.h \
322 $(SRC)/composite.h \
323 $(SRC)/dispextern.h \
324 $(SRC)/frame.h \
325 $(SRC)/indent.h \
326 $(SRC)/intervals.h \
327 $(SRC)/keyboard.h \
328 $(SRC)/keymap.h \
329 $(SRC)/region-cache.h \
330 $(SRC)/w32bdf.h \
331 $(SRC)/w32gui.h \
332 $(SRC)/window.h
333
334 $(BLD)/bytecode.$(O) : \
335 $(SRC)/bytecode.c \
336 $(EMACS_ROOT)/src/s/ms-w32.h \
337 $(EMACS_ROOT)/src/m/intel386.h \
338 $(EMACS_ROOT)/src/config.h \
339 $(SRC)/buffer.h \
340 $(SRC)/charset.h \
341 $(SRC)/syntax.h \
342 $(SRC)/window.h
343
344 $(BLD)/callint.$(O) : \
345 $(SRC)/callint.c \
346 $(EMACS_ROOT)/src/s/ms-w32.h \
347 $(EMACS_ROOT)/src/m/intel386.h \
348 $(EMACS_ROOT)/src/config.h \
349 $(SRC)/buffer.h \
350 $(SRC)/commands.h \
351 $(SRC)/dispextern.h \
352 $(SRC)/keyboard.h \
353 $(SRC)/keymap.h \
354 $(SRC)/w32bdf.h \
355 $(SRC)/w32gui.h \
356 $(SRC)/window.h
357
358 $(BLD)/callproc.$(O) : \
359 $(SRC)/callproc.c \
360 $(EMACS_ROOT)/src/s/ms-w32.h \
361 $(EMACS_ROOT)/src/m/intel386.h \
362 $(EMACS_ROOT)/src/config.h \
363 $(EMACS_ROOT)/nt/inc/sys/param.h \
364 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
365 $(EMACS_ROOT)/nt/inc/sys/file.h \
366 $(SRC)/buffer.h \
367 $(SRC)/ccl.h \
368 $(SRC)/charset.h \
369 $(SRC)/coding.h \
370 $(SRC)/commands.h \
371 $(SRC)/composite.h \
372 $(SRC)/epaths.h \
373 $(SRC)/process.h \
374 $(SRC)/syssignal.h \
375 $(SRC)/systty.h \
376 $(SRC)/w32.h
377
378 $(BLD)/casefiddle.$(O) : \
379 $(SRC)/casefiddle.c \
380 $(EMACS_ROOT)/src/s/ms-w32.h \
381 $(EMACS_ROOT)/src/m/intel386.h \
382 $(EMACS_ROOT)/src/config.h \
383 $(SRC)/buffer.h \
384 $(SRC)/charset.h \
385 $(SRC)/commands.h \
386 $(SRC)/composite.h \
387 $(SRC)/keymap.h \
388 $(SRC)/syntax.h
389
390 $(BLD)/casetab.$(O) : \
391 $(SRC)/casetab.c \
392 $(EMACS_ROOT)/src/s/ms-w32.h \
393 $(EMACS_ROOT)/src/m/intel386.h \
394 $(EMACS_ROOT)/src/config.h \
395 $(SRC)/buffer.h \
396 $(SRC)/charset.h
397
398 $(BLD)/category.$(O) : \
399 $(SRC)/category.c \
400 $(EMACS_ROOT)/src/s/ms-w32.h \
401 $(EMACS_ROOT)/src/m/intel386.h \
402 $(EMACS_ROOT)/src/config.h \
403 $(SRC)/buffer.h \
404 $(SRC)/category.h \
405 $(SRC)/charset.h \
406 $(SRC)/keymap.h
407
408 $(BLD)/ccl.$(O) : \
409 $(SRC)/ccl.c \
410 $(EMACS_ROOT)/src/s/ms-w32.h \
411 $(EMACS_ROOT)/src/m/intel386.h \
412 $(EMACS_ROOT)/src/config.h \
413 $(SRC)/ccl.h \
414 $(SRC)/charset.h \
415 $(SRC)/coding.h
416
417 $(BLD)/charset.$(O) : \
418 $(SRC)/charset.c \
419 $(EMACS_ROOT)/src/s/ms-w32.h \
420 $(EMACS_ROOT)/src/m/intel386.h \
421 $(EMACS_ROOT)/src/config.h \
422 $(SRC)/buffer.h \
423 $(SRC)/ccl.h \
424 $(SRC)/charset.h \
425 $(SRC)/coding.h \
426 $(SRC)/composite.h \
427 $(SRC)/disptab.h
428
429 $(BLD)/cm.$(O) : \
430 $(SRC)/cm.c \
431 $(EMACS_ROOT)/src/s/ms-w32.h \
432 $(EMACS_ROOT)/src/m/intel386.h \
433 $(EMACS_ROOT)/src/config.h \
434 $(SRC)/cm.h \
435 $(SRC)/termhooks.h
436
437 $(BLD)/cmds.$(O) : \
438 $(SRC)/cmds.c \
439 $(EMACS_ROOT)/src/s/ms-w32.h \
440 $(EMACS_ROOT)/src/m/intel386.h \
441 $(EMACS_ROOT)/src/config.h \
442 $(SRC)/buffer.h \
443 $(SRC)/charset.h \
444 $(SRC)/commands.h \
445 $(SRC)/dispextern.h \
446 $(SRC)/keyboard.h \
447 $(SRC)/keymap.h \
448 $(SRC)/syntax.h \
449 $(SRC)/w32bdf.h \
450 $(SRC)/w32gui.h \
451 $(SRC)/window.h
452
453 $(BLD)/coding.$(O) : \
454 $(SRC)/coding.c \
455 $(EMACS_ROOT)/src/s/ms-w32.h \
456 $(EMACS_ROOT)/src/m/intel386.h \
457 $(EMACS_ROOT)/src/config.h \
458 $(SRC)/buffer.h \
459 $(SRC)/ccl.h \
460 $(SRC)/charset.h \
461 $(SRC)/coding.h \
462 $(SRC)/composite.h \
463 $(SRC)/dispextern.h \
464 $(SRC)/intervals.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 $(SRC)/w32heap.h \
600 $(SRC)/window.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)/fringe.$(O) : \
735 $(SRC)/fringe.c \
736 $(EMACS_ROOT)/src/s/ms-w32.h \
737 $(EMACS_ROOT)/src/m/intel386.h \
738 $(EMACS_ROOT)/src/config.h \
739 $(SRC)/atimer.h \
740 $(SRC)/blockinput.h \
741 $(SRC)/buffer.h \
742 $(SRC)/dispextern.h \
743 $(SRC)/frame.h \
744 $(SRC)/systime.h \
745 $(SRC)/w32bdf.h \
746 $(SRC)/w32gui.h \
747 $(SRC)/window.h
748
749 $(BLD)/gmalloc.$(O) : \
750 $(SRC)/gmalloc.c \
751 $(EMACS_ROOT)/src/s/ms-w32.h \
752 $(EMACS_ROOT)/src/m/intel386.h \
753 $(EMACS_ROOT)/src/config.h \
754 $(EMACS_ROOT)/nt/inc/sys/param.h \
755 $(SRC)/getpagesize.h
756
757 $(BLD)/image.$(O): \
758 $(SRC)/image.c \
759 $(EMACS_ROOT)/src/s/ms-w32.h \
760 $(EMACS_ROOT)/src/m/intel386.h \
761 $(EMACS_ROOT)/src/config.h \
762 $(SRC)/atimer.h \
763 $(SRC)/blockinput.h \
764 $(SRC)/dispextern.h \
765 $(SRC)/epaths.h \
766 $(SRC)/frame.h \
767 $(SRC)/systime.h \
768 $(SRC)/termhooks.h \
769 $(SRC)/w32bdf.h \
770 $(SRC)/w32gui.h \
771 $(SRC)/w32heap.h \
772 $(SRC)/w32term.h \
773 $(SRC)/window.h
774
775 $(BLD)/indent.$(O) : \
776 $(SRC)/indent.c \
777 $(EMACS_ROOT)/src/s/ms-w32.h \
778 $(EMACS_ROOT)/src/m/intel386.h \
779 $(EMACS_ROOT)/src/config.h \
780 $(SRC)/buffer.h \
781 $(SRC)/category.h \
782 $(SRC)/charset.h \
783 $(SRC)/composite.h \
784 $(SRC)/dispextern.h \
785 $(SRC)/disptab.h \
786 $(SRC)/frame.h \
787 $(SRC)/indent.h \
788 $(SRC)/intervals.h \
789 $(SRC)/keyboard.h \
790 $(SRC)/region-cache.h \
791 $(SRC)/termchar.h \
792 $(SRC)/termopts.h \
793 $(SRC)/w32bdf.h \
794 $(SRC)/w32gui.h \
795 $(SRC)/window.h
796
797 $(BLD)/insdel.$(O) : \
798 $(SRC)/insdel.c \
799 $(EMACS_ROOT)/src/s/ms-w32.h \
800 $(EMACS_ROOT)/src/m/intel386.h \
801 $(EMACS_ROOT)/src/config.h \
802 $(SRC)/atimer.h \
803 $(SRC)/blockinput.h \
804 $(SRC)/buffer.h \
805 $(SRC)/charset.h \
806 $(SRC)/composite.h \
807 $(SRC)/dispextern.h \
808 $(SRC)/intervals.h \
809 $(SRC)/region-cache.h \
810 $(SRC)/systime.h \
811 $(SRC)/w32bdf.h \
812 $(SRC)/w32gui.h \
813 $(SRC)/window.h
814
815 $(BLD)/intervals.$(O) : \
816 $(SRC)/intervals.c \
817 $(EMACS_ROOT)/src/s/ms-w32.h \
818 $(EMACS_ROOT)/src/m/intel386.h \
819 $(EMACS_ROOT)/src/config.h \
820 $(SRC)/buffer.h \
821 $(SRC)/composite.h \
822 $(SRC)/dispextern.h \
823 $(SRC)/intervals.h \
824 $(SRC)/keyboard.h \
825 $(SRC)/keymap.h \
826 $(SRC)/puresize.h \
827 $(SRC)/w32bdf.h \
828 $(SRC)/w32gui.h
829
830 $(BLD)/keyboard.$(O) : \
831 $(SRC)/keyboard.c \
832 $(EMACS_ROOT)/src/s/ms-w32.h \
833 $(EMACS_ROOT)/src/m/intel386.h \
834 $(EMACS_ROOT)/src/config.h \
835 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
836 $(EMACS_ROOT)/nt/inc/sys/file.h \
837 $(SRC)/atimer.h \
838 $(SRC)/blockinput.h \
839 $(SRC)/buffer.h \
840 $(SRC)/charset.h \
841 $(SRC)/commands.h \
842 $(SRC)/composite.h \
843 $(SRC)/dispextern.h \
844 $(SRC)/disptab.h \
845 $(SRC)/frame.h \
846 $(SRC)/intervals.h \
847 $(SRC)/keyboard.h \
848 $(SRC)/keymap.h \
849 $(SRC)/macros.h \
850 $(SRC)/puresize.h \
851 $(SRC)/syntax.h \
852 $(SRC)/syssignal.h \
853 $(SRC)/systime.h \
854 $(SRC)/systty.h \
855 $(SRC)/termchar.h \
856 $(SRC)/termhooks.h \
857 $(SRC)/termopts.h \
858 $(SRC)/w32bdf.h \
859 $(SRC)/w32gui.h \
860 $(SRC)/w32term.h \
861 $(SRC)/window.h
862
863 $(BLD)/keymap.$(O) : \
864 $(SRC)/keymap.c \
865 $(EMACS_ROOT)/src/s/ms-w32.h \
866 $(EMACS_ROOT)/src/m/intel386.h \
867 $(EMACS_ROOT)/src/config.h \
868 $(SRC)/atimer.h \
869 $(SRC)/blockinput.h \
870 $(SRC)/buffer.h \
871 $(SRC)/charset.h \
872 $(SRC)/commands.h \
873 $(SRC)/composite.h \
874 $(SRC)/dispextern.h \
875 $(SRC)/intervals.h \
876 $(SRC)/keyboard.h \
877 $(SRC)/keymap.h \
878 $(SRC)/puresize.h \
879 $(SRC)/systime.h \
880 $(SRC)/termhooks.h \
881 $(SRC)/w32bdf.h \
882 $(SRC)/w32gui.h
883
884 $(BLD)/lastfile.$(O) : \
885 $(SRC)/lastfile.c \
886 $(EMACS_ROOT)/src/s/ms-w32.h \
887 $(EMACS_ROOT)/src/m/intel386.h \
888 $(EMACS_ROOT)/src/config.h
889
890 $(BLD)/lread.$(O) : \
891 $(SRC)/lread.c \
892 $(EMACS_ROOT)/src/s/ms-w32.h \
893 $(EMACS_ROOT)/src/m/intel386.h \
894 $(EMACS_ROOT)/src/config.h \
895 $(EMACS_ROOT)/nt/inc/sys/file.h \
896 $(EMACS_ROOT)/src/epaths.h \
897 $(SRC)/buffer.h \
898 $(SRC)/ccl.h \
899 $(SRC)/charset.h \
900 $(SRC)/coding.h \
901 $(SRC)/commands.h \
902 $(SRC)/composite.h \
903 $(SRC)/dispextern.h \
904 $(SRC)/intervals.h \
905 $(SRC)/keyboard.h \
906 $(SRC)/termhooks.h \
907 $(SRC)/w32bdf.h \
908 $(SRC)/w32gui.h
909
910 $(BLD)/macros.$(O) : \
911 $(SRC)/macros.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)/commands.h \
917 $(SRC)/dispextern.h \
918 $(SRC)/keyboard.h \
919 $(SRC)/macros.h \
920 $(SRC)/w32bdf.h \
921 $(SRC)/w32gui.h \
922 $(SRC)/window.h
923
924 $(BLD)/marker.$(O) : \
925 $(SRC)/marker.c \
926 $(EMACS_ROOT)/src/s/ms-w32.h \
927 $(EMACS_ROOT)/src/m/intel386.h \
928 $(EMACS_ROOT)/src/config.h \
929 $(SRC)/buffer.h \
930 $(SRC)/charset.h
931
932 $(BLD)/md5.$(O) : \
933 $(SRC)/md5.c \
934 $(SRC)/md5.h
935
936 $(BLD)/minibuf.$(O) : \
937 $(SRC)/minibuf.c \
938 $(EMACS_ROOT)/src/s/ms-w32.h \
939 $(EMACS_ROOT)/src/m/intel386.h \
940 $(EMACS_ROOT)/src/config.h \
941 $(SRC)/buffer.h \
942 $(SRC)/charset.h \
943 $(SRC)/commands.h \
944 $(SRC)/composite.h \
945 $(SRC)/dispextern.h \
946 $(SRC)/frame.h \
947 $(SRC)/intervals.h \
948 $(SRC)/keyboard.h \
949 $(SRC)/keymap.h \
950 $(SRC)/syntax.h \
951 $(SRC)/w32bdf.h \
952 $(SRC)/w32gui.h \
953 $(SRC)/window.h
954
955 $(BLD)/w32.$(O) : \
956 $(SRC)/w32.c \
957 $(EMACS_ROOT)/nt/inc/pwd.h \
958 $(SRC)/s/ms-w32.h \
959 $(SRC)/m/intel386.h \
960 $(SRC)/config.h \
961 $(SRC)/ndir.h \
962 $(SRC)/systime.h \
963 $(SRC)/w32.h \
964 $(SRC)/w32heap.h
965
966 $(BLD)/w32heap.$(O) : \
967 $(SRC)/w32heap.c \
968 $(SRC)/s/ms-w32.h \
969 $(SRC)/m/intel386.h \
970 $(SRC)/config.h \
971 $(SRC)/w32heap.h
972
973 $(BLD)/w32inevt.$(O) : \
974 $(SRC)/w32inevt.c \
975 $(SRC)/s/ms-w32.h \
976 $(SRC)/m/intel386.h \
977 $(SRC)/config.h \
978 $(SRC)/atimer.h \
979 $(SRC)/blockinput.h \
980 $(SRC)/frame.h \
981 $(SRC)/keyboard.h \
982 $(SRC)/systime.h \
983 $(SRC)/termhooks.h \
984 $(SRC)/w32bdf.h \
985 $(SRC)/w32gui.h \
986 $(SRC)/w32heap.h \
987 $(SRC)/w32term.h
988
989 $(BLD)/w32proc.$(O) : \
990 $(SRC)/w32proc.c \
991 $(SRC)/s/ms-w32.h \
992 $(SRC)/m/intel386.h \
993 $(SRC)/config.h \
994 $(SRC)/process.h \
995 $(SRC)/syssignal.h \
996 $(SRC)/systime.h \
997 $(SRC)/syswait.h \
998 $(SRC)/w32.h \
999 $(SRC)/w32bdf.h \
1000 $(SRC)/w32gui.h \
1001 $(SRC)/w32heap.h \
1002 $(SRC)/w32term.h
1003
1004 $(BLD)/w32console.$(O) : \
1005 $(SRC)/w32console.c \
1006 $(SRC)/s/ms-w32.h \
1007 $(SRC)/m/intel386.h \
1008 $(SRC)/ccl.h \
1009 $(SRC)/charset.h \
1010 $(SRC)/coding.h \
1011 $(SRC)/config.h \
1012 $(SRC)/dispextern.h \
1013 $(SRC)/disptab.h \
1014 $(SRC)/frame.h \
1015 $(SRC)/termhooks.h \
1016 $(SRC)/w32bdf.h \
1017 $(SRC)/w32gui.h \
1018 $(SRC)/w32inevt.h
1019
1020 $(BLD)/print.$(O) : \
1021 $(SRC)/print.c \
1022 $(EMACS_ROOT)/src/s/ms-w32.h \
1023 $(EMACS_ROOT)/src/m/intel386.h \
1024 $(EMACS_ROOT)/src/config.h \
1025 $(SRC)/buffer.h \
1026 $(SRC)/charset.h \
1027 $(SRC)/composite.h \
1028 $(SRC)/dispextern.h \
1029 $(SRC)/frame.h \
1030 $(SRC)/intervals.h \
1031 $(SRC)/keyboard.h \
1032 $(SRC)/process.h \
1033 $(SRC)/termchar.h \
1034 $(SRC)/w32bdf.h \
1035 $(SRC)/w32gui.h \
1036 $(SRC)/window.h
1037
1038 $(BLD)/process.$(O) : \
1039 $(SRC)/process.c \
1040 $(EMACS_ROOT)/src/s/ms-w32.h \
1041 $(EMACS_ROOT)/src/m/intel386.h \
1042 $(EMACS_ROOT)/src/config.h \
1043 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1044 $(EMACS_ROOT)/nt/inc/sys/file.h \
1045 $(SRC)/atimer.h \
1046 $(SRC)/blockinput.h \
1047 $(SRC)/buffer.h \
1048 $(SRC)/ccl.h \
1049 $(SRC)/charset.h \
1050 $(SRC)/coding.h \
1051 $(SRC)/commands.h \
1052 $(SRC)/composite.h \
1053 $(SRC)/dispextern.h \
1054 $(SRC)/frame.h \
1055 $(SRC)/keyboard.h \
1056 $(SRC)/process.h \
1057 $(SRC)/sysselect.h \
1058 $(SRC)/syssignal.h \
1059 $(SRC)/systime.h \
1060 $(SRC)/systty.h \
1061 $(SRC)/syswait.h \
1062 $(SRC)/termhooks.h \
1063 $(SRC)/termopts.h \
1064 $(SRC)/w32bdf.h \
1065 $(SRC)/w32gui.h \
1066 $(SRC)/window.h
1067
1068 $(BLD)/ralloc.$(O) : \
1069 $(SRC)/ralloc.c \
1070 $(EMACS_ROOT)/src/s/ms-w32.h \
1071 $(EMACS_ROOT)/src/m/intel386.h \
1072 $(EMACS_ROOT)/src/config.h \
1073 $(EMACS_ROOT)/nt/inc/sys/param.h \
1074 $(SRC)/s/ms-w32.h \
1075 $(SRC)/m/intel386.h \
1076 $(SRC)/config.h \
1077 $(SRC)/getpagesize.h
1078
1079 $(BLD)/regex.$(O) : \
1080 $(SRC)/regex.c \
1081 $(EMACS_ROOT)/src/s/ms-w32.h \
1082 $(EMACS_ROOT)/src/m/intel386.h \
1083 $(EMACS_ROOT)/src/config.h \
1084 $(SRC)/s/ms-w32.h \
1085 $(SRC)/m/intel386.h \
1086 $(SRC)/buffer.h \
1087 $(SRC)/category.h \
1088 $(SRC)/charset.h \
1089 $(SRC)/config.h \
1090 $(SRC)/regex.h \
1091 $(SRC)/syntax.h
1092
1093 $(BLD)/region-cache.$(O) : \
1094 $(SRC)/region-cache.c \
1095 $(EMACS_ROOT)/src/s/ms-w32.h \
1096 $(EMACS_ROOT)/src/m/intel386.h \
1097 $(EMACS_ROOT)/src/config.h \
1098 $(SRC)/buffer.h \
1099 $(SRC)/region-cache.h
1100
1101 $(BLD)/scroll.$(O) : \
1102 $(SRC)/scroll.c \
1103 $(EMACS_ROOT)/src/s/ms-w32.h \
1104 $(EMACS_ROOT)/src/m/intel386.h \
1105 $(EMACS_ROOT)/src/config.h \
1106 $(SRC)/dispextern.h \
1107 $(SRC)/frame.h \
1108 $(SRC)/keyboard.h \
1109 $(SRC)/termchar.h \
1110 $(SRC)/w32bdf.h \
1111 $(SRC)/w32gui.h \
1112 $(SRC)/window.h
1113
1114 $(BLD)/search.$(O) : \
1115 $(SRC)/search.c \
1116 $(EMACS_ROOT)/src/s/ms-w32.h \
1117 $(EMACS_ROOT)/src/m/intel386.h \
1118 $(EMACS_ROOT)/src/config.h \
1119 $(SRC)/atimer.h \
1120 $(SRC)/blockinput.h \
1121 $(SRC)/buffer.h \
1122 $(SRC)/category.h \
1123 $(SRC)/charset.h \
1124 $(SRC)/commands.h \
1125 $(SRC)/composite.h \
1126 $(SRC)/dispextern.h \
1127 $(SRC)/intervals.h \
1128 $(SRC)/regex.h \
1129 $(SRC)/region-cache.h \
1130 $(SRC)/syntax.h \
1131 $(SRC)/systime.h \
1132 $(SRC)/w32bdf.h \
1133 $(SRC)/w32gui.h
1134
1135 $(BLD)/sound.$(O) : \
1136 $(SRC)/sound.c \
1137 $(SRC)/lisp.h \
1138 $(SRC)/dispextern.h \
1139 $(SRC)/atimer.h \
1140 $(SRC)/syssignal.h
1141
1142 $(BLD)/strftime.$(O) : \
1143 $(SRC)/strftime.c \
1144 $(EMACS_ROOT)/src/s/ms-w32.h \
1145 $(EMACS_ROOT)/src/m/intel386.h \
1146 $(EMACS_ROOT)/src/config.h
1147
1148 $(BLD)/syntax.$(O) : \
1149 $(SRC)/syntax.c \
1150 $(EMACS_ROOT)/src/s/ms-w32.h \
1151 $(EMACS_ROOT)/src/m/intel386.h \
1152 $(EMACS_ROOT)/src/config.h \
1153 $(SRC)/buffer.h \
1154 $(SRC)/category.h \
1155 $(SRC)/charset.h \
1156 $(SRC)/commands.h \
1157 $(SRC)/composite.h \
1158 $(SRC)/dispextern.h \
1159 $(SRC)/intervals.h \
1160 $(SRC)/keymap.h \
1161 $(SRC)/syntax.h \
1162 $(SRC)/w32bdf.h \
1163 $(SRC)/w32gui.h
1164
1165 $(BLD)/sysdep.$(O) : \
1166 $(SRC)/sysdep.c \
1167 $(EMACS_ROOT)/src/s/ms-w32.h \
1168 $(EMACS_ROOT)/src/m/intel386.h \
1169 $(EMACS_ROOT)/src/config.h \
1170 $(EMACS_ROOT)/nt/inc/sys/param.h \
1171 $(EMACS_ROOT)/nt/inc/sys/file.h \
1172 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1173 $(EMACS_ROOT)/nt/inc/sys/file.h \
1174 $(SRC)/atimer.h \
1175 $(SRC)/blockinput.h \
1176 $(SRC)/dispextern.h \
1177 $(SRC)/frame.h \
1178 $(SRC)/keyboard.h \
1179 $(SRC)/ndir.h \
1180 $(SRC)/process.h \
1181 $(SRC)/sysselect.h \
1182 $(SRC)/syssignal.h \
1183 $(SRC)/systime.h \
1184 $(SRC)/systty.h \
1185 $(SRC)/syswait.h \
1186 $(SRC)/termchar.h \
1187 $(SRC)/termhooks.h \
1188 $(SRC)/termopts.h \
1189 $(SRC)/w32bdf.h \
1190 $(SRC)/w32gui.h \
1191 $(SRC)/window.h
1192
1193 $(BLD)/term.$(O) : \
1194 $(SRC)/term.c \
1195 $(EMACS_ROOT)/src/s/ms-w32.h \
1196 $(EMACS_ROOT)/src/m/intel386.h \
1197 $(EMACS_ROOT)/src/config.h \
1198 $(SRC)/ccl.h \
1199 $(SRC)/charset.h \
1200 $(SRC)/cm.h \
1201 $(SRC)/coding.h \
1202 $(SRC)/dispextern.h \
1203 $(SRC)/disptab.h \
1204 $(SRC)/frame.h \
1205 $(SRC)/keyboard.h \
1206 $(SRC)/keymap.h \
1207 $(SRC)/termchar.h \
1208 $(SRC)/termhooks.h \
1209 $(SRC)/termopts.h \
1210 $(SRC)/w32bdf.h \
1211 $(SRC)/w32gui.h \
1212 $(SRC)/window.h
1213
1214 $(BLD)/termcap.$(O) : \
1215 $(SRC)/termcap.c \
1216 $(EMACS_ROOT)/src/s/ms-w32.h \
1217 $(EMACS_ROOT)/src/m/intel386.h \
1218 $(EMACS_ROOT)/src/config.h \
1219 $(EMACS_ROOT)/nt/inc/sys/file.h
1220
1221 $(BLD)/textprop.$(O) : \
1222 $(SRC)/textprop.c \
1223 $(EMACS_ROOT)/src/s/ms-w32.h \
1224 $(EMACS_ROOT)/src/m/intel386.h \
1225 $(EMACS_ROOT)/src/config.h \
1226 $(SRC)/buffer.h \
1227 $(SRC)/composite.h \
1228 $(SRC)/dispextern.h \
1229 $(SRC)/intervals.h \
1230 $(SRC)/w32bdf.h \
1231 $(SRC)/w32gui.h \
1232 $(SRC)/window.h
1233
1234 $(BLD)/tparam.$(O) : \
1235 $(SRC)/tparam.c \
1236 $(EMACS_ROOT)/src/s/ms-w32.h \
1237 $(EMACS_ROOT)/src/m/intel386.h \
1238 $(EMACS_ROOT)/src/config.h
1239
1240 $(BLD)/undo.$(O) : \
1241 $(SRC)/undo.c \
1242 $(EMACS_ROOT)/src/s/ms-w32.h \
1243 $(EMACS_ROOT)/src/m/intel386.h \
1244 $(EMACS_ROOT)/src/config.h \
1245 $(SRC)/buffer.h \
1246 $(SRC)/commands.h
1247
1248 $(BLD)/unexw32.$(O) : \
1249 $(SRC)/unexw32.c \
1250 $(EMACS_ROOT)/src/s/ms-w32.h \
1251 $(EMACS_ROOT)/src/m/intel386.h \
1252 $(EMACS_ROOT)/src/config.h \
1253 $(SRC)/w32heap.h
1254
1255 $(BLD)/vm-limit.$(O) : \
1256 $(SRC)/vm-limit.c \
1257 $(EMACS_ROOT)/src/s/ms-w32.h \
1258 $(EMACS_ROOT)/src/m/intel386.h \
1259 $(EMACS_ROOT)/src/config.h \
1260 $(SRC)/mem-limits.h
1261
1262 $(BLD)/window.$(O) : \
1263 $(SRC)/window.c \
1264 $(EMACS_ROOT)/src/s/ms-w32.h \
1265 $(EMACS_ROOT)/src/m/intel386.h \
1266 $(EMACS_ROOT)/src/config.h \
1267 $(SRC)/atimer.h \
1268 $(SRC)/blockinput.h \
1269 $(SRC)/buffer.h \
1270 $(SRC)/commands.h \
1271 $(SRC)/composite.h \
1272 $(SRC)/dispextern.h \
1273 $(SRC)/disptab.h \
1274 $(SRC)/frame.h \
1275 $(SRC)/indent.h \
1276 $(SRC)/intervals.h \
1277 $(SRC)/keyboard.h \
1278 $(SRC)/keymap.h \
1279 $(SRC)/systime.h \
1280 $(SRC)/termchar.h \
1281 $(SRC)/w32bdf.h \
1282 $(SRC)/w32gui.h \
1283 $(SRC)/w32term.h \
1284 $(SRC)/window.h
1285
1286 $(BLD)/xdisp.$(O) : \
1287 $(SRC)/xdisp.c \
1288 $(EMACS_ROOT)/src/s/ms-w32.h \
1289 $(EMACS_ROOT)/src/m/intel386.h \
1290 $(EMACS_ROOT)/src/config.h \
1291 $(SRC)/atimer.h \
1292 $(SRC)/blockinput.h \
1293 $(SRC)/buffer.h \
1294 $(SRC)/ccl.h \
1295 $(SRC)/charset.h \
1296 $(SRC)/coding.h \
1297 $(SRC)/commands.h \
1298 $(SRC)/composite.h \
1299 $(SRC)/dispextern.h \
1300 $(SRC)/disptab.h \
1301 $(SRC)/fontset.h \
1302 $(SRC)/frame.h \
1303 $(SRC)/indent.h \
1304 $(SRC)/intervals.h \
1305 $(SRC)/keyboard.h \
1306 $(SRC)/keymap.h \
1307 $(SRC)/macros.h \
1308 $(SRC)/process.h \
1309 $(SRC)/region-cache.h \
1310 $(SRC)/systime.h \
1311 $(SRC)/termchar.h \
1312 $(SRC)/termhooks.h \
1313 $(SRC)/w32bdf.h \
1314 $(SRC)/w32gui.h \
1315 $(SRC)/w32term.h \
1316 $(SRC)/window.h
1317
1318 $(BLD)/xfaces.$(O): \
1319 $(SRC)/xfaces.c \
1320 $(EMACS_ROOT)/src/s/ms-w32.h \
1321 $(EMACS_ROOT)/src/m/intel386.h \
1322 $(EMACS_ROOT)/src/config.h \
1323 $(SRC)/atimer.h \
1324 $(SRC)/blockinput.h \
1325 $(SRC)/buffer.h \
1326 $(SRC)/charset.h \
1327 $(SRC)/composite.h \
1328 $(SRC)/dispextern.h \
1329 $(SRC)/fontset.h \
1330 $(SRC)/frame.h \
1331 $(SRC)/intervals.h \
1332 $(SRC)/keyboard.h \
1333 $(SRC)/systime.h \
1334 $(SRC)/w32bdf.h \
1335 $(SRC)/w32gui.h \
1336 $(SRC)/w32term.h \
1337 $(SRC)/window.h
1338
1339 $(BLD)/w32fns.$(O): \
1340 $(SRC)/w32fns.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)/ccl.h \
1348 $(SRC)/charset.h \
1349 $(SRC)/coding.h \
1350 $(SRC)/composite.h \
1351 $(SRC)/dispextern.h \
1352 $(SRC)/epaths.h \
1353 $(SRC)/fontset.h \
1354 $(SRC)/frame.h \
1355 $(SRC)/intervals.h \
1356 $(SRC)/keyboard.h \
1357 $(SRC)/systime.h \
1358 $(SRC)/termhooks.h \
1359 $(SRC)/w32bdf.h \
1360 $(SRC)/w32gui.h \
1361 $(SRC)/w32heap.h \
1362 $(SRC)/w32term.h \
1363 $(SRC)/window.h
1364
1365 $(BLD)/w32menu.$(O): \
1366 $(SRC)/w32menu.c \
1367 $(EMACS_ROOT)/src/s/ms-w32.h \
1368 $(EMACS_ROOT)/src/m/intel386.h \
1369 $(EMACS_ROOT)/src/config.h \
1370 $(SRC)/atimer.h \
1371 $(SRC)/blockinput.h \
1372 $(SRC)/buffer.h \
1373 $(SRC)/charset.h \
1374 $(SRC)/coding.h \
1375 $(SRC)/dispextern.h \
1376 $(SRC)/frame.h \
1377 $(SRC)/keyboard.h \
1378 $(SRC)/keymap.h \
1379 $(SRC)/systime.h \
1380 $(SRC)/termhooks.h \
1381 $(SRC)/w32bdf.h \
1382 $(SRC)/w32gui.h \
1383 $(SRC)/w32term.h \
1384 $(SRC)/window.h
1385
1386 $(BLD)/w32term.$(O): \
1387 $(SRC)/w32term.c \
1388 $(EMACS_ROOT)/src/s/ms-w32.h \
1389 $(EMACS_ROOT)/src/m/intel386.h \
1390 $(EMACS_ROOT)/src/config.h \
1391 $(SRC)/atimer.h \
1392 $(SRC)/blockinput.h \
1393 $(SRC)/buffer.h \
1394 $(SRC)/ccl.h \
1395 $(SRC)/charset.h \
1396 $(SRC)/coding.h \
1397 $(SRC)/composite.h \
1398 $(SRC)/dispextern.h \
1399 $(SRC)/disptab.h \
1400 $(SRC)/fontset.h \
1401 $(SRC)/frame.h \
1402 $(SRC)/gnu.h \
1403 $(SRC)/intervals.h \
1404 $(SRC)/keyboard.h \
1405 $(SRC)/keymap.h \
1406 $(SRC)/systime.h \
1407 $(SRC)/systty.h \
1408 $(SRC)/termchar.h \
1409 $(SRC)/termhooks.h \
1410 $(SRC)/termopts.h \
1411 $(SRC)/w32bdf.h \
1412 $(SRC)/w32gui.h \
1413 $(SRC)/w32heap.h \
1414 $(SRC)/w32term.h \
1415 $(SRC)/window.h
1416
1417 $(BLD)/w32select.$(O): \
1418 $(SRC)/w32select.c \
1419 $(EMACS_ROOT)/src/s/ms-w32.h \
1420 $(EMACS_ROOT)/src/m/intel386.h \
1421 $(EMACS_ROOT)/src/config.h \
1422 $(SRC)/atimer.h \
1423 $(SRC)/blockinput.h \
1424 $(SRC)/buffer.h \
1425 $(SRC)/ccl.h \
1426 $(SRC)/charset.h \
1427 $(SRC)/coding.h \
1428 $(SRC)/composite.h \
1429 $(SRC)/dispextern.h \
1430 $(SRC)/frame.h \
1431 $(SRC)/keyboard.h \
1432 $(SRC)/systime.h \
1433 $(SRC)/w32bdf.h \
1434 $(SRC)/w32gui.h \
1435 $(SRC)/w32heap.h \
1436 $(SRC)/w32term.h
1437
1438 $(BLD)/w32reg.$(O): \
1439 $(SRC)/w32reg.c \
1440 $(EMACS_ROOT)/src/s/ms-w32.h \
1441 $(EMACS_ROOT)/src/m/intel386.h \
1442 $(EMACS_ROOT)/src/config.h \
1443 $(SRC)/atimer.h \
1444 $(SRC)/blockinput.h \
1445 $(SRC)/systime.h \
1446 $(SRC)/w32bdf.h \
1447 $(SRC)/w32gui.h \
1448 $(SRC)/w32term.h
1449
1450 $(BLD)/w32xfns.$(O): \
1451 $(SRC)/w32xfns.c \
1452 $(EMACS_ROOT)/src/s/ms-w32.h \
1453 $(EMACS_ROOT)/src/m/intel386.h \
1454 $(EMACS_ROOT)/src/config.h \
1455 $(SRC)/atimer.h \
1456 $(SRC)/blockinput.h \
1457 $(SRC)/charset.h \
1458 $(SRC)/fontset.h \
1459 $(SRC)/frame.h \
1460 $(SRC)/keyboard.h \
1461 $(SRC)/systime.h \
1462 $(SRC)/w32bdf.h \
1463 $(SRC)/w32gui.h \
1464 $(SRC)/w32term.h
1465
1466 $(BLD)/w32bdf.$(O): \
1467 $(SRC)/w32bdf.c \
1468 $(EMACS_ROOT)/src/s/ms-w32.h \
1469 $(EMACS_ROOT)/src/m/intel386.h \
1470 $(EMACS_ROOT)/src/config.h \
1471 $(SRC)/atimer.h \
1472 $(SRC)/blockinput.h \
1473 $(SRC)/charset.h \
1474 $(SRC)/dispextern.h \
1475 $(SRC)/fontset.h \
1476 $(SRC)/frame.h \
1477 $(SRC)/keyboard.h \
1478 $(SRC)/systime.h \
1479 $(SRC)/w32bdf.h \
1480 $(SRC)/w32gui.h \
1481 $(SRC)/w32term.h