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