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