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