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