]> code.delx.au - gnu-emacs/blob - src/makefile.w32-in
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-37
[gnu-emacs] / 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 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
46
47 #
48 # Split up the objects into two sets so that we don't run out of
49 # command line space when we link them into a library.
50 #
51 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
52 # as the "main" object file when linking.
53 #
54 OBJ0 = $(BLD)/emacs.$(O)
55
56 OBJ1 = $(BLD)/abbrev.$(O) \
57 $(BLD)/alloc.$(O) \
58 $(BLD)/atimer.$(O) \
59 $(BLD)/buffer.$(O) \
60 $(BLD)/bytecode.$(O) \
61 $(BLD)/callint.$(O) \
62 $(BLD)/callproc.$(O) \
63 $(BLD)/casefiddle.$(O) \
64 $(BLD)/cm.$(O) \
65 $(BLD)/cmds.$(O) \
66 $(BLD)/data.$(O) \
67 $(BLD)/dired.$(O) \
68 $(BLD)/dispnew.$(O) \
69 $(BLD)/doc.$(O) \
70 $(BLD)/doprnt.$(O) \
71 $(BLD)/editfns.$(O) \
72 $(BLD)/eval.$(O) \
73 $(BLD)/fileio.$(O) \
74 $(BLD)/filelock.$(O) \
75 $(BLD)/filemode.$(O) \
76 $(BLD)/fns.$(O) \
77 $(BLD)/indent.$(O) \
78 $(BLD)/insdel.$(O) \
79 $(BLD)/keyboard.$(O) \
80 $(BLD)/keymap.$(O) \
81 $(BLD)/lread.$(O) \
82 $(BLD)/macros.$(O) \
83 $(BLD)/marker.$(O) \
84 $(BLD)/md5.$(O) \
85 $(BLD)/minibuf.$(O) \
86 $(BLD)/w32.$(O) \
87 $(BLD)/w32heap.$(O) \
88 $(BLD)/w32inevt.$(O) \
89 $(BLD)/w32proc.$(O) \
90 $(BLD)/w32console.$(O) \
91 $(BLD)/print.$(O) \
92 $(BLD)/process.$(O) \
93 $(BLD)/regex.$(O) \
94 $(BLD)/scroll.$(O) \
95 $(BLD)/search.$(O) \
96 $(BLD)/sound.$(O) \
97 $(BLD)/syntax.$(O) \
98 $(BLD)/sysdep.$(O) \
99 $(BLD)/term.$(O) \
100 $(BLD)/termcap.$(O) \
101 $(BLD)/tparam.$(O) \
102 $(BLD)/undo.$(O) \
103 $(BLD)/unexw32.$(O) \
104 $(BLD)/window.$(O) \
105 $(BLD)/xdisp.$(O) \
106 $(BLD)/casetab.$(O) \
107 $(BLD)/floatfns.$(O) \
108 $(BLD)/frame.$(O) \
109 $(BLD)/gmalloc.$(O) \
110 $(BLD)/intervals.$(O) \
111 $(BLD)/composite.$(O) \
112 $(BLD)/ralloc.$(O) \
113 $(BLD)/textprop.$(O) \
114 $(BLD)/vm-limit.$(O) \
115 $(BLD)/region-cache.$(O) \
116 $(BLD)/strftime.$(O) \
117 $(BLD)/charset.$(O) \
118 $(BLD)/character.$(O) \
119 $(BLD)/chartab.$(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
128 WIN32OBJ = $(BLD)/w32term.$(O) \
129 $(BLD)/w32xfns.$(O) \
130 $(BLD)/w32fns.$(O) \
131 $(BLD)/xfaces.$(O) \
132 $(BLD)/w32select.$(O) \
133 $(BLD)/w32menu.$(O) \
134 $(BLD)/w32reg.$(O) \
135 $(BLD)/w32bdf.$(O)
136
137 LIBS = $(TLIB0) \
138 $(TLIB1) \
139 $(TLIBW32) \
140 $(TLASTLIB) \
141 $(WINMM) \
142 $(ADVAPI32) \
143 $(GDI32) \
144 $(COMDLG32) \
145 $(USER32) \
146 $(MPR) \
147 $(SHELL32) \
148 $(WINSPOOL) \
149 $(libc)
150
151 #
152 # Build the executable and dump it.
153 #
154 all: $(ALL)
155
156 #
157 # The dumped executable
158 #
159 emacs: $(BLD) $(EMACS)
160 $(EMACS): $(DOC) $(TEMACS)
161 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
162 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
163
164 #
165 # The undumped executable
166 # Note the extra post-link step to insert a static preload heap section.
167 # If preload runs out of memory, increase the last argument to addsection
168 # (it is the preload heap size in MB).
169 #
170 temacs: $(BLD) $(TEMACS)
171 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
172 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
173 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 20
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)/character.h \
272 $(SRC)/charset.h \
273 $(SRC)/commands.h \
274 $(SRC)/dispextern.h \
275 $(SRC)/syntax.h \
276 $(SRC)/w32bdf.h \
277 $(SRC)/w32gui.h \
278 $(SRC)/window.h
279
280 $(BLD)/alloc.$(O) : \
281 $(SRC)/alloc.c \
282 $(EMACS_ROOT)/src/s/ms-w32.h \
283 $(EMACS_ROOT)/src/m/intel386.h \
284 $(EMACS_ROOT)/src/config.h \
285 $(SRC)/blockinput.h \
286 $(SRC)/buffer.h \
287 $(SRC)/character.h \
288 $(SRC)/charset.h \
289 $(SRC)/composite.h \
290 $(SRC)/dispextern.h \
291 $(SRC)/frame.h \
292 $(SRC)/intervals.h \
293 $(SRC)/keyboard.h \
294 $(SRC)/process.h \
295 $(SRC)/puresize.h \
296 $(SRC)/syssignal.h \
297 $(SRC)/w32bdf.h \
298 $(SRC)/w32gui.h \
299 $(SRC)/window.h
300
301 $(BLD)/atimer.$(O) : \
302 $(SRC)/atimer.c \
303 $(EMACS_ROOT)/src/s/ms-w32.h \
304 $(EMACS_ROOT)/src/m/intel386.h \
305 $(EMACS_ROOT)/src/config.h \
306 $(SRC)/s/ms-w32.h \
307 $(SRC)/m/intel386.h \
308 $(SRC)/config.h \
309 $(SRC)/atimer.h \
310 $(SRC)/blockinput.h \
311 $(SRC)/syssignal.h \
312 $(SRC)/systime.h
313
314 $(BLD)/buffer.$(O) : \
315 $(SRC)/buffer.c \
316 $(EMACS_ROOT)/nt/inc/sys/param.h \
317 $(EMACS_ROOT)/src/s/ms-w32.h \
318 $(EMACS_ROOT)/src/m/intel386.h \
319 $(EMACS_ROOT)/src/config.h \
320 $(SRC)/blockinput.h \
321 $(SRC)/buffer.h \
322 $(SRC)/charset.h \
323 $(SRC)/commands.h \
324 $(SRC)/composite.h \
325 $(SRC)/dispextern.h \
326 $(SRC)/frame.h \
327 $(SRC)/indent.h \
328 $(SRC)/intervals.h \
329 $(SRC)/keyboard.h \
330 $(SRC)/keymap.h \
331 $(SRC)/region-cache.h \
332 $(SRC)/w32bdf.h \
333 $(SRC)/w32gui.h \
334 $(SRC)/window.h
335
336 $(BLD)/bytecode.$(O) : \
337 $(SRC)/bytecode.c \
338 $(EMACS_ROOT)/src/s/ms-w32.h \
339 $(EMACS_ROOT)/src/m/intel386.h \
340 $(EMACS_ROOT)/src/config.h \
341 $(SRC)/buffer.h \
342 $(SRC)/charset.h \
343 $(SRC)/syntax.h \
344 $(SRC)/window.h
345
346 $(BLD)/callint.$(O) : \
347 $(SRC)/callint.c \
348 $(EMACS_ROOT)/src/s/ms-w32.h \
349 $(EMACS_ROOT)/src/m/intel386.h \
350 $(EMACS_ROOT)/src/config.h \
351 $(SRC)/buffer.h \
352 $(SRC)/commands.h \
353 $(SRC)/dispextern.h \
354 $(SRC)/keyboard.h \
355 $(SRC)/keymap.h \
356 $(SRC)/w32bdf.h \
357 $(SRC)/w32gui.h \
358 $(SRC)/window.h
359
360 $(BLD)/callproc.$(O) : \
361 $(SRC)/callproc.c \
362 $(EMACS_ROOT)/src/s/ms-w32.h \
363 $(EMACS_ROOT)/src/m/intel386.h \
364 $(EMACS_ROOT)/src/config.h \
365 $(EMACS_ROOT)/nt/inc/sys/param.h \
366 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
367 $(EMACS_ROOT)/nt/inc/sys/file.h \
368 $(SRC)/buffer.h \
369 $(SRC)/ccl.h \
370 $(SRC)/character.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)/character.h \
388 $(SRC)/charset.h \
389 $(SRC)/commands.h \
390 $(SRC)/composite.h \
391 $(SRC)/keymap.h \
392 $(SRC)/syntax.h
393
394 $(BLD)/casetab.$(O) : \
395 $(SRC)/casetab.c \
396 $(EMACS_ROOT)/src/s/ms-w32.h \
397 $(EMACS_ROOT)/src/m/intel386.h \
398 $(EMACS_ROOT)/src/config.h \
399 $(SRC)/buffer.h \
400 $(SRC)/charset.h
401
402 $(BLD)/category.$(O) : \
403 $(SRC)/category.c \
404 $(EMACS_ROOT)/src/s/ms-w32.h \
405 $(EMACS_ROOT)/src/m/intel386.h \
406 $(EMACS_ROOT)/src/config.h \
407 $(SRC)/buffer.h \
408 $(SRC)/category.h \
409 $(SRC)/character.h \
410 $(SRC)/charset.h \
411 $(SRC)/keymap.h
412
413 $(BLD)/ccl.$(O) : \
414 $(SRC)/ccl.c \
415 $(EMACS_ROOT)/src/s/ms-w32.h \
416 $(EMACS_ROOT)/src/m/intel386.h \
417 $(EMACS_ROOT)/src/config.h \
418 $(SRC)/ccl.h \
419 $(SRC)/character.h \
420 $(SRC)/charset.h \
421 $(SRC)/coding.h
422
423 $(BLD)/character.$(O) : \
424 $(SRC)/character.c \
425 $(EMACS_ROOT)/src/s/ms-w32.h \
426 $(EMACS_ROOT)/src/m/intel386.h \
427 $(EMACS_ROOT)/src/config.h \
428 $(SRC)/buffer.h \
429 $(SRC)/character.h \
430 $(SRC)/charset.h \
431 $(SRC)/coding.h \
432 $(SRC)/composite.h \
433 $(SRC)/disptab.h
434
435 $(BLD)/charset.$(O) : \
436 $(SRC)/charset.c \
437 $(EMACS_ROOT)/src/s/ms-w32.h \
438 $(EMACS_ROOT)/src/m/intel386.h \
439 $(EMACS_ROOT)/src/config.h \
440 $(SRC)/buffer.h \
441 $(SRC)/ccl.h \
442 $(SRC)/character.h \
443 $(SRC)/charset.h \
444 $(SRC)/coding.h \
445 $(SRC)/composite.h \
446 $(SRC)/disptab.h
447
448 $(BLD)/chartab.$(O) : \
449 $(SRC)/chartab.c \
450 $(EMACS_ROOT)/src/s/ms-w32.h \
451 $(EMACS_ROOT)/src/m/intel386.h \
452 $(EMACS_ROOT)/src/config.h \
453 $(SRC)/charset.h \
454 $(SRC)/character.h
455
456 $(BLD)/cm.$(O) : \
457 $(SRC)/cm.c \
458 $(EMACS_ROOT)/src/s/ms-w32.h \
459 $(EMACS_ROOT)/src/m/intel386.h \
460 $(EMACS_ROOT)/src/config.h \
461 $(SRC)/cm.h \
462 $(SRC)/termhooks.h
463
464 $(BLD)/cmds.$(O) : \
465 $(SRC)/cmds.c \
466 $(EMACS_ROOT)/src/s/ms-w32.h \
467 $(EMACS_ROOT)/src/m/intel386.h \
468 $(EMACS_ROOT)/src/config.h \
469 $(SRC)/buffer.h \
470 $(SRC)/character.h \
471 $(SRC)/charset.h \
472 $(SRC)/commands.h \
473 $(SRC)/dispextern.h \
474 $(SRC)/keyboard.h \
475 $(SRC)/keymap.h \
476 $(SRC)/syntax.h \
477 $(SRC)/w32bdf.h \
478 $(SRC)/w32gui.h \
479 $(SRC)/window.h
480
481 $(BLD)/coding.$(O) : \
482 $(SRC)/coding.c \
483 $(EMACS_ROOT)/src/s/ms-w32.h \
484 $(EMACS_ROOT)/src/m/intel386.h \
485 $(EMACS_ROOT)/src/config.h \
486 $(SRC)/buffer.h \
487 $(SRC)/ccl.h \
488 $(SRC)/character.h \
489 $(SRC)/charset.h \
490 $(SRC)/coding.h \
491 $(SRC)/composite.h \
492 $(SRC)/dispextern.h \
493 $(SRC)/intervals.h \
494 $(SRC)/w32bdf.h \
495 $(SRC)/w32gui.h \
496 $(SRC)/window.h
497
498 $(BLD)/composite.$(O) : \
499 $(SRC)/composite.c \
500 $(EMACS_ROOT)/src/s/ms-w32.h \
501 $(EMACS_ROOT)/src/m/intel386.h \
502 $(EMACS_ROOT)/src/config.h \
503 $(SRC)/buffer.h \
504 $(SRC)/character.h \
505 $(SRC)/charset.h \
506 $(SRC)/composite.h \
507 $(SRC)/dispextern.h \
508 $(SRC)/intervals.h \
509 $(SRC)/w32bdf.h \
510 $(SRC)/w32gui.h
511
512 $(BLD)/data.$(O) : \
513 $(SRC)/data.c \
514 $(EMACS_ROOT)/src/s/ms-w32.h \
515 $(EMACS_ROOT)/src/m/intel386.h \
516 $(EMACS_ROOT)/src/config.h \
517 $(SRC)/buffer.h \
518 $(SRC)/character.h \
519 $(SRC)/charset.h \
520 $(SRC)/frame.h \
521 $(SRC)/keyboard.h \
522 $(SRC)/puresize.h \
523 $(SRC)/syssignal.h
524
525 $(BLD)/dired.$(O) : \
526 $(SRC)/dired.c \
527 $(EMACS_ROOT)/src/s/ms-w32.h \
528 $(EMACS_ROOT)/src/m/intel386.h \
529 $(EMACS_ROOT)/src/config.h \
530 $(SRC)/buffer.h \
531 $(SRC)/ccl.h \
532 $(SRC)/character.h \
533 $(SRC)/charset.h \
534 $(SRC)/coding.h \
535 $(SRC)/commands.h \
536 $(SRC)/ndir.h \
537 $(SRC)/regex.h \
538 $(SRC)/systime.h
539
540 $(BLD)/dispnew.$(O) : \
541 $(SRC)/dispnew.c \
542 $(EMACS_ROOT)/src/s/ms-w32.h \
543 $(EMACS_ROOT)/src/m/intel386.h \
544 $(EMACS_ROOT)/src/config.h \
545 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
546 $(EMACS_ROOT)/nt/inc/sys/file.h \
547 $(SRC)/atimer.h \
548 $(SRC)/blockinput.h \
549 $(SRC)/buffer.h \
550 $(SRC)/character.h \
551 $(SRC)/charset.h \
552 $(SRC)/cm.h \
553 $(SRC)/commands.h \
554 $(SRC)/composite.h \
555 $(SRC)/dispextern.h \
556 $(SRC)/disptab.h \
557 $(SRC)/frame.h \
558 $(SRC)/indent.h \
559 $(SRC)/intervals.h \
560 $(SRC)/keyboard.h \
561 $(SRC)/process.h \
562 $(SRC)/syssignal.h \
563 $(SRC)/systime.h \
564 $(SRC)/termchar.h \
565 $(SRC)/termhooks.h \
566 $(SRC)/termopts.h \
567 $(SRC)/w32bdf.h \
568 $(SRC)/w32gui.h \
569 $(SRC)/w32term.h \
570 $(SRC)/window.h
571
572 $(BLD)/doc.$(O) : \
573 $(SRC)/doc.c \
574 $(EMACS_ROOT)/src/s/ms-w32.h \
575 $(EMACS_ROOT)/src/m/intel386.h \
576 $(EMACS_ROOT)/src/config.h \
577 $(EMACS_ROOT)/nt/inc/sys/file.h \
578 $(SRC)/buffer.h \
579 $(SRC)/character.h \
580 $(SRC)/charset.h \
581 $(SRC)/keyboard.h \
582 $(SRC)/keymap.h
583
584 $(BLD)/doprnt.$(O) : \
585 $(SRC)/doprnt.c \
586 $(EMACS_ROOT)/src/s/ms-w32.h \
587 $(EMACS_ROOT)/src/m/intel386.h \
588 $(EMACS_ROOT)/src/config.h \
589 $(SRC)/character.h \
590 $(SRC)/charset.c
591
592 $(BLD)/editfns.$(O) : \
593 $(SRC)/editfns.c \
594 $(EMACS_ROOT)/src/s/ms-w32.h \
595 $(EMACS_ROOT)/src/m/intel386.h \
596 $(EMACS_ROOT)/src/config.h \
597 $(EMACS_ROOT)/nt/inc/pwd.h \
598 $(SRC)/buffer.h \
599 $(SRC)/ccl.h \
600 $(SRC)/character.h \
601 $(SRC)/charset.h \
602 $(SRC)/coding.h \
603 $(SRC)/composite.h \
604 $(SRC)/dispextern.h \
605 $(SRC)/frame.h \
606 $(SRC)/intervals.h \
607 $(SRC)/systime.h \
608 $(SRC)/w32bdf.h \
609 $(SRC)/w32gui.h \
610 $(SRC)/window.h
611
612 $(BLD)/emacs.$(O) : \
613 $(SRC)/emacs.c \
614 $(EMACS_ROOT)/src/s/ms-w32.h \
615 $(EMACS_ROOT)/src/m/intel386.h \
616 $(EMACS_ROOT)/src/config.h \
617 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
618 $(EMACS_ROOT)/nt/inc/sys/file.h \
619 $(SRC)/atimer.h \
620 $(SRC)/blockinput.h \
621 $(SRC)/buffer.h \
622 $(SRC)/commands.h \
623 $(SRC)/composite.h \
624 $(SRC)/dispextern.h \
625 $(SRC)/intervals.h \
626 $(SRC)/keyboard.h \
627 $(SRC)/keymap.h \
628 $(SRC)/process.h \
629 $(SRC)/syssignal.h \
630 $(SRC)/systime.h \
631 $(SRC)/systty.h \
632 $(SRC)/termhooks.h \
633 $(SRC)/w32bdf.h \
634 $(SRC)/w32gui.h \
635 $(SRC)/window.h
636
637 $(BLD)/eval.$(O) : \
638 $(SRC)/eval.c \
639 $(EMACS_ROOT)/src/s/ms-w32.h \
640 $(EMACS_ROOT)/src/m/intel386.h \
641 $(EMACS_ROOT)/src/config.h \
642 $(SRC)/atimer.h \
643 $(SRC)/blockinput.h \
644 $(SRC)/commands.h \
645 $(SRC)/dispextern.h \
646 $(SRC)/keyboard.h \
647 $(SRC)/systime.h \
648 $(SRC)/w32bdf.h \
649 $(SRC)/w32gui.h
650
651 $(BLD)/fileio.$(O) : \
652 $(SRC)/fileio.c \
653 $(EMACS_ROOT)/src/s/ms-w32.h \
654 $(EMACS_ROOT)/src/m/intel386.h \
655 $(EMACS_ROOT)/src/config.h \
656 $(EMACS_ROOT)/nt/inc/pwd.h \
657 $(EMACS_ROOT)/nt/inc/sys/param.h \
658 $(EMACS_ROOT)/nt/inc/sys/file.h \
659 $(SRC)/buffer.h \
660 $(SRC)/ccl.h \
661 $(SRC)/character.h \
662 $(SRC)/charset.h \
663 $(SRC)/coding.h \
664 $(SRC)/commands.h \
665 $(SRC)/composite.h \
666 $(SRC)/dispextern.h \
667 $(SRC)/intervals.h \
668 $(SRC)/systime.h \
669 $(SRC)/w32bdf.h \
670 $(SRC)/w32gui.h \
671 $(SRC)/window.h
672
673 $(BLD)/filelock.$(O) : \
674 $(SRC)/filelock.c \
675 $(EMACS_ROOT)/src/s/ms-w32.h \
676 $(EMACS_ROOT)/src/m/intel386.h \
677 $(EMACS_ROOT)/src/config.h \
678 $(EMACS_ROOT)/nt/inc/pwd.h \
679 $(EMACS_ROOT)/nt/inc/sys/file.h \
680 $(EMACS_ROOT)/src/epaths.h \
681 $(SRC)/buffer.h \
682 $(SRC)/ccl.h \
683 $(SRC)/character.h \
684 $(SRC)/charset.h \
685 $(SRC)/coding.h \
686 $(SRC)/systime.h
687
688 $(BLD)/filemode.$(O) : \
689 $(SRC)/filemode.c \
690 $(EMACS_ROOT)/src/s/ms-w32.h \
691 $(EMACS_ROOT)/src/m/intel386.h \
692 $(EMACS_ROOT)/src/config.h \
693 $(SRC)/s/ms-w32.h \
694 $(SRC)/m/intel386.h \
695 $(SRC)/config.h
696
697 $(BLD)/firstfile.$(O) : \
698 $(SRC)/firstfile.c \
699 $(EMACS_ROOT)/src/s/ms-w32.h \
700 $(EMACS_ROOT)/src/m/intel386.h \
701 $(EMACS_ROOT)/src/config.h
702
703 $(BLD)/floatfns.$(O) : \
704 $(SRC)/floatfns.c \
705 $(EMACS_ROOT)/src/s/ms-w32.h \
706 $(EMACS_ROOT)/src/m/intel386.h \
707 $(EMACS_ROOT)/src/config.h \
708 $(SRC)/syssignal.h
709
710 $(BLD)/fns.$(O) : \
711 $(SRC)/fns.c \
712 $(EMACS_ROOT)/src/s/ms-w32.h \
713 $(EMACS_ROOT)/src/m/intel386.h \
714 $(EMACS_ROOT)/src/config.h \
715 $(SRC)/atimer.h \
716 $(SRC)/blockinput.h \
717 $(SRC)/buffer.h \
718 $(SRC)/ccl.h \
719 $(SRC)/character.h \
720 $(SRC)/charset.h \
721 $(SRC)/coding.h \
722 $(SRC)/commands.h \
723 $(SRC)/composite.h \
724 $(SRC)/dispextern.h \
725 $(SRC)/frame.h \
726 $(SRC)/intervals.h \
727 $(SRC)/keyboard.h \
728 $(SRC)/keymap.h \
729 $(SRC)/md5.h \
730 $(SRC)/systime.h \
731 $(SRC)/w32bdf.h \
732 $(SRC)/w32gui.h \
733 $(SRC)/window.h
734
735 $(BLD)/fontset.$(O) : \
736 $(SRC)/fontset.c \
737 $(EMACS_ROOT)/src/s/ms-w32.h \
738 $(EMACS_ROOT)/src/m/intel386.h \
739 $(EMACS_ROOT)/src/config.h \
740 $(SRC)/buffer.h \
741 $(SRC)/ccl.h \
742 $(SRC)/character.h \
743 $(SRC)/charset.h \
744 $(SRC)/dispextern.h \
745 $(SRC)/fontset.h \
746 $(SRC)/frame.h \
747 $(SRC)/keyboard.h \
748 $(SRC)/w32bdf.h \
749 $(SRC)/w32gui.h \
750 $(SRC)/window.h
751
752 $(BLD)/frame.$(O) : \
753 $(SRC)/frame.c \
754 $(EMACS_ROOT)/src/s/ms-w32.h \
755 $(EMACS_ROOT)/src/m/intel386.h \
756 $(EMACS_ROOT)/src/config.h \
757 $(SRC)/atimer.h \
758 $(SRC)/blockinput.h \
759 $(SRC)/buffer.h \
760 $(SRC)/character.h \
761 $(SRC)/charset.h \
762 $(SRC)/commands.h \
763 $(SRC)/dispextern.h \
764 $(SRC)/fontset.h \
765 $(SRC)/frame.h \
766 $(SRC)/keyboard.h \
767 $(SRC)/systime.h \
768 $(SRC)/termhooks.h \
769 $(SRC)/w32bdf.h \
770 $(SRC)/w32gui.h \
771 $(SRC)/w32term.h \
772 $(SRC)/window.h
773
774 $(BLD)/fringe.$(O) : \
775 $(SRC)/fringe.c \
776 $(EMACS_ROOT)/src/s/ms-w32.h \
777 $(EMACS_ROOT)/src/m/intel386.h \
778 $(EMACS_ROOT)/src/config.h \
779 $(SRC)/atimer.h \
780 $(SRC)/blockinput.h \
781 $(SRC)/buffer.h \
782 $(SRC)/dispextern.h \
783 $(SRC)/frame.h \
784 $(SRC)/systime.h \
785 $(SRC)/w32bdf.h \
786 $(SRC)/w32gui.h \
787 $(SRC)/window.h
788
789 $(BLD)/gmalloc.$(O) : \
790 $(SRC)/gmalloc.c \
791 $(EMACS_ROOT)/src/s/ms-w32.h \
792 $(EMACS_ROOT)/src/m/intel386.h \
793 $(EMACS_ROOT)/src/config.h \
794 $(EMACS_ROOT)/nt/inc/sys/param.h \
795 $(SRC)/getpagesize.h
796
797 $(BLD)/image.$(O): \
798 $(SRC)/image.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)/dispextern.h \
805 $(SRC)/epaths.h \
806 $(SRC)/frame.h \
807 $(SRC)/systime.h \
808 $(SRC)/termhooks.h \
809 $(SRC)/w32bdf.h \
810 $(SRC)/w32gui.h \
811 $(SRC)/w32heap.h \
812 $(SRC)/w32term.h \
813 $(SRC)/window.h
814
815 $(BLD)/indent.$(O) : \
816 $(SRC)/indent.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)/category.h \
822 $(SRC)/character.h \
823 $(SRC)/charset.h \
824 $(SRC)/composite.h \
825 $(SRC)/dispextern.h \
826 $(SRC)/disptab.h \
827 $(SRC)/frame.h \
828 $(SRC)/indent.h \
829 $(SRC)/intervals.h \
830 $(SRC)/keyboard.h \
831 $(SRC)/region-cache.h \
832 $(SRC)/termchar.h \
833 $(SRC)/termopts.h \
834 $(SRC)/w32bdf.h \
835 $(SRC)/w32gui.h \
836 $(SRC)/window.h
837
838 $(BLD)/insdel.$(O) : \
839 $(SRC)/insdel.c \
840 $(EMACS_ROOT)/src/s/ms-w32.h \
841 $(EMACS_ROOT)/src/m/intel386.h \
842 $(EMACS_ROOT)/src/config.h \
843 $(SRC)/atimer.h \
844 $(SRC)/blockinput.h \
845 $(SRC)/buffer.h \
846 $(SRC)/character.h \
847 $(SRC)/charset.h \
848 $(SRC)/composite.h \
849 $(SRC)/dispextern.h \
850 $(SRC)/intervals.h \
851 $(SRC)/region-cache.h \
852 $(SRC)/systime.h \
853 $(SRC)/w32bdf.h \
854 $(SRC)/w32gui.h \
855 $(SRC)/window.h
856
857 $(BLD)/intervals.$(O) : \
858 $(SRC)/intervals.c \
859 $(EMACS_ROOT)/src/s/ms-w32.h \
860 $(EMACS_ROOT)/src/m/intel386.h \
861 $(EMACS_ROOT)/src/config.h \
862 $(SRC)/buffer.h \
863 $(SRC)/composite.h \
864 $(SRC)/dispextern.h \
865 $(SRC)/intervals.h \
866 $(SRC)/keyboard.h \
867 $(SRC)/keymap.h \
868 $(SRC)/puresize.h \
869 $(SRC)/w32bdf.h \
870 $(SRC)/w32gui.h
871
872 $(BLD)/keyboard.$(O) : \
873 $(SRC)/keyboard.c \
874 $(EMACS_ROOT)/src/s/ms-w32.h \
875 $(EMACS_ROOT)/src/m/intel386.h \
876 $(EMACS_ROOT)/src/config.h \
877 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
878 $(EMACS_ROOT)/nt/inc/sys/file.h \
879 $(SRC)/atimer.h \
880 $(SRC)/blockinput.h \
881 $(SRC)/buffer.h \
882 $(SRC)/character.h \
883 $(SRC)/charset.h \
884 $(SRC)/commands.h \
885 $(SRC)/composite.h \
886 $(SRC)/dispextern.h \
887 $(SRC)/disptab.h \
888 $(SRC)/frame.h \
889 $(SRC)/intervals.h \
890 $(SRC)/keyboard.h \
891 $(SRC)/keymap.h \
892 $(SRC)/macros.h \
893 $(SRC)/puresize.h \
894 $(SRC)/syntax.h \
895 $(SRC)/syssignal.h \
896 $(SRC)/systime.h \
897 $(SRC)/systty.h \
898 $(SRC)/termchar.h \
899 $(SRC)/termhooks.h \
900 $(SRC)/termopts.h \
901 $(SRC)/w32bdf.h \
902 $(SRC)/w32gui.h \
903 $(SRC)/w32term.h \
904 $(SRC)/window.h
905
906 $(BLD)/keymap.$(O) : \
907 $(SRC)/keymap.c \
908 $(EMACS_ROOT)/src/s/ms-w32.h \
909 $(EMACS_ROOT)/src/m/intel386.h \
910 $(EMACS_ROOT)/src/config.h \
911 $(SRC)/atimer.h \
912 $(SRC)/blockinput.h \
913 $(SRC)/buffer.h \
914 $(SRC)/character.h \
915 $(SRC)/charset.h \
916 $(SRC)/commands.h \
917 $(SRC)/composite.h \
918 $(SRC)/dispextern.h \
919 $(SRC)/intervals.h \
920 $(SRC)/keyboard.h \
921 $(SRC)/keymap.h \
922 $(SRC)/puresize.h \
923 $(SRC)/systime.h \
924 $(SRC)/termhooks.h \
925 $(SRC)/w32bdf.h \
926 $(SRC)/w32gui.h
927
928 $(BLD)/lastfile.$(O) : \
929 $(SRC)/lastfile.c \
930 $(EMACS_ROOT)/src/s/ms-w32.h \
931 $(EMACS_ROOT)/src/m/intel386.h \
932 $(EMACS_ROOT)/src/config.h
933
934 $(BLD)/lread.$(O) : \
935 $(SRC)/lread.c \
936 $(EMACS_ROOT)/src/s/ms-w32.h \
937 $(EMACS_ROOT)/src/m/intel386.h \
938 $(EMACS_ROOT)/src/config.h \
939 $(EMACS_ROOT)/nt/inc/sys/file.h \
940 $(EMACS_ROOT)/src/epaths.h \
941 $(SRC)/buffer.h \
942 $(SRC)/ccl.h \
943 $(SRC)/character.h \
944 $(SRC)/charset.h \
945 $(SRC)/coding.h \
946 $(SRC)/commands.h \
947 $(SRC)/composite.h \
948 $(SRC)/dispextern.h \
949 $(SRC)/intervals.h \
950 $(SRC)/keyboard.h \
951 $(SRC)/termhooks.h \
952 $(SRC)/w32bdf.h \
953 $(SRC)/w32gui.h
954
955 $(BLD)/macros.$(O) : \
956 $(SRC)/macros.c \
957 $(EMACS_ROOT)/src/s/ms-w32.h \
958 $(EMACS_ROOT)/src/m/intel386.h \
959 $(EMACS_ROOT)/src/config.h \
960 $(SRC)/buffer.h \
961 $(SRC)/commands.h \
962 $(SRC)/dispextern.h \
963 $(SRC)/keyboard.h \
964 $(SRC)/macros.h \
965 $(SRC)/w32bdf.h \
966 $(SRC)/w32gui.h \
967 $(SRC)/window.h
968
969 $(BLD)/marker.$(O) : \
970 $(SRC)/marker.c \
971 $(EMACS_ROOT)/src/s/ms-w32.h \
972 $(EMACS_ROOT)/src/m/intel386.h \
973 $(EMACS_ROOT)/src/config.h \
974 $(SRC)/buffer.h \
975 $(SRC)/character.h \
976 $(SRC)/charset.h
977
978 $(BLD)/md5.$(O) : \
979 $(SRC)/md5.c \
980 $(SRC)/md5.h
981
982 $(BLD)/minibuf.$(O) : \
983 $(SRC)/minibuf.c \
984 $(EMACS_ROOT)/src/s/ms-w32.h \
985 $(EMACS_ROOT)/src/m/intel386.h \
986 $(EMACS_ROOT)/src/config.h \
987 $(SRC)/buffer.h \
988 $(SRC)/character.h \
989 $(SRC)/charset.h \
990 $(SRC)/commands.h \
991 $(SRC)/composite.h \
992 $(SRC)/dispextern.h \
993 $(SRC)/frame.h \
994 $(SRC)/intervals.h \
995 $(SRC)/keyboard.h \
996 $(SRC)/keymap.h \
997 $(SRC)/syntax.h \
998 $(SRC)/w32bdf.h \
999 $(SRC)/w32gui.h \
1000 $(SRC)/window.h
1001
1002 $(BLD)/w32.$(O) : \
1003 $(SRC)/w32.c \
1004 $(EMACS_ROOT)/nt/inc/pwd.h \
1005 $(SRC)/s/ms-w32.h \
1006 $(SRC)/m/intel386.h \
1007 $(SRC)/config.h \
1008 $(SRC)/ndir.h \
1009 $(SRC)/systime.h \
1010 $(SRC)/w32.h \
1011 $(SRC)/w32heap.h
1012
1013 $(BLD)/w32heap.$(O) : \
1014 $(SRC)/w32heap.c \
1015 $(SRC)/s/ms-w32.h \
1016 $(SRC)/m/intel386.h \
1017 $(SRC)/config.h \
1018 $(SRC)/w32heap.h
1019
1020 $(BLD)/w32inevt.$(O) : \
1021 $(SRC)/w32inevt.c \
1022 $(SRC)/s/ms-w32.h \
1023 $(SRC)/m/intel386.h \
1024 $(SRC)/config.h \
1025 $(SRC)/atimer.h \
1026 $(SRC)/blockinput.h \
1027 $(SRC)/frame.h \
1028 $(SRC)/keyboard.h \
1029 $(SRC)/systime.h \
1030 $(SRC)/termhooks.h \
1031 $(SRC)/w32bdf.h \
1032 $(SRC)/w32gui.h \
1033 $(SRC)/w32heap.h \
1034 $(SRC)/w32term.h
1035
1036 $(BLD)/w32proc.$(O) : \
1037 $(SRC)/w32proc.c \
1038 $(SRC)/s/ms-w32.h \
1039 $(SRC)/m/intel386.h \
1040 $(SRC)/config.h \
1041 $(SRC)/process.h \
1042 $(SRC)/syssignal.h \
1043 $(SRC)/systime.h \
1044 $(SRC)/syswait.h \
1045 $(SRC)/w32.h \
1046 $(SRC)/w32bdf.h \
1047 $(SRC)/w32gui.h \
1048 $(SRC)/w32heap.h \
1049 $(SRC)/w32term.h
1050
1051 $(BLD)/w32console.$(O) : \
1052 $(SRC)/w32console.c \
1053 $(SRC)/s/ms-w32.h \
1054 $(SRC)/m/intel386.h \
1055 $(SRC)/ccl.h \
1056 $(SRC)/character.h \
1057 $(SRC)/charset.h \
1058 $(SRC)/coding.h \
1059 $(SRC)/config.h \
1060 $(SRC)/dispextern.h \
1061 $(SRC)/disptab.h \
1062 $(SRC)/frame.h \
1063 $(SRC)/termhooks.h \
1064 $(SRC)/w32bdf.h \
1065 $(SRC)/w32gui.h \
1066 $(SRC)/w32inevt.h
1067
1068 $(BLD)/print.$(O) : \
1069 $(SRC)/print.c \
1070 $(EMACS_ROOT)/src/s/ms-w32.h \
1071 $(EMACS_ROOT)/src/m/intel386.h \
1072 $(EMACS_ROOT)/src/config.h \
1073 $(SRC)/buffer.h \
1074 $(SRC)/character.h \
1075 $(SRC)/charset.h \
1076 $(SRC)/composite.h \
1077 $(SRC)/dispextern.h \
1078 $(SRC)/frame.h \
1079 $(SRC)/intervals.h \
1080 $(SRC)/keyboard.h \
1081 $(SRC)/process.h \
1082 $(SRC)/termchar.h \
1083 $(SRC)/w32bdf.h \
1084 $(SRC)/w32gui.h \
1085 $(SRC)/window.h
1086
1087 $(BLD)/process.$(O) : \
1088 $(SRC)/process.c \
1089 $(EMACS_ROOT)/src/s/ms-w32.h \
1090 $(EMACS_ROOT)/src/m/intel386.h \
1091 $(EMACS_ROOT)/src/config.h \
1092 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1093 $(EMACS_ROOT)/nt/inc/sys/file.h \
1094 $(SRC)/atimer.h \
1095 $(SRC)/blockinput.h \
1096 $(SRC)/buffer.h \
1097 $(SRC)/ccl.h \
1098 $(SRC)/character.h \
1099 $(SRC)/charset.h \
1100 $(SRC)/coding.h \
1101 $(SRC)/commands.h \
1102 $(SRC)/composite.h \
1103 $(SRC)/dispextern.h \
1104 $(SRC)/frame.h \
1105 $(SRC)/keyboard.h \
1106 $(SRC)/process.h \
1107 $(SRC)/sysselect.h \
1108 $(SRC)/syssignal.h \
1109 $(SRC)/systime.h \
1110 $(SRC)/systty.h \
1111 $(SRC)/syswait.h \
1112 $(SRC)/termhooks.h \
1113 $(SRC)/termopts.h \
1114 $(SRC)/w32bdf.h \
1115 $(SRC)/w32gui.h \
1116 $(SRC)/window.h
1117
1118 $(BLD)/ralloc.$(O) : \
1119 $(SRC)/ralloc.c \
1120 $(EMACS_ROOT)/src/s/ms-w32.h \
1121 $(EMACS_ROOT)/src/m/intel386.h \
1122 $(EMACS_ROOT)/src/config.h \
1123 $(EMACS_ROOT)/nt/inc/sys/param.h \
1124 $(SRC)/s/ms-w32.h \
1125 $(SRC)/m/intel386.h \
1126 $(SRC)/config.h \
1127 $(SRC)/getpagesize.h
1128
1129 $(BLD)/regex.$(O) : \
1130 $(SRC)/regex.c \
1131 $(EMACS_ROOT)/src/s/ms-w32.h \
1132 $(EMACS_ROOT)/src/m/intel386.h \
1133 $(EMACS_ROOT)/src/config.h \
1134 $(SRC)/s/ms-w32.h \
1135 $(SRC)/m/intel386.h \
1136 $(SRC)/buffer.h \
1137 $(SRC)/category.h \
1138 $(SRC)/character.h \
1139 $(SRC)/charset.h \
1140 $(SRC)/config.h \
1141 $(SRC)/regex.h \
1142 $(SRC)/syntax.h
1143
1144 $(BLD)/region-cache.$(O) : \
1145 $(SRC)/region-cache.c \
1146 $(EMACS_ROOT)/src/s/ms-w32.h \
1147 $(EMACS_ROOT)/src/m/intel386.h \
1148 $(EMACS_ROOT)/src/config.h \
1149 $(SRC)/buffer.h \
1150 $(SRC)/region-cache.h
1151
1152 $(BLD)/scroll.$(O) : \
1153 $(SRC)/scroll.c \
1154 $(EMACS_ROOT)/src/s/ms-w32.h \
1155 $(EMACS_ROOT)/src/m/intel386.h \
1156 $(EMACS_ROOT)/src/config.h \
1157 $(SRC)/dispextern.h \
1158 $(SRC)/frame.h \
1159 $(SRC)/keyboard.h \
1160 $(SRC)/termchar.h \
1161 $(SRC)/w32bdf.h \
1162 $(SRC)/w32gui.h \
1163 $(SRC)/window.h
1164
1165 $(BLD)/search.$(O) : \
1166 $(SRC)/search.c \
1167 $(EMACS_ROOT)/src/s/ms-w32.h \
1168 $(EMACS_ROOT)/src/m/intel386.h \
1169 $(EMACS_ROOT)/src/config.h \
1170 $(SRC)/atimer.h \
1171 $(SRC)/blockinput.h \
1172 $(SRC)/buffer.h \
1173 $(SRC)/category.h \
1174 $(SRC)/character.h \
1175 $(SRC)/charset.h \
1176 $(SRC)/commands.h \
1177 $(SRC)/composite.h \
1178 $(SRC)/dispextern.h \
1179 $(SRC)/intervals.h \
1180 $(SRC)/regex.h \
1181 $(SRC)/region-cache.h \
1182 $(SRC)/syntax.h \
1183 $(SRC)/systime.h \
1184 $(SRC)/w32bdf.h \
1185 $(SRC)/w32gui.h
1186
1187 $(BLD)/sound.$(O) : \
1188 $(SRC)/sound.c \
1189 $(SRC)/lisp.h \
1190 $(SRC)/dispextern.h \
1191 $(SRC)/atimer.h \
1192 $(SRC)/syssignal.h
1193
1194 $(BLD)/strftime.$(O) : \
1195 $(SRC)/strftime.c \
1196 $(EMACS_ROOT)/src/s/ms-w32.h \
1197 $(EMACS_ROOT)/src/m/intel386.h \
1198 $(EMACS_ROOT)/src/config.h
1199
1200 $(BLD)/syntax.$(O) : \
1201 $(SRC)/syntax.c \
1202 $(EMACS_ROOT)/src/s/ms-w32.h \
1203 $(EMACS_ROOT)/src/m/intel386.h \
1204 $(EMACS_ROOT)/src/config.h \
1205 $(SRC)/buffer.h \
1206 $(SRC)/category.h \
1207 $(SRC)/character.h \
1208 $(SRC)/charset.h \
1209 $(SRC)/commands.h \
1210 $(SRC)/composite.h \
1211 $(SRC)/dispextern.h \
1212 $(SRC)/intervals.h \
1213 $(SRC)/keymap.h \
1214 $(SRC)/syntax.h \
1215 $(SRC)/w32bdf.h \
1216 $(SRC)/w32gui.h
1217
1218 $(BLD)/sysdep.$(O) : \
1219 $(SRC)/sysdep.c \
1220 $(EMACS_ROOT)/src/s/ms-w32.h \
1221 $(EMACS_ROOT)/src/m/intel386.h \
1222 $(EMACS_ROOT)/src/config.h \
1223 $(EMACS_ROOT)/nt/inc/sys/param.h \
1224 $(EMACS_ROOT)/nt/inc/sys/file.h \
1225 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1226 $(EMACS_ROOT)/nt/inc/sys/file.h \
1227 $(SRC)/atimer.h \
1228 $(SRC)/blockinput.h \
1229 $(SRC)/dispextern.h \
1230 $(SRC)/frame.h \
1231 $(SRC)/keyboard.h \
1232 $(SRC)/ndir.h \
1233 $(SRC)/process.h \
1234 $(SRC)/sysselect.h \
1235 $(SRC)/syssignal.h \
1236 $(SRC)/systime.h \
1237 $(SRC)/systty.h \
1238 $(SRC)/syswait.h \
1239 $(SRC)/termchar.h \
1240 $(SRC)/termhooks.h \
1241 $(SRC)/termopts.h \
1242 $(SRC)/w32bdf.h \
1243 $(SRC)/w32gui.h \
1244 $(SRC)/window.h
1245
1246 $(BLD)/term.$(O) : \
1247 $(SRC)/term.c \
1248 $(EMACS_ROOT)/src/s/ms-w32.h \
1249 $(EMACS_ROOT)/src/m/intel386.h \
1250 $(EMACS_ROOT)/src/config.h \
1251 $(SRC)/ccl.h \
1252 $(SRC)/character.h \
1253 $(SRC)/charset.h \
1254 $(SRC)/cm.h \
1255 $(SRC)/coding.h \
1256 $(SRC)/dispextern.h \
1257 $(SRC)/disptab.h \
1258 $(SRC)/frame.h \
1259 $(SRC)/keyboard.h \
1260 $(SRC)/keymap.h \
1261 $(SRC)/termchar.h \
1262 $(SRC)/termhooks.h \
1263 $(SRC)/termopts.h \
1264 $(SRC)/w32bdf.h \
1265 $(SRC)/w32gui.h \
1266 $(SRC)/window.h
1267
1268 $(BLD)/termcap.$(O) : \
1269 $(SRC)/termcap.c \
1270 $(EMACS_ROOT)/src/s/ms-w32.h \
1271 $(EMACS_ROOT)/src/m/intel386.h \
1272 $(EMACS_ROOT)/src/config.h \
1273 $(EMACS_ROOT)/nt/inc/sys/file.h
1274
1275 $(BLD)/textprop.$(O) : \
1276 $(SRC)/textprop.c \
1277 $(EMACS_ROOT)/src/s/ms-w32.h \
1278 $(EMACS_ROOT)/src/m/intel386.h \
1279 $(EMACS_ROOT)/src/config.h \
1280 $(SRC)/buffer.h \
1281 $(SRC)/composite.h \
1282 $(SRC)/dispextern.h \
1283 $(SRC)/intervals.h \
1284 $(SRC)/w32bdf.h \
1285 $(SRC)/w32gui.h \
1286 $(SRC)/window.h
1287
1288 $(BLD)/tparam.$(O) : \
1289 $(SRC)/tparam.c \
1290 $(EMACS_ROOT)/src/s/ms-w32.h \
1291 $(EMACS_ROOT)/src/m/intel386.h \
1292 $(EMACS_ROOT)/src/config.h
1293
1294 $(BLD)/undo.$(O) : \
1295 $(SRC)/undo.c \
1296 $(EMACS_ROOT)/src/s/ms-w32.h \
1297 $(EMACS_ROOT)/src/m/intel386.h \
1298 $(EMACS_ROOT)/src/config.h \
1299 $(SRC)/buffer.h \
1300 $(SRC)/commands.h
1301
1302 $(BLD)/unexw32.$(O) : \
1303 $(SRC)/unexw32.c \
1304 $(EMACS_ROOT)/src/s/ms-w32.h \
1305 $(EMACS_ROOT)/src/m/intel386.h \
1306 $(EMACS_ROOT)/src/config.h \
1307 $(SRC)/w32heap.h
1308
1309 $(BLD)/vm-limit.$(O) : \
1310 $(SRC)/vm-limit.c \
1311 $(EMACS_ROOT)/src/s/ms-w32.h \
1312 $(EMACS_ROOT)/src/m/intel386.h \
1313 $(EMACS_ROOT)/src/config.h \
1314 $(SRC)/mem-limits.h
1315
1316 $(BLD)/window.$(O) : \
1317 $(SRC)/window.c \
1318 $(EMACS_ROOT)/src/s/ms-w32.h \
1319 $(EMACS_ROOT)/src/m/intel386.h \
1320 $(EMACS_ROOT)/src/config.h \
1321 $(SRC)/atimer.h \
1322 $(SRC)/blockinput.h \
1323 $(SRC)/buffer.h \
1324 $(SRC)/commands.h \
1325 $(SRC)/composite.h \
1326 $(SRC)/dispextern.h \
1327 $(SRC)/disptab.h \
1328 $(SRC)/frame.h \
1329 $(SRC)/indent.h \
1330 $(SRC)/intervals.h \
1331 $(SRC)/keyboard.h \
1332 $(SRC)/keymap.h \
1333 $(SRC)/systime.h \
1334 $(SRC)/termchar.h \
1335 $(SRC)/w32bdf.h \
1336 $(SRC)/w32gui.h \
1337 $(SRC)/w32term.h \
1338 $(SRC)/window.h
1339
1340 $(BLD)/xdisp.$(O) : \
1341 $(SRC)/xdisp.c \
1342 $(EMACS_ROOT)/src/s/ms-w32.h \
1343 $(EMACS_ROOT)/src/m/intel386.h \
1344 $(EMACS_ROOT)/src/config.h \
1345 $(SRC)/atimer.h \
1346 $(SRC)/blockinput.h \
1347 $(SRC)/buffer.h \
1348 $(SRC)/ccl.h \
1349 $(SRC)/character.h \
1350 $(SRC)/charset.h \
1351 $(SRC)/coding.h \
1352 $(SRC)/commands.h \
1353 $(SRC)/composite.h \
1354 $(SRC)/dispextern.h \
1355 $(SRC)/disptab.h \
1356 $(SRC)/fontset.h \
1357 $(SRC)/frame.h \
1358 $(SRC)/indent.h \
1359 $(SRC)/intervals.h \
1360 $(SRC)/keyboard.h \
1361 $(SRC)/keymap.h \
1362 $(SRC)/macros.h \
1363 $(SRC)/process.h \
1364 $(SRC)/region-cache.h \
1365 $(SRC)/systime.h \
1366 $(SRC)/termchar.h \
1367 $(SRC)/termhooks.h \
1368 $(SRC)/w32bdf.h \
1369 $(SRC)/w32gui.h \
1370 $(SRC)/w32term.h \
1371 $(SRC)/window.h
1372
1373 $(BLD)/xfaces.$(O): \
1374 $(SRC)/xfaces.c \
1375 $(EMACS_ROOT)/src/s/ms-w32.h \
1376 $(EMACS_ROOT)/src/m/intel386.h \
1377 $(EMACS_ROOT)/src/config.h \
1378 $(SRC)/atimer.h \
1379 $(SRC)/blockinput.h \
1380 $(SRC)/buffer.h \
1381 $(SRC)/character.h \
1382 $(SRC)/charset.h \
1383 $(SRC)/composite.h \
1384 $(SRC)/dispextern.h \
1385 $(SRC)/fontset.h \
1386 $(SRC)/frame.h \
1387 $(SRC)/intervals.h \
1388 $(SRC)/keyboard.h \
1389 $(SRC)/systime.h \
1390 $(SRC)/w32bdf.h \
1391 $(SRC)/w32gui.h \
1392 $(SRC)/w32term.h \
1393 $(SRC)/window.h
1394
1395 $(BLD)/w32fns.$(O): \
1396 $(SRC)/w32fns.c \
1397 $(EMACS_ROOT)/src/s/ms-w32.h \
1398 $(EMACS_ROOT)/src/m/intel386.h \
1399 $(EMACS_ROOT)/src/config.h \
1400 $(SRC)/atimer.h \
1401 $(SRC)/blockinput.h \
1402 $(SRC)/buffer.h \
1403 $(SRC)/ccl.h \
1404 $(SRC)/character.h \
1405 $(SRC)/charset.h \
1406 $(SRC)/coding.h \
1407 $(SRC)/composite.h \
1408 $(SRC)/dispextern.h \
1409 $(SRC)/epaths.h \
1410 $(SRC)/fontset.h \
1411 $(SRC)/frame.h \
1412 $(SRC)/intervals.h \
1413 $(SRC)/keyboard.h \
1414 $(SRC)/systime.h \
1415 $(SRC)/termhooks.h \
1416 $(SRC)/w32bdf.h \
1417 $(SRC)/w32gui.h \
1418 $(SRC)/w32heap.h \
1419 $(SRC)/w32term.h \
1420 $(SRC)/window.h
1421
1422 $(BLD)/w32menu.$(O): \
1423 $(SRC)/w32menu.c \
1424 $(EMACS_ROOT)/src/s/ms-w32.h \
1425 $(EMACS_ROOT)/src/m/intel386.h \
1426 $(EMACS_ROOT)/src/config.h \
1427 $(SRC)/atimer.h \
1428 $(SRC)/blockinput.h \
1429 $(SRC)/buffer.h \
1430 $(SRC)/character.h \
1431 $(SRC)/charset.h \
1432 $(SRC)/coding.h \
1433 $(SRC)/dispextern.h \
1434 $(SRC)/frame.h \
1435 $(SRC)/keyboard.h \
1436 $(SRC)/keymap.h \
1437 $(SRC)/systime.h \
1438 $(SRC)/termhooks.h \
1439 $(SRC)/w32bdf.h \
1440 $(SRC)/w32gui.h \
1441 $(SRC)/w32term.h \
1442 $(SRC)/window.h
1443
1444 $(BLD)/w32term.$(O): \
1445 $(SRC)/w32term.c \
1446 $(EMACS_ROOT)/src/s/ms-w32.h \
1447 $(EMACS_ROOT)/src/m/intel386.h \
1448 $(EMACS_ROOT)/src/config.h \
1449 $(SRC)/atimer.h \
1450 $(SRC)/blockinput.h \
1451 $(SRC)/buffer.h \
1452 $(SRC)/ccl.h \
1453 $(SRC)/character.h \
1454 $(SRC)/charset.h \
1455 $(SRC)/coding.h \
1456 $(SRC)/composite.h \
1457 $(SRC)/dispextern.h \
1458 $(SRC)/disptab.h \
1459 $(SRC)/fontset.h \
1460 $(SRC)/frame.h \
1461 $(SRC)/gnu.h \
1462 $(SRC)/intervals.h \
1463 $(SRC)/keyboard.h \
1464 $(SRC)/keymap.h \
1465 $(SRC)/systime.h \
1466 $(SRC)/systty.h \
1467 $(SRC)/termchar.h \
1468 $(SRC)/termhooks.h \
1469 $(SRC)/termopts.h \
1470 $(SRC)/w32bdf.h \
1471 $(SRC)/w32gui.h \
1472 $(SRC)/w32heap.h \
1473 $(SRC)/w32term.h \
1474 $(SRC)/window.h
1475
1476 $(BLD)/w32select.$(O): \
1477 $(SRC)/w32select.c \
1478 $(EMACS_ROOT)/src/s/ms-w32.h \
1479 $(EMACS_ROOT)/src/m/intel386.h \
1480 $(EMACS_ROOT)/src/config.h \
1481 $(SRC)/atimer.h \
1482 $(SRC)/blockinput.h \
1483 $(SRC)/buffer.h \
1484 $(SRC)/ccl.h \
1485 $(SRC)/character.h \
1486 $(SRC)/charset.h \
1487 $(SRC)/coding.h \
1488 $(SRC)/composite.h \
1489 $(SRC)/dispextern.h \
1490 $(SRC)/frame.h \
1491 $(SRC)/keyboard.h \
1492 $(SRC)/systime.h \
1493 $(SRC)/w32bdf.h \
1494 $(SRC)/w32gui.h \
1495 $(SRC)/w32term.h
1496
1497 $(BLD)/w32reg.$(O): \
1498 $(SRC)/w32reg.c \
1499 $(EMACS_ROOT)/src/s/ms-w32.h \
1500 $(EMACS_ROOT)/src/m/intel386.h \
1501 $(EMACS_ROOT)/src/config.h \
1502 $(SRC)/atimer.h \
1503 $(SRC)/blockinput.h \
1504 $(SRC)/systime.h \
1505 $(SRC)/w32bdf.h \
1506 $(SRC)/w32gui.h \
1507 $(SRC)/w32term.h
1508
1509 $(BLD)/w32xfns.$(O): \
1510 $(SRC)/w32xfns.c \
1511 $(EMACS_ROOT)/src/s/ms-w32.h \
1512 $(EMACS_ROOT)/src/m/intel386.h \
1513 $(EMACS_ROOT)/src/config.h \
1514 $(SRC)/atimer.h \
1515 $(SRC)/blockinput.h \
1516 $(SRC)/character.h \
1517 $(SRC)/charset.h \
1518 $(SRC)/fontset.h \
1519 $(SRC)/frame.h \
1520 $(SRC)/keyboard.h \
1521 $(SRC)/systime.h \
1522 $(SRC)/w32bdf.h \
1523 $(SRC)/w32gui.h \
1524 $(SRC)/w32term.h
1525
1526 $(BLD)/w32bdf.$(O): \
1527 $(SRC)/w32bdf.c \
1528 $(EMACS_ROOT)/src/s/ms-w32.h \
1529 $(EMACS_ROOT)/src/m/intel386.h \
1530 $(EMACS_ROOT)/src/config.h \
1531 $(SRC)/atimer.h \
1532 $(SRC)/blockinput.h \
1533 $(SRC)/character.h \
1534 $(SRC)/charset.h \
1535 $(SRC)/dispextern.h \
1536 $(SRC)/fontset.h \
1537 $(SRC)/frame.h \
1538 $(SRC)/keyboard.h \
1539 $(SRC)/systime.h \
1540 $(SRC)/w32bdf.h \
1541 $(SRC)/w32gui.h \
1542 $(SRC)/w32term.h