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