Adapt MS-Windows build to import of filemode.c from gnulib.
[bpt/emacs.git] / src / makefile.w32-in
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000-2011 Free Software Foundation, Inc.
3
4 # This file is part of GNU Emacs.
5
6 # GNU Emacs is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
18
19
20 ALL = emacs
21
22 .PHONY: $(ALL)
23
24 # Set EMACSLOADPATH correctly (in case already defined in environment).
25 EMACSLOADPATH=$(CURDIR)/../lisp
26
27 #
28 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
29 # the emacs source tree.
30 #
31 LOCAL_FLAGS = -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
32
33 SRC = .
34 EMACS = $(BLD)/emacs.exe
35 TEMACS = $(BLD)/temacs.exe
36 TEMACS_TMP = $(BLD)/temacs.bin
37 TLIB0 = $(BLD)/temacs0.$(A)
38 TLIB1 = $(BLD)/temacs1.$(A)
39 TLIB2 = $(BLD)/temacs2.$(A)
40 TOBJ = $(BLD)/firstfile.$(O)
41 TRES = $(BLD)/emacs.res
42 TLASTLIB = $(BLD)/lastfile.$(A)
43 GNULIB = ../lib/$(BLD)/libgnu.$(A)
44
45 DOC = $(OBJDIR)/etc/DOC-X
46
47 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
48
49 #
50 # Split up the objects into two sets so that we don't run out of
51 # command line space when we link them into a library.
52 #
53 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
54 # as the "main" object file when linking.
55 #
56 OBJ0 = $(BLD)/emacs.$(O)
57
58 OBJ1 = $(BLD)/alloc.$(O) \
59 $(BLD)/atimer.$(O) \
60 $(BLD)/buffer.$(O) \
61 $(BLD)/bytecode.$(O) \
62 $(BLD)/callint.$(O) \
63 $(BLD)/callproc.$(O) \
64 $(BLD)/casefiddle.$(O) \
65 $(BLD)/cmds.$(O) \
66 $(BLD)/data.$(O) \
67 $(BLD)/dired.$(O) \
68 $(BLD)/dispnew.$(O) \
69 $(BLD)/doc.$(O) \
70 $(BLD)/doprnt.$(O) \
71 $(BLD)/editfns.$(O) \
72 $(BLD)/eval.$(O) \
73 $(BLD)/fileio.$(O) \
74 $(BLD)/filelock.$(O) \
75 $(BLD)/fns.$(O) \
76 $(BLD)/indent.$(O) \
77 $(BLD)/insdel.$(O) \
78 $(BLD)/keyboard.$(O) \
79 $(BLD)/keymap.$(O) \
80 $(BLD)/lread.$(O) \
81 $(BLD)/macros.$(O) \
82 $(BLD)/marker.$(O) \
83 $(BLD)/minibuf.$(O) \
84 $(BLD)/w32.$(O) \
85 $(BLD)/w32heap.$(O) \
86 $(BLD)/w32inevt.$(O) \
87 $(BLD)/w32proc.$(O) \
88 $(BLD)/w32console.$(O) \
89 $(BLD)/print.$(O) \
90 $(BLD)/process.$(O) \
91 $(BLD)/regex.$(O) \
92 $(BLD)/scroll.$(O) \
93 $(BLD)/search.$(O) \
94 $(BLD)/sound.$(O) \
95 $(BLD)/syntax.$(O)
96
97 OBJ2 = $(BLD)/sysdep.$(O) \
98 $(BLD)/term.$(O) \
99 $(BLD)/tparam.$(O) \
100 $(BLD)/undo.$(O) \
101 $(BLD)/unexw32.$(O) \
102 $(BLD)/window.$(O) \
103 $(BLD)/xdisp.$(O) \
104 $(BLD)/casetab.$(O) \
105 $(BLD)/floatfns.$(O) \
106 $(BLD)/frame.$(O) \
107 $(BLD)/gmalloc.$(O) \
108 $(BLD)/intervals.$(O) \
109 $(BLD)/composite.$(O) \
110 $(BLD)/ralloc.$(O) \
111 $(BLD)/textprop.$(O) \
112 $(BLD)/vm-limit.$(O) \
113 $(BLD)/region-cache.$(O) \
114 $(BLD)/bidi.$(O) \
115 $(BLD)/charset.$(O) \
116 $(BLD)/character.$(O) \
117 $(BLD)/chartab.$(O) \
118 $(BLD)/coding.$(O) \
119 $(BLD)/category.$(O) \
120 $(BLD)/ccl.$(O) \
121 $(BLD)/font.$(O) \
122 $(BLD)/fontset.$(O) \
123 $(BLD)/fringe.$(O) \
124 $(BLD)/image.$(O) \
125 $(BLD)/terminal.$(O) \
126 $(BLD)/menu.$(O) \
127 $(BLD)/w32term.$(O) \
128 $(BLD)/w32xfns.$(O) \
129 $(BLD)/w32fns.$(O) \
130 $(BLD)/xfaces.$(O) \
131 $(BLD)/w32select.$(O) \
132 $(BLD)/w32menu.$(O) \
133 $(BLD)/w32reg.$(O) \
134 $(BLD)/w32font.$(O) \
135 $(BLD)/w32uniscribe.$(O)
136
137 LIBS = $(TLIB0) \
138 $(TLIB1) \
139 $(TLIB2) \
140 $(TLASTLIB) \
141 $(GNULIB) \
142 $(WINMM) \
143 $(ADVAPI32) \
144 $(GDI32) \
145 $(COMDLG32) \
146 $(USER32) \
147 $(MPR) \
148 $(SHELL32) \
149 $(WINSPOOL) \
150 $(OLE32) \
151 $(COMCTL32) \
152 $(UNISCRIBE) \
153 $(libc)
154
155 #
156 # Build the executable and dump it.
157 #
158 all: $(ALL)
159
160 #
161 # The dumped executable
162 #
163 emacs: stamp_BLD $(EMACS)
164 $(EMACS): $(DOC) $(TEMACS)
165 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
166 -"$(THISDIR)/$(BLD)/emacs.exe" -batch -f list-load-path-shadows
167
168 #
169 # The undumped executable
170 # Note the extra post-link step to insert a static preload heap section.
171 # If preload runs out of memory, increase the last argument to addsection
172 # (it is the preload heap size in MB).
173 #
174 temacs: stamp_BLD $(TEMACS)
175 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLASTLIB) $(TOBJ) $(TRES) \
176 ../nt/$(BLD)/addsection.exe $(GNULIB)
177 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
178 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21
179
180 # These omit firstfile.${O}, but there's no documentation in there
181 # anyways.
182 buildobj.h: $(SRC)/makefile.w32-in
183 $(MAKE) $(MFLAGS) make-buildobj-$(SHELLTYPE)
184
185 # Cannot have blanks between the backslash and the redirection
186 # characters, because CMD's `echo' will put them in buildobj.h.
187 make-buildobj-CMD:
188 echo #define BUILDOBJ ^"\> buildobj.h
189 echo $(OBJ0) \>> buildobj.h
190 echo $(OBJ1) \>> buildobj.h
191 echo $(OBJ2) \>> buildobj.h
192 echo ^">> buildobj.h
193
194 # "
195 # The above line is here to countermand the single quote
196 # on the last "echo" command above, wrt font-lock.
197 make-buildobj-SH:
198 echo '#define BUILDOBJ $(DQUOTE)\' > buildobj.h
199 echo $(OBJ0) '\' >> buildobj.h
200 echo $(OBJ1) '\' >> buildobj.h
201 echo $(OBJ2) '\' >> buildobj.h
202 echo '$(DQUOTE)' >> buildobj.h
203
204 GLOBAL_SOURCES = dosfns.c msdos.c \
205 xterm.c xfns.c xmenu.c xselect.c xrdb.c xsmfns.c fringe.c image.c \
206 fontset.c menu.c dbusbind.c \
207 w32.c w32console.c w32fns.c w32heap.c w32inevt.c \
208 w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \
209 font.c w32font.c w32uniscribe.c \
210 dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \
211 charset.c coding.c category.c ccl.c character.c chartab.c \
212 cm.c term.c terminal.c xfaces.c \
213 emacs.c keyboard.c macros.c keymap.c sysdep.c \
214 buffer.c filelock.c insdel.c marker.c \
215 minibuf.c fileio.c dired.c \
216 cmds.c casetab.c casefiddle.c indent.c search.c regex.c undo.c \
217 alloc.c data.c doc.c editfns.c callint.c \
218 eval.c floatfns.c fns.c print.c lread.c \
219 syntax.c bytecode.c \
220 process.c callproc.c unexw32.c \
221 region-cache.c sound.c atimer.c \
222 doprnt.c intervals.c textprop.c composite.c
223 SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
224 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o dbusbind.o
225 obj = $(GLOBAL_SOURCES:.c=.o)
226
227 globals.h: gl-stamp
228
229 gl-stamp: ../lib-src/$(BLD)/make-docfile.exe $(GLOBAL_SOURCES)
230 - $(DEL) gl-tmp
231 "../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp
232 cmd /c "fc /b gl-tmp globals.h >nul 2>&1 || $(CP) gl-tmp globals.h"
233 - $(DEL) gl-tmp
234 echo timestamp > $@
235
236 bootstrap: bootstrap-emacs
237
238 #
239 # Build a temacs with a sufficiently large PURESIZE to load the
240 # Lisp files from loadup.el in source form.
241 #
242 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
243 # this can break with GNU Make 3.81 and later if sh.exe is used.
244 bootstrap-temacs:
245 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
246
247 #
248 # Dump an Emacs executable named bootstrap-emacs containing the
249 # files from loadup.el in source form.
250 #
251 bootstrap-emacs: bootstrap-temacs
252 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
253 - mkdir "../bin"
254 $(CP) $(EMACS) ../bin
255
256 #
257 # Force recompile of files that depend on PURESIZE
258 #
259 bootstrap-clean:
260 - $(DEL) $(BLD)/alloc.$(O)
261 - $(DEL) $(BLD)/data.$(O)
262 - $(DEL) $(BLD)/intervals.$(O)
263 - $(DEL) $(BLD)/keyboard.$(O)
264 - $(DEL) $(BLD)/keymap.$(O)
265
266 #
267 # The resource file. NT 3.10 requires the use of cvtres; even though
268 # it is not necessary on later versions, it is still ok to use it.
269 #
270 $(TRES): ../nt/emacs.rc stamp_BLD
271 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
272
273 #
274 # Build the library. Split up the build into two phases...otherwise we
275 # run out of command line space.
276 #
277 $(TLIB0): $(OBJ0)
278 - $(DEL) $@
279 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
280 $(TLIB1): $(OBJ1)
281 - $(DEL) $@
282 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
283 $(TLIB2): $(OBJ2)
284 - $(DEL) $@
285 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
286
287 #
288 # Place lastfile.$(O) in its own library so that it can be loaded after
289 # the source libraries but before any system libraries. Doing so defines
290 # the end of Emacs' data section portably across compilers and systems.
291 #
292 $(TLASTLIB): $(BLD)/lastfile.$(O)
293 - $(DEL) $@
294 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
295
296 #
297 # Assuming INSTALL_DIR is defined, build and install emacs in it.
298 #
299 install: $(ALL)
300 - mkdir "$(INSTALL_DIR)/bin"
301 $(CP) $(EMACS) $(INSTALL_DIR)/bin
302
303 #
304 # Maintenance
305 #
306 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
307 # remove precious files if it happens to match their short 8+3 aliases.
308 clean:
309 - $(DEL) "s/*.h~" "m/*.h~"
310 - $(DEL) $(COMPILER_TEMP_FILES)
311 - $(DEL_TREE) $(OBJDIR)
312 - $(DEL) stamp_BLD gl-stamp globals.h
313 - $(DEL) buildobj.h
314
315 distclean: cleanall
316 - $(DEL) config.h epaths.h Makefile
317
318 maintainer-clean: distclean
319 - $(DEL) TAGS
320
321 cleanall: clean
322 - $(DEL_TREE) obj
323 - $(DEL_TREE) obj-spd
324 - $(DEL_TREE) oo
325 - $(DEL_TREE) oo-spd
326
327 ## Arrange to make a tags table TAGS-LISP for ../lisp,
328 ## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
329 ##
330 ## This works only with GNU Make.
331
332 TAGS: $(OBJ0) $(OBJ1) $(OBJ2)
333 $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE)
334
335 TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2)
336 $(MAKE) $(MFLAGS) TAGS-LISP-$(MAKETYPE)
337
338 TAGS-gmake:
339 ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \
340 --regex=@../nt/emacs-src.tags \
341 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ0))
342 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
343 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1))
344 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
345 $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2)) \
346 $(CURDIR)/*.h
347
348 TAGS-nmake:
349 echo This target is not supported with NMake
350 exit -1
351
352 frc:
353 TAGS-LISP-gmake: frc
354 $(MAKE) $(MFLAGS) -C ../lisp TAGS-LISP DEST=../src
355
356 TAGS-LISP-nmake:
357 echo This target is not supported with NMake
358 exit -1
359
360 ../nt/TAGS: frc
361 $(MAKE) $(MFLAGS) nt-TAGS-$(MAKETYPE)
362
363 nt-TAGS-gmake:
364 $(MAKE) $(MFLAGS) -C ../nt TAGS
365
366 nt-TAGS-nmake:
367 echo This target is not supported with NMake
368 exit -1
369
370 full-tags: TAGS TAGS-LISP ../nt/TAGS
371 .PHONY: full-tags
372
373 ### DEPENDENCIES ###
374
375 EMACS_ROOT = ..
376 CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
377 $(EMACS_ROOT)/src/m/intel386.h \
378 $(EMACS_ROOT)/src/config.h \
379 $(EMACS_ROOT)/nt/inc/sys/stat.h
380 LISP_H = $(SRC)/lisp.h $(SRC)/globals.h
381 PROCESS_H = $(SRC)/process.h $(SRC)/gnutls.h
382
383 $(BLD)/alloc.$(O) : \
384 $(SRC)/alloc.c \
385 $(CONFIG_H) \
386 $(EMACS_ROOT)/nt/inc/unistd.h \
387 $(EMACS_ROOT)/nt/inc/sys/time.h \
388 $(LISP_H) \
389 $(SRC)/atimer.h \
390 $(SRC)/blockinput.h \
391 $(SRC)/buffer.h \
392 $(SRC)/character.h \
393 $(SRC)/coding.h \
394 $(SRC)/composite.h \
395 $(SRC)/dispextern.h \
396 $(SRC)/frame.h \
397 $(SRC)/intervals.h \
398 $(SRC)/keyboard.h \
399 $(PROCESS_H) \
400 $(SRC)/puresize.h \
401 $(SRC)/syssignal.h \
402 $(SRC)/systime.h \
403 $(SRC)/termhooks.h \
404 $(SRC)/w32.h \
405 $(SRC)/w32gui.h \
406 $(SRC)/window.h
407
408 $(BLD)/atimer.$(O) : \
409 $(SRC)/atimer.c \
410 $(CONFIG_H) \
411 $(EMACS_ROOT)/nt/inc/unistd.h \
412 $(EMACS_ROOT)/nt/inc/sys/time.h \
413 $(LISP_H) \
414 $(SRC)/atimer.h \
415 $(SRC)/blockinput.h \
416 $(SRC)/syssignal.h \
417 $(SRC)/systime.h
418
419 $(BLD)/bidi.$(O) : \
420 $(SRC)/bidi.c \
421 $(CONFIG_H) \
422 $(LISP_H) \
423 $(SRC)/bidimirror.h \
424 $(SRC)/biditype.h \
425 $(SRC)/buffer.h \
426 $(SRC)/character.h \
427 $(SRC)/dispextern.h \
428 $(SRC)/w32gui.h
429
430 $(BLD)/buffer.$(O) : \
431 $(SRC)/buffer.c \
432 $(CONFIG_H) \
433 $(EMACS_ROOT)/nt/inc/unistd.h \
434 $(EMACS_ROOT)/nt/inc/sys/param.h \
435 $(EMACS_ROOT)/nt/inc/sys/time.h \
436 $(LISP_H) \
437 $(SRC)/atimer.h \
438 $(SRC)/blockinput.h \
439 $(SRC)/buffer.h \
440 $(SRC)/character.h \
441 $(SRC)/coding.h \
442 $(SRC)/commands.h \
443 $(SRC)/composite.h \
444 $(SRC)/dispextern.h \
445 $(SRC)/frame.h \
446 $(SRC)/indent.h \
447 $(SRC)/intervals.h \
448 $(SRC)/keyboard.h \
449 $(SRC)/keymap.h \
450 $(SRC)/region-cache.h \
451 $(SRC)/systime.h \
452 $(SRC)/w32gui.h \
453 $(SRC)/window.h
454
455 $(BLD)/bytecode.$(O) : \
456 $(SRC)/bytecode.c \
457 $(CONFIG_H) \
458 $(LISP_H) \
459 $(SRC)/buffer.h \
460 $(SRC)/character.h \
461 $(SRC)/dispextern.h \
462 $(SRC)/syntax.h \
463 $(SRC)/w32gui.h \
464 $(SRC)/window.h
465
466 $(BLD)/callint.$(O) : \
467 $(SRC)/callint.c \
468 $(CONFIG_H) \
469 $(EMACS_ROOT)/nt/inc/sys/time.h \
470 $(LISP_H) \
471 $(SRC)/buffer.h \
472 $(SRC)/coding.h \
473 $(SRC)/commands.h \
474 $(SRC)/composite.h \
475 $(SRC)/dispextern.h \
476 $(SRC)/keyboard.h \
477 $(SRC)/keymap.h \
478 $(SRC)/systime.h \
479 $(SRC)/w32gui.h \
480 $(SRC)/window.h
481
482 $(BLD)/callproc.$(O) : \
483 $(SRC)/callproc.c \
484 $(CONFIG_H) \
485 $(EMACS_ROOT)/nt/inc/unistd.h \
486 $(EMACS_ROOT)/nt/inc/sys/file.h \
487 $(EMACS_ROOT)/nt/inc/sys/time.h \
488 $(LISP_H) \
489 $(SRC)/atimer.h \
490 $(SRC)/blockinput.h \
491 $(SRC)/buffer.h \
492 $(SRC)/ccl.h \
493 $(SRC)/character.h \
494 $(SRC)/coding.h \
495 $(SRC)/commands.h \
496 $(SRC)/composite.h \
497 $(SRC)/dispextern.h \
498 $(SRC)/epaths.h \
499 $(SRC)/frame.h \
500 $(PROCESS_H) \
501 $(SRC)/syssignal.h \
502 $(SRC)/systime.h \
503 $(SRC)/systty.h \
504 $(SRC)/termhooks.h \
505 $(SRC)/w32.h \
506 $(SRC)/w32gui.h
507
508 $(BLD)/casefiddle.$(O) : \
509 $(SRC)/casefiddle.c \
510 $(CONFIG_H) \
511 $(LISP_H) \
512 $(SRC)/buffer.h \
513 $(SRC)/character.h \
514 $(SRC)/commands.h \
515 $(SRC)/composite.h \
516 $(SRC)/keymap.h \
517 $(SRC)/syntax.h
518
519 $(BLD)/casetab.$(O) : \
520 $(SRC)/casetab.c \
521 $(CONFIG_H) \
522 $(LISP_H) \
523 $(SRC)/buffer.h \
524 $(SRC)/character.h
525
526 $(BLD)/category.$(O) : \
527 $(SRC)/category.c \
528 $(CONFIG_H) \
529 $(LISP_H) \
530 $(SRC)/buffer.h \
531 $(SRC)/category.h \
532 $(SRC)/character.h \
533 $(SRC)/charset.h \
534 $(SRC)/keymap.h
535
536 $(BLD)/ccl.$(O) : \
537 $(SRC)/ccl.c \
538 $(CONFIG_H) \
539 $(LISP_H) \
540 $(SRC)/ccl.h \
541 $(SRC)/character.h \
542 $(SRC)/charset.h \
543 $(SRC)/coding.h \
544 $(SRC)/composite.h
545
546 $(BLD)/character.$(O) : \
547 $(SRC)/character.c \
548 $(CONFIG_H) \
549 $(LISP_H) \
550 $(SRC)/buffer.h \
551 $(SRC)/character.h \
552 $(SRC)/charset.h \
553 $(SRC)/composite.h \
554 $(SRC)/disptab.h
555
556 $(BLD)/charset.$(O) : \
557 $(SRC)/charset.c \
558 $(CONFIG_H) \
559 $(EMACS_ROOT)/nt/inc/unistd.h \
560 $(LISP_H) \
561 $(SRC)/buffer.h \
562 $(SRC)/character.h \
563 $(SRC)/charset.h \
564 $(SRC)/coding.h \
565 $(SRC)/composite.h \
566 $(SRC)/disptab.h
567
568 $(BLD)/chartab.$(O) : \
569 $(SRC)/chartab.c \
570 $(CONFIG_H) \
571 $(LISP_H) \
572 $(SRC)/ccl.h \
573 $(SRC)/character.h \
574 $(SRC)/charset.h
575
576 $(BLD)/cmds.$(O) : \
577 $(SRC)/cmds.c \
578 $(CONFIG_H) \
579 $(EMACS_ROOT)/nt/inc/sys/time.h \
580 $(LISP_H) \
581 $(SRC)/buffer.h \
582 $(SRC)/character.h \
583 $(SRC)/coding.h \
584 $(SRC)/commands.h \
585 $(SRC)/composite.h \
586 $(SRC)/dispextern.h \
587 $(SRC)/frame.h \
588 $(SRC)/keyboard.h \
589 $(SRC)/keymap.h \
590 $(SRC)/syntax.h \
591 $(SRC)/systime.h \
592 $(SRC)/w32gui.h \
593 $(SRC)/window.h
594
595 $(BLD)/coding.$(O) : \
596 $(SRC)/coding.c \
597 $(CONFIG_H) \
598 $(LISP_H) \
599 $(SRC)/buffer.h \
600 $(SRC)/ccl.h \
601 $(SRC)/character.h \
602 $(SRC)/charset.h \
603 $(SRC)/coding.h \
604 $(SRC)/composite.h \
605 $(SRC)/dispextern.h \
606 $(SRC)/frame.h \
607 $(SRC)/termhooks.h \
608 $(SRC)/w32gui.h \
609 $(SRC)/window.h
610
611 $(BLD)/composite.$(O) : \
612 $(SRC)/composite.c \
613 $(CONFIG_H) \
614 $(LISP_H) \
615 $(SRC)/buffer.h \
616 $(SRC)/ccl.h \
617 $(SRC)/character.h \
618 $(SRC)/coding.h \
619 $(SRC)/composite.h \
620 $(SRC)/dispextern.h \
621 $(SRC)/font.h \
622 $(SRC)/frame.h \
623 $(SRC)/intervals.h \
624 $(SRC)/termhooks.h \
625 $(SRC)/w32gui.h \
626 $(SRC)/window.h
627
628 $(BLD)/data.$(O) : \
629 $(SRC)/data.c \
630 $(CONFIG_H) \
631 $(EMACS_ROOT)/nt/inc/sys/time.h \
632 $(LISP_H) \
633 $(SRC)/buffer.h \
634 $(SRC)/ccl.h \
635 $(SRC)/character.h \
636 $(SRC)/coding.h \
637 $(SRC)/composite.h \
638 $(SRC)/dispextern.h \
639 $(SRC)/font.h \
640 $(SRC)/frame.h \
641 $(SRC)/keyboard.h \
642 $(SRC)/puresize.h \
643 $(SRC)/syssignal.h \
644 $(SRC)/systime.h \
645 $(SRC)/termhooks.h \
646 $(SRC)/w32gui.h
647
648 $(BLD)/dired.$(O) : \
649 $(SRC)/dired.c \
650 $(CONFIG_H) \
651 $(EMACS_ROOT)/nt/inc/grp.h \
652 $(EMACS_ROOT)/nt/inc/pwd.h \
653 $(EMACS_ROOT)/nt/inc/unistd.h \
654 $(EMACS_ROOT)/nt/inc/sys/dir.h \
655 $(EMACS_ROOT)/nt/inc/sys/time.h \
656 $(LISP_H) \
657 $(SRC)/atimer.h \
658 $(SRC)/blockinput.h \
659 $(SRC)/buffer.h \
660 $(SRC)/character.h \
661 $(SRC)/charset.h \
662 $(SRC)/coding.h \
663 $(SRC)/commands.h \
664 $(SRC)/composite.h \
665 $(EMACS_ROOT)/lib/filemode.h \
666 $(SRC)/ndir.h \
667 $(SRC)/regex.h \
668 $(SRC)/systime.h
669
670 $(BLD)/dispnew.$(O) : \
671 $(SRC)/dispnew.c \
672 $(CONFIG_H) \
673 $(EMACS_ROOT)/nt/inc/unistd.h \
674 $(EMACS_ROOT)/nt/inc/sys/time.h \
675 $(LISP_H) \
676 $(SRC)/atimer.h \
677 $(SRC)/blockinput.h \
678 $(SRC)/buffer.h \
679 $(SRC)/character.h \
680 $(SRC)/cm.h \
681 $(SRC)/coding.h \
682 $(SRC)/commands.h \
683 $(SRC)/composite.h \
684 $(SRC)/dispextern.h \
685 $(SRC)/disptab.h \
686 $(SRC)/frame.h \
687 $(SRC)/indent.h \
688 $(SRC)/intervals.h \
689 $(SRC)/keyboard.h \
690 $(PROCESS_H) \
691 $(SRC)/syssignal.h \
692 $(SRC)/systime.h \
693 $(SRC)/termchar.h \
694 $(SRC)/termhooks.h \
695 $(SRC)/termopts.h \
696 $(SRC)/w32gui.h \
697 $(SRC)/w32term.h \
698 $(SRC)/window.h
699
700 $(BLD)/doc.$(O) : \
701 $(SRC)/doc.c \
702 $(CONFIG_H) \
703 buildobj.h \
704 $(EMACS_ROOT)/nt/inc/unistd.h \
705 $(EMACS_ROOT)/nt/inc/sys/file.h \
706 $(EMACS_ROOT)/nt/inc/sys/time.h \
707 $(LISP_H) \
708 $(SRC)/buffer.h \
709 $(SRC)/character.h \
710 $(SRC)/coding.h \
711 $(SRC)/composite.h \
712 $(SRC)/keyboard.h \
713 $(SRC)/keymap.h \
714 $(SRC)/systime.h
715
716 $(BLD)/doprnt.$(O) : \
717 $(SRC)/doprnt.c \
718 $(CONFIG_H) \
719 $(EMACS_ROOT)/nt/inc/unistd.h \
720 $(LISP_H) \
721 $(SRC)/character.h
722
723 $(BLD)/editfns.$(O) : \
724 $(SRC)/editfns.c \
725 $(CONFIG_H) \
726 $(EMACS_ROOT)/nt/inc/pwd.h \
727 $(EMACS_ROOT)/nt/inc/unistd.h \
728 $(EMACS_ROOT)/nt/inc/sys/time.h \
729 $(EMACS_ROOT)/lib/strftime.h \
730 $(LISP_H) \
731 $(SRC)/atimer.h \
732 $(SRC)/blockinput.h \
733 $(SRC)/buffer.h \
734 $(SRC)/character.h \
735 $(SRC)/coding.h \
736 $(SRC)/composite.h \
737 $(SRC)/dispextern.h \
738 $(SRC)/frame.h \
739 $(SRC)/intervals.h \
740 $(SRC)/systime.h \
741 $(SRC)/w32gui.h \
742 $(SRC)/window.h
743
744 $(BLD)/emacs.$(O) : \
745 $(SRC)/emacs.c \
746 $(CONFIG_H) \
747 $(EMACS_ROOT)/nt/inc/unistd.h \
748 $(EMACS_ROOT)/nt/inc/sys/file.h \
749 $(EMACS_ROOT)/nt/inc/sys/time.h \
750 $(LISP_H) \
751 $(SRC)/atimer.h \
752 $(SRC)/blockinput.h \
753 $(SRC)/buffer.h \
754 $(SRC)/coding.h \
755 $(SRC)/commands.h \
756 $(SRC)/composite.h \
757 $(SRC)/dispextern.h \
758 $(SRC)/frame.h \
759 $(SRC)/gnutls.h \
760 $(SRC)/intervals.h \
761 $(SRC)/keyboard.h \
762 $(SRC)/keymap.h \
763 $(PROCESS_H) \
764 $(SRC)/syssignal.h \
765 $(SRC)/systime.h \
766 $(SRC)/systty.h \
767 $(SRC)/termhooks.h \
768 $(SRC)/w32.h \
769 $(SRC)/w32gui.h \
770 $(SRC)/w32heap.h \
771 $(SRC)/window.h
772
773 $(BLD)/eval.$(O) : \
774 $(SRC)/eval.c \
775 $(CONFIG_H) \
776 $(EMACS_ROOT)/nt/inc/sys/time.h \
777 $(LISP_H) \
778 $(SRC)/atimer.h \
779 $(SRC)/blockinput.h \
780 $(SRC)/coding.h \
781 $(SRC)/commands.h \
782 $(SRC)/composite.h \
783 $(SRC)/dispextern.h \
784 $(SRC)/frame.h \
785 $(SRC)/keyboard.h \
786 $(SRC)/systime.h \
787 $(SRC)/w32gui.h
788
789 $(BLD)/fileio.$(O) : \
790 $(SRC)/fileio.c \
791 $(CONFIG_H) \
792 $(EMACS_ROOT)/nt/inc/pwd.h \
793 $(EMACS_ROOT)/nt/inc/unistd.h \
794 $(EMACS_ROOT)/nt/inc/sys/time.h \
795 $(LISP_H) \
796 $(SRC)/atimer.h \
797 $(SRC)/blockinput.h \
798 $(SRC)/buffer.h \
799 $(SRC)/character.h \
800 $(SRC)/coding.h \
801 $(SRC)/commands.h \
802 $(SRC)/composite.h \
803 $(SRC)/dispextern.h \
804 $(SRC)/frame.h \
805 $(SRC)/intervals.h \
806 $(SRC)/systime.h \
807 $(SRC)/w32gui.h \
808 $(SRC)/window.h
809
810 $(BLD)/filelock.$(O) : \
811 $(SRC)/filelock.c \
812 $(CONFIG_H) \
813 $(EMACS_ROOT)/nt/inc/pwd.h \
814 $(EMACS_ROOT)/nt/inc/unistd.h \
815 $(EMACS_ROOT)/nt/inc/sys/file.h \
816 $(EMACS_ROOT)/nt/inc/sys/time.h \
817 $(LISP_H) \
818 $(SRC)/buffer.h \
819 $(SRC)/character.h \
820 $(SRC)/coding.h \
821 $(SRC)/composite.h \
822 $(SRC)/systime.h
823
824 $(BLD)/firstfile.$(O) : \
825 $(SRC)/firstfile.c \
826 $(CONFIG_H)
827
828 $(BLD)/floatfns.$(O) : \
829 $(SRC)/floatfns.c \
830 $(CONFIG_H) \
831 $(LISP_H) \
832 $(SRC)/syssignal.h
833
834 $(BLD)/fns.$(O) : \
835 $(SRC)/fns.c \
836 $(CONFIG_H) \
837 $(EMACS_ROOT)/nt/inc/langinfo.h \
838 $(EMACS_ROOT)/nt/inc/nl_types.h \
839 $(EMACS_ROOT)/nt/inc/unistd.h \
840 $(EMACS_ROOT)/nt/inc/sys/time.h \
841 $(EMACS_ROOT)/lib/md5.h \
842 $(LISP_H) \
843 $(SRC)/atimer.h \
844 $(SRC)/blockinput.h \
845 $(SRC)/buffer.h \
846 $(SRC)/character.h \
847 $(SRC)/coding.h \
848 $(SRC)/commands.h \
849 $(SRC)/composite.h \
850 $(SRC)/dispextern.h \
851 $(SRC)/frame.h \
852 $(SRC)/intervals.h \
853 $(SRC)/keyboard.h \
854 $(SRC)/keymap.h \
855 $(SRC)/systime.h \
856 $(SRC)/w32gui.h \
857 $(SRC)/window.h
858
859 $(BLD)/font.$(O) : \
860 $(SRC)/font.c \
861 $(CONFIG_H) \
862 $(LISP_H) \
863 $(SRC)/buffer.h \
864 $(SRC)/ccl.h \
865 $(SRC)/character.h \
866 $(SRC)/charset.h \
867 $(SRC)/composite.h \
868 $(SRC)/dispextern.h \
869 $(SRC)/font.h \
870 $(SRC)/fontset.h \
871 $(SRC)/frame.h \
872 $(SRC)/w32gui.h \
873 $(SRC)/w32term.h \
874 $(SRC)/window.h
875
876 $(BLD)/fontset.$(O) : \
877 $(SRC)/fontset.c \
878 $(CONFIG_H) \
879 $(EMACS_ROOT)/nt/inc/sys/time.h \
880 $(LISP_H) \
881 $(SRC)/atimer.h \
882 $(SRC)/blockinput.h \
883 $(SRC)/buffer.h \
884 $(SRC)/ccl.h \
885 $(SRC)/character.h \
886 $(SRC)/charset.h \
887 $(SRC)/coding.h \
888 $(SRC)/composite.h \
889 $(SRC)/dispextern.h \
890 $(SRC)/font.h \
891 $(SRC)/fontset.h \
892 $(SRC)/frame.h \
893 $(SRC)/intervals.h \
894 $(SRC)/keyboard.h \
895 $(SRC)/systime.h \
896 $(SRC)/termhooks.h \
897 $(SRC)/w32gui.h \
898 $(SRC)/w32term.h \
899 $(SRC)/window.h
900
901 $(BLD)/frame.$(O) : \
902 $(SRC)/frame.c \
903 $(CONFIG_H) \
904 $(EMACS_ROOT)/nt/inc/sys/time.h \
905 $(LISP_H) \
906 $(SRC)/atimer.h \
907 $(SRC)/blockinput.h \
908 $(SRC)/buffer.h \
909 $(SRC)/ccl.h \
910 $(SRC)/character.h \
911 $(SRC)/coding.h \
912 $(SRC)/commands.h \
913 $(SRC)/composite.h \
914 $(SRC)/dispextern.h \
915 $(SRC)/font.h \
916 $(SRC)/fontset.h \
917 $(SRC)/frame.h \
918 $(SRC)/keyboard.h \
919 $(SRC)/systime.h \
920 $(SRC)/termchar.h \
921 $(SRC)/termhooks.h \
922 $(SRC)/w32gui.h \
923 $(SRC)/w32term.h \
924 $(SRC)/window.h
925
926 $(BLD)/fringe.$(O) : \
927 $(SRC)/fringe.c \
928 $(CONFIG_H) \
929 $(EMACS_ROOT)/nt/inc/sys/time.h \
930 $(LISP_H) \
931 $(SRC)/atimer.h \
932 $(SRC)/blockinput.h \
933 $(SRC)/buffer.h \
934 $(SRC)/dispextern.h \
935 $(SRC)/frame.h \
936 $(SRC)/systime.h \
937 $(SRC)/termhooks.h \
938 $(SRC)/w32gui.h \
939 $(SRC)/window.h
940
941 $(BLD)/gmalloc.$(O) : \
942 $(SRC)/gmalloc.c \
943 $(CONFIG_H) \
944 $(EMACS_ROOT)/nt/inc/unistd.h \
945 $(SRC)/getpagesize.h
946
947 $(BLD)/image.$(O) : \
948 $(SRC)/image.c \
949 $(CONFIG_H) \
950 $(EMACS_ROOT)/nt/inc/unistd.h \
951 $(EMACS_ROOT)/nt/inc/sys/time.h \
952 $(LISP_H) \
953 $(SRC)/atimer.h \
954 $(SRC)/blockinput.h \
955 $(SRC)/ccl.h \
956 $(SRC)/character.h \
957 $(SRC)/coding.h \
958 $(SRC)/composite.h \
959 $(SRC)/dispextern.h \
960 $(SRC)/epaths.h \
961 $(SRC)/font.h \
962 $(SRC)/frame.h \
963 $(SRC)/systime.h \
964 $(SRC)/termhooks.h \
965 $(SRC)/w32gui.h \
966 $(SRC)/w32term.h \
967 $(SRC)/window.h
968
969 $(BLD)/indent.$(O) : \
970 $(SRC)/indent.c \
971 $(CONFIG_H) \
972 $(EMACS_ROOT)/nt/inc/sys/time.h \
973 $(LISP_H) \
974 $(SRC)/buffer.h \
975 $(SRC)/category.h \
976 $(SRC)/character.h \
977 $(SRC)/coding.h \
978 $(SRC)/composite.h \
979 $(SRC)/dispextern.h \
980 $(SRC)/disptab.h \
981 $(SRC)/frame.h \
982 $(SRC)/indent.h \
983 $(SRC)/intervals.h \
984 $(SRC)/keyboard.h \
985 $(SRC)/region-cache.h \
986 $(SRC)/systime.h \
987 $(SRC)/termchar.h \
988 $(SRC)/termopts.h \
989 $(SRC)/w32gui.h \
990 $(SRC)/window.h
991
992 $(BLD)/insdel.$(O) : \
993 $(SRC)/insdel.c \
994 $(CONFIG_H) \
995 $(EMACS_ROOT)/nt/inc/sys/time.h \
996 $(LISP_H) \
997 $(SRC)/atimer.h \
998 $(SRC)/blockinput.h \
999 $(SRC)/buffer.h \
1000 $(SRC)/character.h \
1001 $(SRC)/composite.h \
1002 $(SRC)/dispextern.h \
1003 $(SRC)/intervals.h \
1004 $(SRC)/region-cache.h \
1005 $(SRC)/systime.h \
1006 $(SRC)/w32gui.h \
1007 $(SRC)/window.h
1008
1009 $(BLD)/intervals.$(O) : \
1010 $(SRC)/intervals.c \
1011 $(CONFIG_H) \
1012 $(EMACS_ROOT)/nt/inc/sys/time.h \
1013 $(LISP_H) \
1014 $(SRC)/buffer.h \
1015 $(SRC)/coding.h \
1016 $(SRC)/composite.h \
1017 $(SRC)/dispextern.h \
1018 $(SRC)/intervals.h \
1019 $(SRC)/keyboard.h \
1020 $(SRC)/keymap.h \
1021 $(SRC)/puresize.h \
1022 $(SRC)/systime.h \
1023 $(SRC)/w32gui.h
1024
1025 $(BLD)/keyboard.$(O) : \
1026 $(SRC)/keyboard.c \
1027 $(CONFIG_H) \
1028 $(EMACS_ROOT)/nt/inc/unistd.h \
1029 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1030 $(EMACS_ROOT)/nt/inc/sys/time.h \
1031 $(LISP_H) \
1032 $(SRC)/atimer.h \
1033 $(SRC)/blockinput.h \
1034 $(SRC)/buffer.h \
1035 $(SRC)/character.h \
1036 $(SRC)/coding.h \
1037 $(SRC)/commands.h \
1038 $(SRC)/composite.h \
1039 $(SRC)/dispextern.h \
1040 $(SRC)/disptab.h \
1041 $(SRC)/frame.h \
1042 $(SRC)/intervals.h \
1043 $(SRC)/keyboard.h \
1044 $(SRC)/keymap.h \
1045 $(SRC)/macros.h \
1046 $(PROCESS_H) \
1047 $(SRC)/puresize.h \
1048 $(SRC)/syntax.h \
1049 $(SRC)/syssignal.h \
1050 $(SRC)/systime.h \
1051 $(SRC)/termchar.h \
1052 $(SRC)/termhooks.h \
1053 $(SRC)/termopts.h \
1054 $(SRC)/w32gui.h \
1055 $(SRC)/w32term.h \
1056 $(SRC)/window.h
1057
1058 $(BLD)/keymap.$(O) : \
1059 $(SRC)/keymap.c \
1060 $(CONFIG_H) \
1061 $(EMACS_ROOT)/nt/inc/sys/time.h \
1062 $(LISP_H) \
1063 $(SRC)/atimer.h \
1064 $(SRC)/blockinput.h \
1065 $(SRC)/buffer.h \
1066 $(SRC)/character.h \
1067 $(SRC)/charset.h \
1068 $(SRC)/coding.h \
1069 $(SRC)/commands.h \
1070 $(SRC)/composite.h \
1071 $(SRC)/dispextern.h \
1072 $(SRC)/frame.h \
1073 $(SRC)/intervals.h \
1074 $(SRC)/keyboard.h \
1075 $(SRC)/keymap.h \
1076 $(SRC)/puresize.h \
1077 $(SRC)/systime.h \
1078 $(SRC)/termhooks.h \
1079 $(SRC)/w32gui.h \
1080 $(SRC)/window.h
1081
1082 $(BLD)/lastfile.$(O) : \
1083 $(SRC)/lastfile.c \
1084 $(CONFIG_H)
1085
1086 $(BLD)/lread.$(O) : \
1087 $(SRC)/lread.c \
1088 $(CONFIG_H) \
1089 $(EMACS_ROOT)/nt/inc/unistd.h \
1090 $(EMACS_ROOT)/nt/inc/sys/file.h \
1091 $(EMACS_ROOT)/nt/inc/sys/time.h \
1092 $(LISP_H) \
1093 $(SRC)/atimer.h \
1094 $(SRC)/blockinput.h \
1095 $(SRC)/buffer.h \
1096 $(SRC)/character.h \
1097 $(SRC)/charset.h \
1098 $(SRC)/coding.h \
1099 $(SRC)/commands.h \
1100 $(SRC)/composite.h \
1101 $(SRC)/dispextern.h \
1102 $(SRC)/epaths.h \
1103 $(SRC)/frame.h \
1104 $(SRC)/intervals.h \
1105 $(SRC)/keyboard.h \
1106 $(SRC)/systime.h \
1107 $(SRC)/termhooks.h \
1108 $(SRC)/w32gui.h
1109
1110 $(BLD)/macros.$(O) : \
1111 $(SRC)/macros.c \
1112 $(CONFIG_H) \
1113 $(EMACS_ROOT)/nt/inc/sys/time.h \
1114 $(LISP_H) \
1115 $(SRC)/buffer.h \
1116 $(SRC)/coding.h \
1117 $(SRC)/commands.h \
1118 $(SRC)/composite.h \
1119 $(SRC)/dispextern.h \
1120 $(SRC)/keyboard.h \
1121 $(SRC)/macros.h \
1122 $(SRC)/systime.h \
1123 $(SRC)/w32gui.h \
1124 $(SRC)/window.h
1125
1126 $(BLD)/marker.$(O) : \
1127 $(SRC)/marker.c \
1128 $(CONFIG_H) \
1129 $(LISP_H) \
1130 $(SRC)/buffer.h \
1131 $(SRC)/character.h
1132
1133 $(BLD)/menu.$(O) : \
1134 $(SRC)/menu.c \
1135 $(CONFIG_H) \
1136 $(EMACS_ROOT)/nt/inc/sys/time.h \
1137 $(LISP_H) \
1138 $(SRC)/atimer.h \
1139 $(SRC)/blockinput.h \
1140 $(SRC)/coding.h \
1141 $(SRC)/composite.h \
1142 $(SRC)/dispextern.h \
1143 $(SRC)/frame.h \
1144 $(SRC)/keyboard.h \
1145 $(SRC)/keymap.h \
1146 $(SRC)/menu.h \
1147 $(SRC)/systime.h \
1148 $(SRC)/termhooks.h \
1149 $(SRC)/w32gui.h \
1150 $(SRC)/w32term.h \
1151 $(SRC)/window.h
1152
1153 $(BLD)/minibuf.$(O) : \
1154 $(SRC)/minibuf.c \
1155 $(CONFIG_H) \
1156 $(EMACS_ROOT)/nt/inc/sys/time.h \
1157 $(LISP_H) \
1158 $(SRC)/buffer.h \
1159 $(SRC)/character.h \
1160 $(SRC)/coding.h \
1161 $(SRC)/commands.h \
1162 $(SRC)/composite.h \
1163 $(SRC)/dispextern.h \
1164 $(SRC)/frame.h \
1165 $(SRC)/intervals.h \
1166 $(SRC)/keyboard.h \
1167 $(SRC)/keymap.h \
1168 $(SRC)/syntax.h \
1169 $(SRC)/systime.h \
1170 $(SRC)/termhooks.h \
1171 $(SRC)/w32gui.h \
1172 $(SRC)/window.h
1173
1174 $(BLD)/w32.$(O) : \
1175 $(SRC)/w32.c \
1176 $(CONFIG_H) \
1177 $(EMACS_ROOT)/nt/inc/grp.h \
1178 $(EMACS_ROOT)/nt/inc/pwd.h \
1179 $(EMACS_ROOT)/nt/inc/unistd.h \
1180 $(EMACS_ROOT)/nt/inc/sys/file.h \
1181 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1182 $(EMACS_ROOT)/nt/inc/sys/time.h \
1183 $(LISP_H) \
1184 $(SRC)/coding.h \
1185 $(SRC)/composite.h \
1186 $(SRC)/dispextern.h \
1187 $(SRC)/ndir.h \
1188 $(PROCESS_H) \
1189 $(SRC)/systime.h \
1190 $(SRC)/w32.h \
1191 $(SRC)/w32gui.h \
1192 $(SRC)/w32heap.h
1193
1194 $(BLD)/w32heap.$(O) : \
1195 $(SRC)/w32heap.c \
1196 $(CONFIG_H) \
1197 $(LISP_H) \
1198 $(SRC)/w32heap.h
1199
1200 $(BLD)/w32inevt.$(O) : \
1201 $(SRC)/w32inevt.c \
1202 $(CONFIG_H) \
1203 $(EMACS_ROOT)/nt/inc/sys/time.h \
1204 $(LISP_H) \
1205 $(SRC)/atimer.h \
1206 $(SRC)/blockinput.h \
1207 $(SRC)/coding.h \
1208 $(SRC)/composite.h \
1209 $(SRC)/dispextern.h \
1210 $(SRC)/frame.h \
1211 $(SRC)/keyboard.h \
1212 $(SRC)/systime.h \
1213 $(SRC)/termhooks.h \
1214 $(SRC)/w32gui.h \
1215 $(SRC)/w32heap.h \
1216 $(SRC)/w32term.h
1217
1218 $(BLD)/w32proc.$(O) : \
1219 $(SRC)/w32proc.c \
1220 $(CONFIG_H) \
1221 $(EMACS_ROOT)/nt/inc/langinfo.h \
1222 $(EMACS_ROOT)/nt/inc/nl_types.h \
1223 $(EMACS_ROOT)/nt/inc/unistd.h \
1224 $(EMACS_ROOT)/nt/inc/sys/file.h \
1225 $(EMACS_ROOT)/nt/inc/sys/time.h \
1226 $(LISP_H) \
1227 $(SRC)/character.h \
1228 $(SRC)/coding.h \
1229 $(SRC)/composite.h \
1230 $(SRC)/dispextern.h \
1231 $(PROCESS_H) \
1232 $(SRC)/syssignal.h \
1233 $(SRC)/systime.h \
1234 $(SRC)/syswait.h \
1235 $(SRC)/w32.h \
1236 $(SRC)/w32gui.h \
1237 $(SRC)/w32heap.h \
1238 $(SRC)/w32term.h
1239
1240 $(BLD)/w32console.$(O) : \
1241 $(SRC)/w32console.c \
1242 $(CONFIG_H) \
1243 $(LISP_H) \
1244 $(SRC)/character.h \
1245 $(SRC)/coding.h \
1246 $(SRC)/composite.h \
1247 $(SRC)/dispextern.h \
1248 $(SRC)/disptab.h \
1249 $(SRC)/frame.h \
1250 $(SRC)/termchar.h \
1251 $(SRC)/termhooks.h \
1252 $(SRC)/w32gui.h \
1253 $(SRC)/w32inevt.h
1254
1255 $(BLD)/print.$(O) : \
1256 $(SRC)/print.c \
1257 $(CONFIG_H) \
1258 $(EMACS_ROOT)/nt/inc/unistd.h \
1259 $(EMACS_ROOT)/nt/inc/sys/time.h \
1260 $(EMACS_ROOT)/lib/ftoastr.h \
1261 $(EMACS_ROOT)/lib/intprops.h \
1262 $(LISP_H) \
1263 $(SRC)/atimer.h \
1264 $(SRC)/blockinput.h \
1265 $(SRC)/buffer.h \
1266 $(SRC)/ccl.h \
1267 $(SRC)/character.h \
1268 $(SRC)/charset.h \
1269 $(SRC)/coding.h \
1270 $(SRC)/composite.h \
1271 $(SRC)/dispextern.h \
1272 $(SRC)/font.h \
1273 $(SRC)/frame.h \
1274 $(SRC)/intervals.h \
1275 $(SRC)/keyboard.h \
1276 $(PROCESS_H) \
1277 $(SRC)/systime.h \
1278 $(SRC)/termchar.h \
1279 $(SRC)/termhooks.h \
1280 $(SRC)/w32gui.h \
1281 $(SRC)/window.h
1282
1283 $(BLD)/process.$(O) : \
1284 $(SRC)/process.c \
1285 $(CONFIG_H) \
1286 $(EMACS_ROOT)/nt/inc/netdb.h \
1287 $(EMACS_ROOT)/nt/inc/unistd.h \
1288 $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1289 $(EMACS_ROOT)/nt/inc/netinet/in.h \
1290 $(EMACS_ROOT)/nt/inc/sys/file.h \
1291 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1292 $(EMACS_ROOT)/nt/inc/sys/time.h \
1293 $(LISP_H) \
1294 $(SRC)/atimer.h \
1295 $(SRC)/blockinput.h \
1296 $(SRC)/buffer.h \
1297 $(SRC)/character.h \
1298 $(SRC)/coding.h \
1299 $(SRC)/commands.h \
1300 $(SRC)/composite.h \
1301 $(SRC)/dispextern.h \
1302 $(SRC)/frame.h \
1303 $(SRC)/keyboard.h \
1304 $(PROCESS_H) \
1305 $(SRC)/sysselect.h \
1306 $(SRC)/syssignal.h \
1307 $(SRC)/systime.h \
1308 $(SRC)/systty.h \
1309 $(SRC)/syswait.h \
1310 $(SRC)/termhooks.h \
1311 $(SRC)/termopts.h \
1312 $(SRC)/w32.h \
1313 $(SRC)/w32gui.h \
1314 $(SRC)/window.h
1315
1316 $(BLD)/ralloc.$(O) : \
1317 $(SRC)/ralloc.c \
1318 $(CONFIG_H) \
1319 $(EMACS_ROOT)/nt/inc/unistd.h \
1320 $(EMACS_ROOT)/nt/inc/sys/time.h \
1321 $(LISP_H) \
1322 $(SRC)/atimer.h \
1323 $(SRC)/blockinput.h \
1324 $(SRC)/getpagesize.h \
1325 $(SRC)/systime.h
1326
1327 $(BLD)/regex.$(O) : \
1328 $(SRC)/regex.c \
1329 $(CONFIG_H) \
1330 $(LISP_H) \
1331 $(SRC)/buffer.h \
1332 $(SRC)/category.h \
1333 $(SRC)/character.h \
1334 $(SRC)/regex.h \
1335 $(SRC)/syntax.h
1336
1337 $(BLD)/region-cache.$(O) : \
1338 $(SRC)/region-cache.c \
1339 $(CONFIG_H) \
1340 $(LISP_H) \
1341 $(SRC)/buffer.h \
1342 $(SRC)/region-cache.h
1343
1344 $(BLD)/scroll.$(O) : \
1345 $(SRC)/scroll.c \
1346 $(CONFIG_H) \
1347 $(EMACS_ROOT)/nt/inc/sys/time.h \
1348 $(LISP_H) \
1349 $(SRC)/coding.h \
1350 $(SRC)/composite.h \
1351 $(SRC)/dispextern.h \
1352 $(SRC)/frame.h \
1353 $(SRC)/keyboard.h \
1354 $(SRC)/systime.h \
1355 $(SRC)/termchar.h \
1356 $(SRC)/termhooks.h \
1357 $(SRC)/w32gui.h \
1358 $(SRC)/window.h
1359
1360 $(BLD)/search.$(O) : \
1361 $(SRC)/search.c \
1362 $(CONFIG_H) \
1363 $(EMACS_ROOT)/nt/inc/sys/time.h \
1364 $(LISP_H) \
1365 $(SRC)/atimer.h \
1366 $(SRC)/blockinput.h \
1367 $(SRC)/buffer.h \
1368 $(SRC)/category.h \
1369 $(SRC)/character.h \
1370 $(SRC)/charset.h \
1371 $(SRC)/commands.h \
1372 $(SRC)/composite.h \
1373 $(SRC)/dispextern.h \
1374 $(SRC)/intervals.h \
1375 $(SRC)/regex.h \
1376 $(SRC)/region-cache.h \
1377 $(SRC)/syntax.h \
1378 $(SRC)/systime.h \
1379 $(SRC)/w32gui.h
1380
1381 $(BLD)/sound.$(O) : \
1382 $(SRC)/sound.c \
1383 $(CONFIG_H) \
1384 $(EMACS_ROOT)/nt/inc/unistd.h \
1385 $(EMACS_ROOT)/nt/inc/sys/time.h \
1386 $(LISP_H) \
1387 $(SRC)/atimer.h \
1388 $(SRC)/dispextern.h \
1389 $(SRC)/syssignal.h \
1390 $(SRC)/systime.h \
1391 $(SRC)/w32gui.h
1392
1393 $(BLD)/syntax.$(O) : \
1394 $(SRC)/syntax.c \
1395 $(CONFIG_H) \
1396 $(LISP_H) \
1397 $(SRC)/buffer.h \
1398 $(SRC)/category.h \
1399 $(SRC)/character.h \
1400 $(SRC)/commands.h \
1401 $(SRC)/composite.h \
1402 $(SRC)/dispextern.h \
1403 $(SRC)/intervals.h \
1404 $(SRC)/keymap.h \
1405 $(SRC)/regex.h \
1406 $(SRC)/syntax.h \
1407 $(SRC)/w32gui.h
1408
1409 $(BLD)/sysdep.$(O) : \
1410 $(SRC)/sysdep.c \
1411 $(CONFIG_H) \
1412 $(EMACS_ROOT)/nt/inc/grp.h \
1413 $(EMACS_ROOT)/nt/inc/netdb.h \
1414 $(EMACS_ROOT)/nt/inc/pwd.h \
1415 $(EMACS_ROOT)/nt/inc/unistd.h \
1416 $(EMACS_ROOT)/nt/inc/sys/file.h \
1417 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1418 $(EMACS_ROOT)/nt/inc/sys/time.h \
1419 $(EMACS_ROOT)/lib/ignore-value.h \
1420 $(LISP_H) \
1421 $(SRC)/atimer.h \
1422 $(SRC)/blockinput.h \
1423 $(SRC)/cm.h \
1424 $(SRC)/coding.h \
1425 $(SRC)/composite.h \
1426 $(SRC)/dispextern.h \
1427 $(SRC)/frame.h \
1428 $(SRC)/keyboard.h \
1429 $(PROCESS_H) \
1430 $(SRC)/sysselect.h \
1431 $(SRC)/syssignal.h \
1432 $(SRC)/systime.h \
1433 $(SRC)/systty.h \
1434 $(SRC)/syswait.h \
1435 $(SRC)/termchar.h \
1436 $(SRC)/termhooks.h \
1437 $(SRC)/termopts.h \
1438 $(SRC)/w32.h \
1439 $(SRC)/w32gui.h \
1440 $(SRC)/window.h
1441
1442 $(BLD)/term.$(O) : \
1443 $(SRC)/term.c \
1444 $(CONFIG_H) \
1445 $(EMACS_ROOT)/nt/inc/unistd.h \
1446 $(EMACS_ROOT)/nt/inc/sys/file.h \
1447 $(EMACS_ROOT)/nt/inc/sys/time.h \
1448 $(LISP_H) \
1449 $(SRC)/atimer.h \
1450 $(SRC)/blockinput.h \
1451 $(SRC)/buffer.h \
1452 $(SRC)/character.h \
1453 $(SRC)/charset.h \
1454 $(SRC)/cm.h \
1455 $(SRC)/coding.h \
1456 $(SRC)/composite.h \
1457 $(SRC)/dispextern.h \
1458 $(SRC)/disptab.h \
1459 $(SRC)/frame.h \
1460 $(SRC)/intervals.h \
1461 $(SRC)/keyboard.h \
1462 $(SRC)/keymap.h \
1463 $(SRC)/syssignal.h \
1464 $(SRC)/systime.h \
1465 $(SRC)/systty.h \
1466 $(SRC)/termchar.h \
1467 $(SRC)/termhooks.h \
1468 $(SRC)/termopts.h \
1469 $(SRC)/w32gui.h \
1470 $(SRC)/window.h
1471
1472 $(BLD)/terminal.$(O) : \
1473 $(SRC)/terminal.c \
1474 $(CONFIG_H) \
1475 $(EMACS_ROOT)/nt/inc/sys/time.h \
1476 $(LISP_H) \
1477 $(SRC)/charset.h \
1478 $(SRC)/coding.h \
1479 $(SRC)/composite.h \
1480 $(SRC)/dispextern.h \
1481 $(SRC)/frame.h \
1482 $(SRC)/keyboard.h \
1483 $(SRC)/systime.h \
1484 $(SRC)/termchar.h \
1485 $(SRC)/termhooks.h \
1486 $(SRC)/w32gui.h
1487
1488 $(BLD)/textprop.$(O) : \
1489 $(SRC)/textprop.c \
1490 $(CONFIG_H) \
1491 $(LISP_H) \
1492 $(SRC)/buffer.h \
1493 $(SRC)/composite.h \
1494 $(SRC)/dispextern.h \
1495 $(SRC)/intervals.h \
1496 $(SRC)/w32gui.h \
1497 $(SRC)/window.h
1498
1499 $(BLD)/tparam.$(O) : \
1500 $(SRC)/tparam.c \
1501 $(CONFIG_H) \
1502 $(LISP_H)
1503
1504 $(BLD)/undo.$(O) : \
1505 $(SRC)/undo.c \
1506 $(CONFIG_H) \
1507 $(LISP_H) \
1508 $(SRC)/buffer.h \
1509 $(SRC)/commands.h \
1510 $(SRC)/dispextern.h \
1511 $(SRC)/w32gui.h \
1512 $(SRC)/window.h
1513
1514 $(BLD)/unexw32.$(O) : \
1515 $(SRC)/unexw32.c \
1516 $(CONFIG_H) \
1517 $(SRC)/w32heap.h
1518
1519 $(BLD)/vm-limit.$(O) : \
1520 $(SRC)/vm-limit.c \
1521 $(CONFIG_H) \
1522 $(LISP_H) \
1523 $(SRC)/mem-limits.h
1524
1525 $(BLD)/window.$(O) : \
1526 $(SRC)/window.c \
1527 $(CONFIG_H) \
1528 $(EMACS_ROOT)/nt/inc/sys/time.h \
1529 $(LISP_H) \
1530 $(SRC)/atimer.h \
1531 $(SRC)/blockinput.h \
1532 $(SRC)/buffer.h \
1533 $(SRC)/coding.h \
1534 $(SRC)/commands.h \
1535 $(SRC)/composite.h \
1536 $(SRC)/dispextern.h \
1537 $(SRC)/disptab.h \
1538 $(SRC)/frame.h \
1539 $(SRC)/indent.h \
1540 $(SRC)/intervals.h \
1541 $(SRC)/keyboard.h \
1542 $(SRC)/keymap.h \
1543 $(SRC)/systime.h \
1544 $(SRC)/termchar.h \
1545 $(SRC)/termhooks.h \
1546 $(SRC)/w32gui.h \
1547 $(SRC)/w32term.h \
1548 $(SRC)/window.h
1549
1550 $(BLD)/xdisp.$(O) : \
1551 $(SRC)/xdisp.c \
1552 $(CONFIG_H) \
1553 $(EMACS_ROOT)/nt/inc/unistd.h \
1554 $(EMACS_ROOT)/nt/inc/sys/time.h \
1555 $(LISP_H) \
1556 $(SRC)/atimer.h \
1557 $(SRC)/blockinput.h \
1558 $(SRC)/buffer.h \
1559 $(SRC)/ccl.h \
1560 $(SRC)/character.h \
1561 $(SRC)/charset.h \
1562 $(SRC)/coding.h \
1563 $(SRC)/commands.h \
1564 $(SRC)/composite.h \
1565 $(SRC)/dispextern.h \
1566 $(SRC)/disptab.h \
1567 $(SRC)/font.h \
1568 $(SRC)/fontset.h \
1569 $(SRC)/frame.h \
1570 $(SRC)/indent.h \
1571 $(SRC)/intervals.h \
1572 $(SRC)/keyboard.h \
1573 $(SRC)/keymap.h \
1574 $(SRC)/macros.h \
1575 $(PROCESS_H) \
1576 $(SRC)/region-cache.h \
1577 $(SRC)/systime.h \
1578 $(SRC)/termchar.h \
1579 $(SRC)/termhooks.h \
1580 $(SRC)/termopts.h \
1581 $(SRC)/w32gui.h \
1582 $(SRC)/w32term.h \
1583 $(SRC)/window.h
1584
1585 $(BLD)/xfaces.$(O) : \
1586 $(SRC)/xfaces.c \
1587 $(CONFIG_H) \
1588 $(EMACS_ROOT)/nt/inc/sys/time.h \
1589 $(LISP_H) \
1590 $(SRC)/atimer.h \
1591 $(SRC)/blockinput.h \
1592 $(SRC)/buffer.h \
1593 $(SRC)/ccl.h \
1594 $(SRC)/character.h \
1595 $(SRC)/charset.h \
1596 $(SRC)/coding.h \
1597 $(SRC)/composite.h \
1598 $(SRC)/dispextern.h \
1599 $(SRC)/font.h \
1600 $(SRC)/fontset.h \
1601 $(SRC)/frame.h \
1602 $(SRC)/intervals.h \
1603 $(SRC)/keyboard.h \
1604 $(SRC)/systime.h \
1605 $(SRC)/termchar.h \
1606 $(SRC)/termhooks.h \
1607 $(SRC)/w32gui.h \
1608 $(SRC)/w32term.h \
1609 $(SRC)/window.h
1610
1611 $(BLD)/w32fns.$(O) : \
1612 $(SRC)/w32fns.c \
1613 $(CONFIG_H) \
1614 $(EMACS_ROOT)/nt/inc/sys/time.h \
1615 $(LISP_H) \
1616 $(SRC)/atimer.h \
1617 $(SRC)/blockinput.h \
1618 $(SRC)/buffer.h \
1619 $(SRC)/ccl.h \
1620 $(SRC)/character.h \
1621 $(SRC)/charset.h \
1622 $(SRC)/coding.h \
1623 $(SRC)/composite.h \
1624 $(SRC)/dispextern.h \
1625 $(SRC)/epaths.h \
1626 $(SRC)/font.h \
1627 $(SRC)/fontset.h \
1628 $(SRC)/frame.h \
1629 $(SRC)/intervals.h \
1630 $(SRC)/keyboard.h \
1631 $(SRC)/systime.h \
1632 $(SRC)/termhooks.h \
1633 $(SRC)/w32.h \
1634 $(SRC)/w32font.h \
1635 $(SRC)/w32gui.h \
1636 $(SRC)/w32heap.h \
1637 $(SRC)/w32term.h \
1638 $(SRC)/window.h
1639
1640 $(BLD)/w32menu.$(O) : \
1641 $(SRC)/w32menu.c \
1642 $(CONFIG_H) \
1643 $(EMACS_ROOT)/nt/inc/sys/time.h \
1644 $(LISP_H) \
1645 $(SRC)/atimer.h \
1646 $(SRC)/blockinput.h \
1647 $(SRC)/buffer.h \
1648 $(SRC)/character.h \
1649 $(SRC)/charset.h \
1650 $(SRC)/coding.h \
1651 $(SRC)/composite.h \
1652 $(SRC)/dispextern.h \
1653 $(SRC)/frame.h \
1654 $(SRC)/keyboard.h \
1655 $(SRC)/keymap.h \
1656 $(SRC)/menu.h \
1657 $(SRC)/systime.h \
1658 $(SRC)/termhooks.h \
1659 $(SRC)/w32gui.h \
1660 $(SRC)/w32term.h \
1661 $(SRC)/window.h
1662
1663 $(BLD)/w32term.$(O) : \
1664 $(SRC)/w32term.c \
1665 $(CONFIG_H) \
1666 $(EMACS_ROOT)/nt/inc/unistd.h \
1667 $(EMACS_ROOT)/nt/inc/sys/time.h \
1668 $(LISP_H) \
1669 $(SRC)/atimer.h \
1670 $(SRC)/blockinput.h \
1671 $(SRC)/buffer.h \
1672 $(SRC)/ccl.h \
1673 $(SRC)/character.h \
1674 $(SRC)/charset.h \
1675 $(SRC)/coding.h \
1676 $(SRC)/composite.h \
1677 $(SRC)/dispextern.h \
1678 $(SRC)/disptab.h \
1679 $(SRC)/font.h \
1680 $(SRC)/fontset.h \
1681 $(SRC)/frame.h \
1682 $(SRC)/intervals.h \
1683 $(SRC)/keyboard.h \
1684 $(SRC)/keymap.h \
1685 $(PROCESS_H) \
1686 $(SRC)/systime.h \
1687 $(SRC)/systty.h \
1688 $(SRC)/termchar.h \
1689 $(SRC)/termhooks.h \
1690 $(SRC)/termopts.h \
1691 $(SRC)/w32font.h \
1692 $(SRC)/w32gui.h \
1693 $(SRC)/w32heap.h \
1694 $(SRC)/w32term.h \
1695 $(SRC)/window.h
1696
1697 $(BLD)/w32select.$(O) : \
1698 $(SRC)/w32select.c \
1699 $(CONFIG_H) \
1700 $(EMACS_ROOT)/nt/inc/sys/time.h \
1701 $(LISP_H) \
1702 $(SRC)/atimer.h \
1703 $(SRC)/blockinput.h \
1704 $(SRC)/character.h \
1705 $(SRC)/charset.h \
1706 $(SRC)/coding.h \
1707 $(SRC)/composite.h \
1708 $(SRC)/keyboard.h \
1709 $(SRC)/systime.h \
1710 $(SRC)/w32gui.h \
1711 $(SRC)/w32heap.h \
1712 $(SRC)/w32term.h
1713
1714 $(BLD)/w32reg.$(O) : \
1715 $(SRC)/w32reg.c \
1716 $(CONFIG_H) \
1717 $(EMACS_ROOT)/nt/inc/sys/time.h \
1718 $(LISP_H) \
1719 $(SRC)/atimer.h \
1720 $(SRC)/blockinput.h \
1721 $(SRC)/systime.h \
1722 $(SRC)/w32gui.h \
1723 $(SRC)/w32term.h
1724
1725 $(BLD)/w32xfns.$(O) : \
1726 $(SRC)/w32xfns.c \
1727 $(CONFIG_H) \
1728 $(EMACS_ROOT)/nt/inc/sys/time.h \
1729 $(LISP_H) \
1730 $(SRC)/atimer.h \
1731 $(SRC)/blockinput.h \
1732 $(SRC)/charset.h \
1733 $(SRC)/coding.h \
1734 $(SRC)/composite.h \
1735 $(SRC)/dispextern.h \
1736 $(SRC)/fontset.h \
1737 $(SRC)/frame.h \
1738 $(SRC)/keyboard.h \
1739 $(SRC)/systime.h \
1740 $(SRC)/w32gui.h \
1741 $(SRC)/w32term.h
1742
1743 $(BLD)/w32font.$(O) : \
1744 $(SRC)/w32font.c \
1745 $(CONFIG_H) \
1746 $(LISP_H) \
1747 $(SRC)/ccl.h \
1748 $(SRC)/character.h \
1749 $(SRC)/charset.h \
1750 $(SRC)/coding.h \
1751 $(SRC)/composite.h \
1752 $(SRC)/dispextern.h \
1753 $(SRC)/font.h \
1754 $(SRC)/fontset.h \
1755 $(SRC)/frame.h \
1756 $(SRC)/w32font.h \
1757 $(SRC)/w32gui.h \
1758 $(SRC)/w32term.h
1759
1760 $(BLD)/w32uniscribe.$(O) : \
1761 $(SRC)/w32uniscribe.c \
1762 $(CONFIG_H) \
1763 $(LISP_H) \
1764 $(SRC)/ccl.h \
1765 $(SRC)/character.h \
1766 $(SRC)/charset.h \
1767 $(SRC)/composite.h \
1768 $(SRC)/dispextern.h \
1769 $(SRC)/font.h \
1770 $(SRC)/fontset.h \
1771 $(SRC)/frame.h \
1772 $(SRC)/w32font.h \
1773 $(SRC)/w32gui.h \
1774 $(SRC)/w32term.h
1775
1776 # Each object file depends on stamp_BLD, because in parallel builds we must
1777 # make sure $(BLD) exists before starting compilations.
1778 #
1779 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD