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