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