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