Fix copyright years in new cygw32 files.
[bpt/emacs.git] / src / makefile.w32-in
1 # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
2 # Copyright (C) 2000-2012 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 -DHAVE_NTGUI=1 $(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 \
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 FONT_H = $(SRC)/font.h \
427 $(CCL_H)
428 FRAME_H = $(SRC)/frame.h \
429 $(DISPEXTERN_H)
430 FTOASTR_H = $(GNU_LIB)/ftoastr.h \
431 $(GNU_LIB)/intprops.h
432 GRP_H = $(NT_INC)/grp.h \
433 $(NT_INC)/pwd.h
434 INTERVALS_H = $(SRC)/intervals.h \
435 $(SRC)/composite.h \
436 $(DISPEXTERN_H)
437 INTTYPES_H = $(NT_INC)/inttypes.h \
438 $(NT_INC)/stdint.h
439 KEYBOARD_H = $(SRC)/keyboard.h \
440 $(CODING_H) \
441 $(SYSTIME_H)
442 LANGINFO_H = $(NT_INC)/langinfo.h \
443 $(NT_INC)/nl_types.h
444 LISP_H = $(SRC)/lisp.h \
445 $(SRC)/globals.h \
446 $(GNU_LIB)/intprops.h \
447 $(INTTYPES_H) \
448 $(NT_INC)/stdalign.h \
449 $(NT_INC)/stdbool.h
450 MD5_H = $(GNU_LIB)/md5.h \
451 $(NT_INC)/stdint.h
452 MENU_H = $(SRC)/menu.h \
453 $(SYSTIME_H)
454 PROCESS_H = $(SRC)/process.h \
455 $(SRC)/gnutls.h \
456 $(NT_INC)/unistd.h
457 SHA1_H = $(GNU_LIB)/sha1.h \
458 $(NT_INC)/stdint.h
459 SHA256_H = $(GNU_LIB)/sha256.h \
460 $(NT_INC)/stdint.h
461 U64_H = $(GNU_LIB)/u64.h \
462 $(NT_INC)/stdint.h
463 SHA512_H = $(GNU_LIB)/sha512.h \
464 $(U64_H)
465 SOCKET_H = $(NT_INC)/sys/socket.h \
466 $(SRC)/w32.h
467 STAT_TIME_H = $(GNU_LIB)/stat-time.h \
468 $(NT_INC)/sys/stat.h
469 SYSSIGNAL_H = $(SRC)/syssignal.h \
470 $(NT_INC)/stdbool.h
471 SYSTTY_H = $(SRC)/systty.h \
472 $(NT_INC)/sys/ioctl.h \
473 $(NT_INC)/unistd.h
474 TERMHOOKS_H = $(SRC)/termhooks.h \
475 $(SYSTIME_H)
476 W32FONT_H = $(SRC)/w32font.h \
477 $(FONT_H)
478 W32TERM_H = $(SRC)/w32term.h \
479 $(W32GUI_H)
480 WINDOW_H = $(SRC)/window.h \
481 $(DISPEXTERN_H)
482
483 $(BLD)/alloc.$(O) : \
484 $(SRC)/alloc.c \
485 $(SRC)/blockinput.h \
486 $(SRC)/puresize.h \
487 $(SRC)/w32.h \
488 $(SRC)/w32heap.h \
489 $(NT_INC)/unistd.h \
490 $(GNU_LIB)/verify.h \
491 $(BUFFER_H) \
492 $(CHARACTER_H) \
493 $(CONFIG_H) \
494 $(FRAME_H) \
495 $(INTERVALS_H) \
496 $(KEYBOARD_H) \
497 $(LISP_H) \
498 $(PROCESS_H) \
499 $(TERMHOOKS_H) \
500 $(WINDOW_H)
501
502 $(BLD)/atimer.$(O) : \
503 $(SRC)/atimer.c \
504 $(SRC)/blockinput.h \
505 $(NT_INC)/unistd.h \
506 $(ATIMER_H) \
507 $(CONFIG_H) \
508 $(LISP_H) \
509 $(SYSSIGNAL_H) \
510 $(SYSTIME_H)
511
512 $(BLD)/bidi.$(O) : \
513 $(SRC)/bidi.c \
514 $(BUFFER_H) \
515 $(CHARACTER_H) \
516 $(CONFIG_H) \
517 $(DISPEXTERN_H) \
518 $(LISP_H)
519
520 $(BLD)/buffer.$(O) : \
521 $(SRC)/buffer.c \
522 $(SRC)/blockinput.h \
523 $(SRC)/commands.h \
524 $(SRC)/indent.h \
525 $(SRC)/keymap.h \
526 $(SRC)/region-cache.h \
527 $(NT_INC)/sys/param.h \
528 $(NT_INC)/sys/stat.h \
529 $(NT_INC)/unistd.h \
530 $(GNU_LIB)/verify.h \
531 $(BUFFER_H) \
532 $(CHARACTER_H) \
533 $(CONFIG_H) \
534 $(FRAME_H) \
535 $(INTERVALS_H) \
536 $(KEYBOARD_H) \
537 $(LISP_H) \
538 $(WINDOW_H)
539
540 $(BLD)/bytecode.$(O) : \
541 $(SRC)/bytecode.c \
542 $(SRC)/syntax.h \
543 $(BUFFER_H) \
544 $(CHARACTER_H) \
545 $(CONFIG_H) \
546 $(LISP_H) \
547 $(WINDOW_H)
548
549 $(BLD)/callint.$(O) : \
550 $(SRC)/callint.c \
551 $(SRC)/commands.h \
552 $(SRC)/keymap.h \
553 $(BUFFER_H) \
554 $(CHARACTER_H) \
555 $(CONFIG_H) \
556 $(KEYBOARD_H) \
557 $(LISP_H) \
558 $(WINDOW_H)
559
560 $(BLD)/callproc.$(O) : \
561 $(SRC)/callproc.c \
562 $(SRC)/blockinput.h \
563 $(SRC)/commands.h \
564 $(SRC)/composite.h \
565 $(SRC)/epaths.h \
566 $(SRC)/syswait.h \
567 $(SRC)/w32.h \
568 $(NT_INC)/sys/file.h \
569 $(NT_INC)/unistd.h \
570 $(BUFFER_H) \
571 $(CCL_H) \
572 $(CHARACTER_H) \
573 $(CODING_H) \
574 $(CONFIG_H) \
575 $(FRAME_H) \
576 $(LISP_H) \
577 $(PROCESS_H) \
578 $(SYSSIGNAL_H) \
579 $(SYSTTY_H) \
580 $(TERMHOOKS_H)
581
582 $(BLD)/casefiddle.$(O) : \
583 $(SRC)/casefiddle.c \
584 $(SRC)/commands.h \
585 $(SRC)/composite.h \
586 $(SRC)/keymap.h \
587 $(SRC)/syntax.h \
588 $(BUFFER_H) \
589 $(CHARACTER_H) \
590 $(CONFIG_H) \
591 $(LISP_H)
592
593 $(BLD)/casetab.$(O) : \
594 $(SRC)/casetab.c \
595 $(BUFFER_H) \
596 $(CHARACTER_H) \
597 $(CONFIG_H) \
598 $(LISP_H)
599
600 $(BLD)/category.$(O) : \
601 $(SRC)/category.c \
602 $(SRC)/category.h \
603 $(SRC)/keymap.h \
604 $(BUFFER_H) \
605 $(CHARACTER_H) \
606 $(CHARSET_H) \
607 $(CONFIG_H) \
608 $(LISP_H)
609
610 $(BLD)/ccl.$(O) : \
611 $(SRC)/ccl.c \
612 $(CCL_H) \
613 $(CHARACTER_H) \
614 $(CHARSET_H) \
615 $(CODING_H) \
616 $(CONFIG_H) \
617 $(LISP_H)
618
619 $(BLD)/character.$(O) : \
620 $(SRC)/character.c \
621 $(SRC)/composite.h \
622 $(SRC)/disptab.h \
623 $(GNU_LIB)/intprops.h \
624 $(BUFFER_H) \
625 $(CHARACTER_H) \
626 $(CHARSET_H) \
627 $(CONFIG_H) \
628 $(LISP_H)
629
630 $(BLD)/charset.$(O) : \
631 $(SRC)/charset.c \
632 $(SRC)/disptab.h \
633 $(NT_INC)/unistd.h \
634 $(BUFFER_H) \
635 $(CHARACTER_H) \
636 $(CHARSET_H) \
637 $(CODING_H) \
638 $(CONFIG_H) \
639 $(C_CTYPE_H) \
640 $(LISP_H)
641
642 $(BLD)/chartab.$(O) : \
643 $(SRC)/chartab.c \
644 $(CCL_H) \
645 $(CHARACTER_H) \
646 $(CHARSET_H) \
647 $(CONFIG_H) \
648 $(LISP_H)
649
650 $(BLD)/cmds.$(O) : \
651 $(SRC)/cmds.c \
652 $(SRC)/commands.h \
653 $(SRC)/keymap.h \
654 $(SRC)/syntax.h \
655 $(BUFFER_H) \
656 $(CHARACTER_H) \
657 $(CONFIG_H) \
658 $(DISPEXTERN_H) \
659 $(FRAME_H) \
660 $(KEYBOARD_H) \
661 $(LISP_H) \
662 $(WINDOW_H)
663
664 $(BLD)/coding.$(O) : \
665 $(SRC)/coding.c \
666 $(SRC)/composite.h \
667 $(BUFFER_H) \
668 $(CCL_H) \
669 $(CHARACTER_H) \
670 $(CHARSET_H) \
671 $(CODING_H) \
672 $(CONFIG_H) \
673 $(FRAME_H) \
674 $(LISP_H) \
675 $(TERMHOOKS_H) \
676 $(WINDOW_H)
677
678 $(BLD)/composite.$(O) : \
679 $(SRC)/composite.c \
680 $(BUFFER_H) \
681 $(CHARACTER_H) \
682 $(CODING_H) \
683 $(CONFIG_H) \
684 $(DISPEXTERN_H) \
685 $(FONT_H) \
686 $(FRAME_H) \
687 $(INTERVALS_H) \
688 $(LISP_H) \
689 $(TERMHOOKS_H) \
690 $(WINDOW_H)
691
692 $(BLD)/data.$(O) : \
693 $(SRC)/data.c \
694 $(SRC)/keymap.h \
695 $(SRC)/puresize.h \
696 $(GNU_LIB)/intprops.h \
697 $(BUFFER_H) \
698 $(CHARACTER_H) \
699 $(CONFIG_H) \
700 $(FONT_H) \
701 $(FRAME_H) \
702 $(KEYBOARD_H) \
703 $(LISP_H) \
704 $(SYSSIGNAL_H) \
705 $(TERMHOOKS_H)
706
707 $(BLD)/dired.$(O) : \
708 $(SRC)/dired.c \
709 $(SRC)/blockinput.h \
710 $(SRC)/commands.h \
711 $(SRC)/regex.h \
712 $(NT_INC)/pwd.h \
713 $(NT_INC)/sys/stat.h \
714 $(NT_INC)/unistd.h \
715 $(BUFFER_H) \
716 $(CHARACTER_H) \
717 $(CHARSET_H) \
718 $(CODING_H) \
719 $(CONFIG_H) \
720 $(DIR_H) \
721 $(FILEMODE_H) \
722 $(GRP_H) \
723 $(LISP_H) \
724 $(STAT_TIME_H) \
725 $(SYSTIME_H)
726
727 $(BLD)/dispnew.$(O) : \
728 $(SRC)/dispnew.c \
729 $(SRC)/blockinput.h \
730 $(SRC)/cm.h \
731 $(SRC)/commands.h \
732 $(SRC)/disptab.h \
733 $(SRC)/indent.h \
734 $(SRC)/termchar.h \
735 $(SRC)/termopts.h \
736 $(NT_INC)/unistd.h \
737 $(BUFFER_H) \
738 $(CHARACTER_H) \
739 $(CONFIG_H) \
740 $(DISPEXTERN_H) \
741 $(FRAME_H) \
742 $(INTERVALS_H) \
743 $(KEYBOARD_H) \
744 $(LISP_H) \
745 $(PROCESS_H) \
746 $(SYSSIGNAL_H) \
747 $(SYSTIME_H) \
748 $(TERMHOOKS_H) \
749 $(W32TERM_H) \
750 $(WINDOW_H)
751
752 $(BLD)/doc.$(O) : \
753 $(SRC)/doc.c \
754 $(SRC)/buildobj.h \
755 $(SRC)/keymap.h \
756 $(NT_INC)/sys/file.h \
757 $(NT_INC)/unistd.h \
758 $(BUFFER_H) \
759 $(CHARACTER_H) \
760 $(CONFIG_H) \
761 $(C_CTYPE_H) \
762 $(KEYBOARD_H) \
763 $(LISP_H)
764
765 $(BLD)/doprnt.$(O) : \
766 $(SRC)/doprnt.c \
767 $(NT_INC)/unistd.h \
768 $(CHARACTER_H) \
769 $(CONFIG_H) \
770 $(LISP_H)
771
772 $(BLD)/editfns.$(O) : \
773 $(SRC)/editfns.c \
774 $(SRC)/blockinput.h \
775 $(NT_INC)/pwd.h \
776 $(NT_INC)/unistd.h \
777 $(GNU_LIB)/intprops.h \
778 $(GNU_LIB)/strftime.h \
779 $(GNU_LIB)/verify.h \
780 $(BUFFER_H) \
781 $(CHARACTER_H) \
782 $(CODING_H) \
783 $(CONFIG_H) \
784 $(FRAME_H) \
785 $(INTERVALS_H) \
786 $(LISP_H) \
787 $(SYSTIME_H) \
788 $(WINDOW_H)
789
790 $(BLD)/emacs.$(O) : \
791 $(SRC)/emacs.c \
792 $(SRC)/blockinput.h \
793 $(SRC)/commands.h \
794 $(SRC)/gnutls.h \
795 $(SRC)/keymap.h \
796 $(SRC)/unexec.h \
797 $(SRC)/w32.h \
798 $(SRC)/w32heap.h \
799 $(NT_INC)/sys/file.h \
800 $(NT_INC)/unistd.h \
801 $(GNU_LIB)/ignore-value.h \
802 $(ATIMER_H) \
803 $(BUFFER_H) \
804 $(CHARACTER_H) \
805 $(CONFIG_H) \
806 $(FRAME_H) \
807 $(INTERVALS_H) \
808 $(KEYBOARD_H) \
809 $(LISP_H) \
810 $(PROCESS_H) \
811 $(SYSSIGNAL_H) \
812 $(SYSTTY_H) \
813 $(TERMHOOKS_H) \
814 $(W32TERM_H) \
815 $(WINDOW_H)
816
817 $(BLD)/eval.$(O) : \
818 $(SRC)/eval.c \
819 $(SRC)/blockinput.h \
820 $(SRC)/commands.h \
821 $(CONFIG_H) \
822 $(DISPEXTERN_H) \
823 $(FRAME_H) \
824 $(KEYBOARD_H) \
825 $(LISP_H)
826
827 $(BLD)/fileio.$(O) : \
828 $(SRC)/fileio.c \
829 $(SRC)/blockinput.h \
830 $(SRC)/commands.h \
831 $(NT_INC)/pwd.h \
832 $(NT_INC)/sys/stat.h \
833 $(NT_INC)/unistd.h \
834 $(BUFFER_H) \
835 $(CHARACTER_H) \
836 $(CODING_H) \
837 $(CONFIG_H) \
838 $(C_CTYPE_H) \
839 $(DISPEXTERN_H) \
840 $(FRAME_H) \
841 $(INTERVALS_H) \
842 $(LISP_H) \
843 $(STAT_TIME_H) \
844 $(SYSTIME_H) \
845 $(WINDOW_H)
846
847 $(BLD)/filelock.$(O) : \
848 $(SRC)/filelock.c \
849 $(NT_INC)/pwd.h \
850 $(NT_INC)/sys/file.h \
851 $(NT_INC)/sys/stat.h \
852 $(NT_INC)/unistd.h \
853 $(BUFFER_H) \
854 $(CHARACTER_H) \
855 $(CODING_H) \
856 $(CONFIG_H) \
857 $(LISP_H) \
858 $(SYSTIME_H)
859
860 $(BLD)/firstfile.$(O) : \
861 $(SRC)/firstfile.c \
862 $(CONFIG_H)
863
864 $(BLD)/floatfns.$(O) : \
865 $(SRC)/floatfns.c \
866 $(CONFIG_H) \
867 $(LISP_H)
868
869 $(BLD)/fns.$(O) : \
870 $(SRC)/fns.c \
871 $(SRC)/blockinput.h \
872 $(SRC)/commands.h \
873 $(SRC)/keymap.h \
874 $(NT_INC)/unistd.h \
875 $(GNU_LIB)/intprops.h \
876 $(BUFFER_H) \
877 $(CHARACTER_H) \
878 $(CODING_H) \
879 $(CONFIG_H) \
880 $(FRAME_H) \
881 $(INTERVALS_H) \
882 $(KEYBOARD_H) \
883 $(LANGINFO_H) \
884 $(LISP_H) \
885 $(MD5_H) \
886 $(SHA1_H) \
887 $(SHA256_H) \
888 $(SHA512_H) \
889 $(WINDOW_H)
890
891 $(BLD)/font.$(O) : \
892 $(SRC)/font.c \
893 $(SRC)/composite.h \
894 $(SRC)/fontset.h \
895 $(BUFFER_H) \
896 $(CHARACTER_H) \
897 $(CHARSET_H) \
898 $(CONFIG_H) \
899 $(C_CTYPE_H) \
900 $(DISPEXTERN_H) \
901 $(FONT_H) \
902 $(FRAME_H) \
903 $(LISP_H) \
904 $(W32TERM_H) \
905 $(WINDOW_H)
906
907 $(BLD)/fontset.$(O) : \
908 $(SRC)/fontset.c \
909 $(SRC)/blockinput.h \
910 $(SRC)/fontset.h \
911 $(BUFFER_H) \
912 $(CCL_H) \
913 $(CHARACTER_H) \
914 $(CHARSET_H) \
915 $(CONFIG_H) \
916 $(DISPEXTERN_H) \
917 $(FONT_H) \
918 $(FRAME_H) \
919 $(INTERVALS_H) \
920 $(KEYBOARD_H) \
921 $(LISP_H) \
922 $(TERMHOOKS_H) \
923 $(W32TERM_H) \
924 $(WINDOW_H)
925
926 $(BLD)/frame.$(O) : \
927 $(SRC)/frame.c \
928 $(SRC)/blockinput.h \
929 $(SRC)/commands.h \
930 $(SRC)/fontset.h \
931 $(SRC)/termchar.h \
932 $(BUFFER_H) \
933 $(CHARACTER_H) \
934 $(CONFIG_H) \
935 $(C_CTYPE_H) \
936 $(DISPEXTERN_H) \
937 $(FONT_H) \
938 $(FRAME_H) \
939 $(KEYBOARD_H) \
940 $(LISP_H) \
941 $(TERMHOOKS_H) \
942 $(W32TERM_H) \
943 $(WINDOW_H)
944
945 $(BLD)/fringe.$(O) : \
946 $(SRC)/fringe.c \
947 $(SRC)/blockinput.h \
948 $(BUFFER_H) \
949 $(CHARACTER_H) \
950 $(CONFIG_H) \
951 $(DISPEXTERN_H) \
952 $(FRAME_H) \
953 $(LISP_H) \
954 $(TERMHOOKS_H) \
955 $(WINDOW_H)
956
957 $(BLD)/gmalloc.$(O) : \
958 $(SRC)/gmalloc.c \
959 $(SRC)/w32heap.h \
960 $(NT_INC)/stdint.h \
961 $(NT_INC)/unistd.h \
962 $(CONFIG_H)
963
964 $(BLD)/gnutls.$(O) : \
965 $(SRC)/gnutls.c \
966 $(SRC)/w32.h \
967 $(CONFIG_H) \
968 $(LISP_H) \
969 $(PROCESS_H)
970
971 $(BLD)/xml.$(O) : \
972 $(SRC)/xml.c \
973 $(SRC)/w32.h \
974 $(BUFFER_H) \
975 $(CHARACTER_H) \
976 $(CONFIG_H) \
977 $(LISP_H)
978
979 $(BLD)/profiler.$(O) : \
980 $(SRC)/profiler.c \
981 $(CONFIG_H) \
982 $(LISP_H) \
983 $(SYSSIGNAL_H) \
984 $(SYSTIME_H)
985
986 $(BLD)/image.$(O) : \
987 $(SRC)/image.c \
988 $(SRC)/blockinput.h \
989 $(SRC)/epaths.h \
990 $(SRC)/w32.h \
991 $(NT_INC)/unistd.h \
992 $(CHARACTER_H) \
993 $(CODING_H) \
994 $(CONFIG_H) \
995 $(C_CTYPE_H) \
996 $(DISPEXTERN_H) \
997 $(FONT_H) \
998 $(FRAME_H) \
999 $(LISP_H) \
1000 $(SYSTIME_H) \
1001 $(TERMHOOKS_H) \
1002 $(W32TERM_H) \
1003 $(WINDOW_H)
1004
1005 $(BLD)/indent.$(O) : \
1006 $(SRC)/indent.c \
1007 $(SRC)/category.h \
1008 $(SRC)/composite.h \
1009 $(SRC)/disptab.h \
1010 $(SRC)/indent.h \
1011 $(SRC)/region-cache.h \
1012 $(SRC)/termchar.h \
1013 $(SRC)/termopts.h \
1014 $(BUFFER_H) \
1015 $(CHARACTER_H) \
1016 $(CONFIG_H) \
1017 $(DISPEXTERN_H) \
1018 $(FRAME_H) \
1019 $(INTERVALS_H) \
1020 $(KEYBOARD_H) \
1021 $(LISP_H) \
1022 $(WINDOW_H)
1023
1024 $(BLD)/insdel.$(O) : \
1025 $(SRC)/insdel.c \
1026 $(SRC)/blockinput.h \
1027 $(SRC)/region-cache.h \
1028 $(GNU_LIB)/intprops.h \
1029 $(BUFFER_H) \
1030 $(CHARACTER_H) \
1031 $(CONFIG_H) \
1032 $(INTERVALS_H) \
1033 $(LISP_H) \
1034 $(WINDOW_H)
1035
1036 $(BLD)/intervals.$(O) : \
1037 $(SRC)/intervals.c \
1038 $(SRC)/keymap.h \
1039 $(SRC)/puresize.h \
1040 $(GNU_LIB)/intprops.h \
1041 $(BUFFER_H) \
1042 $(CHARACTER_H) \
1043 $(CONFIG_H) \
1044 $(INTERVALS_H) \
1045 $(KEYBOARD_H) \
1046 $(LISP_H)
1047
1048 $(BLD)/keyboard.$(O) : \
1049 $(SRC)/keyboard.c \
1050 $(SRC)/blockinput.h \
1051 $(SRC)/commands.h \
1052 $(SRC)/disptab.h \
1053 $(SRC)/keymap.h \
1054 $(SRC)/macros.h \
1055 $(SRC)/puresize.h \
1056 $(SRC)/syntax.h \
1057 $(SRC)/termchar.h \
1058 $(SRC)/termopts.h \
1059 $(NT_INC)/sys/ioctl.h \
1060 $(NT_INC)/unistd.h \
1061 $(ATIMER_H) \
1062 $(BUFFER_H) \
1063 $(CHARACTER_H) \
1064 $(CONFIG_H) \
1065 $(DISPEXTERN_H) \
1066 $(FRAME_H) \
1067 $(INTERVALS_H) \
1068 $(KEYBOARD_H) \
1069 $(LISP_H) \
1070 $(PROCESS_H) \
1071 $(SYSSIGNAL_H) \
1072 $(SYSTIME_H) \
1073 $(TERMHOOKS_H) \
1074 $(W32TERM_H) \
1075 $(WINDOW_H)
1076
1077 $(BLD)/keymap.$(O) : \
1078 $(SRC)/keymap.c \
1079 $(SRC)/blockinput.h \
1080 $(SRC)/commands.h \
1081 $(SRC)/keymap.h \
1082 $(SRC)/puresize.h \
1083 $(BUFFER_H) \
1084 $(CHARACTER_H) \
1085 $(CHARSET_H) \
1086 $(CONFIG_H) \
1087 $(FRAME_H) \
1088 $(INTERVALS_H) \
1089 $(KEYBOARD_H) \
1090 $(LISP_H) \
1091 $(TERMHOOKS_H) \
1092 $(WINDOW_H)
1093
1094 $(BLD)/lastfile.$(O) : \
1095 $(SRC)/lastfile.c \
1096 $(CONFIG_H)
1097
1098 $(BLD)/lread.$(O) : \
1099 $(SRC)/lread.c \
1100 $(SRC)/blockinput.h \
1101 $(SRC)/commands.h \
1102 $(SRC)/epaths.h \
1103 $(NT_INC)/sys/file.h \
1104 $(NT_INC)/sys/stat.h \
1105 $(NT_INC)/unistd.h \
1106 $(BUFFER_H) \
1107 $(CHARACTER_H) \
1108 $(CHARSET_H) \
1109 $(CODING_H) \
1110 $(CONFIG_H) \
1111 $(FRAME_H) \
1112 $(INTERVALS_H) \
1113 $(KEYBOARD_H) \
1114 $(LISP_H) \
1115 $(STAT_TIME_H) \
1116 $(TERMHOOKS_H)
1117
1118 $(BLD)/macros.$(O) : \
1119 $(SRC)/macros.c \
1120 $(SRC)/commands.h \
1121 $(SRC)/macros.h \
1122 $(BUFFER_H) \
1123 $(CHARACTER_H) \
1124 $(CONFIG_H) \
1125 $(KEYBOARD_H) \
1126 $(LISP_H) \
1127 $(WINDOW_H)
1128
1129 $(BLD)/marker.$(O) : \
1130 $(SRC)/marker.c \
1131 $(BUFFER_H) \
1132 $(CHARACTER_H) \
1133 $(CONFIG_H) \
1134 $(LISP_H)
1135
1136 $(BLD)/menu.$(O) : \
1137 $(SRC)/menu.c \
1138 $(SRC)/blockinput.h \
1139 $(SRC)/keymap.h \
1140 $(CONFIG_H) \
1141 $(DISPEXTERN_H) \
1142 $(FRAME_H) \
1143 $(KEYBOARD_H) \
1144 $(LISP_H) \
1145 $(MENU_H) \
1146 $(TERMHOOKS_H) \
1147 $(W32TERM_H) \
1148 $(WINDOW_H)
1149
1150 $(BLD)/minibuf.$(O) : \
1151 $(SRC)/minibuf.c \
1152 $(SRC)/commands.h \
1153 $(SRC)/keymap.h \
1154 $(SRC)/syntax.h \
1155 $(BUFFER_H) \
1156 $(CHARACTER_H) \
1157 $(CONFIG_H) \
1158 $(DISPEXTERN_H) \
1159 $(FRAME_H) \
1160 $(INTERVALS_H) \
1161 $(KEYBOARD_H) \
1162 $(LISP_H) \
1163 $(TERMHOOKS_H) \
1164 $(WINDOW_H)
1165
1166 $(BLD)/w32.$(O) : \
1167 $(SRC)/w32.c \
1168 $(SRC)/ndir.h \
1169 $(SRC)/w32.h \
1170 $(SRC)/w32heap.h \
1171 $(NT_INC)/pwd.h \
1172 $(NT_INC)/sys/file.h \
1173 $(NT_INC)/sys/time.h \
1174 $(GNU_LIB)/allocator.h \
1175 $(CAREADLINKAT_H) \
1176 $(CODING_H) \
1177 $(CONFIG_H) \
1178 $(DISPEXTERN_H) \
1179 $(GRP_H) \
1180 $(LISP_H) \
1181 $(PROCESS_H) \
1182 $(SOCKET_H) \
1183 $(SYSTIME_H)
1184
1185 $(BLD)/w32heap.$(O) : \
1186 $(SRC)/w32heap.c \
1187 $(SRC)/w32heap.h \
1188 $(CONFIG_H) \
1189 $(LISP_H)
1190
1191 $(BLD)/w32inevt.$(O) : \
1192 $(SRC)/w32inevt.c \
1193 $(SRC)/blockinput.h \
1194 $(SRC)/termchar.h \
1195 $(SRC)/w32heap.h \
1196 $(SRC)/w32inevt.h \
1197 $(CONFIG_H) \
1198 $(DISPEXTERN_H) \
1199 $(FRAME_H) \
1200 $(KEYBOARD_H) \
1201 $(LISP_H) \
1202 $(TERMHOOKS_H) \
1203 $(W32TERM_H) \
1204 $(WINDOW_H)
1205
1206 $(BLD)/w32proc.$(O) : \
1207 $(SRC)/w32proc.c \
1208 $(SRC)/syswait.h \
1209 $(SRC)/w32.h \
1210 $(SRC)/w32heap.h \
1211 $(NT_INC)/nl_types.h \
1212 $(NT_INC)/sys/file.h \
1213 $(CODING_H) \
1214 $(CONFIG_H) \
1215 $(DISPEXTERN_H) \
1216 $(LANGINFO_H) \
1217 $(LISP_H) \
1218 $(PROCESS_H) \
1219 $(SYSSIGNAL_H) \
1220 $(SYSTIME_H) \
1221 $(W32TERM_H)
1222
1223 $(BLD)/w32console.$(O) : \
1224 $(SRC)/w32console.c \
1225 $(SRC)/disptab.h \
1226 $(SRC)/termchar.h \
1227 $(SRC)/w32heap.h \
1228 $(SRC)/w32inevt.h \
1229 $(CHARACTER_H) \
1230 $(CODING_H) \
1231 $(CONFIG_H) \
1232 $(DISPEXTERN_H) \
1233 $(FRAME_H) \
1234 $(LISP_H) \
1235 $(TERMHOOKS_H) \
1236 $(WINDOW_H)
1237
1238 $(BLD)/print.$(O) : \
1239 $(SRC)/print.c \
1240 $(SRC)/blockinput.h \
1241 $(SRC)/termchar.h \
1242 $(BUFFER_H) \
1243 $(CHARACTER_H) \
1244 $(CHARSET_H) \
1245 $(CONFIG_H) \
1246 $(DISPEXTERN_H) \
1247 $(FONT_H) \
1248 $(FRAME_H) \
1249 $(FTOASTR_H) \
1250 $(INTERVALS_H) \
1251 $(KEYBOARD_H) \
1252 $(LISP_H) \
1253 $(PROCESS_H) \
1254 $(TERMHOOKS_H) \
1255 $(WINDOW_H)
1256
1257 $(BLD)/process.$(O) : \
1258 $(SRC)/process.c \
1259 $(SRC)/blockinput.h \
1260 $(SRC)/commands.h \
1261 $(SRC)/composite.h \
1262 $(SRC)/gnutls.h \
1263 $(SRC)/sysselect.h \
1264 $(SRC)/syswait.h \
1265 $(SRC)/termopts.h \
1266 $(NT_INC)/arpa/inet.h \
1267 $(NT_INC)/netdb.h \
1268 $(NT_INC)/netinet/in.h \
1269 $(NT_INC)/sys/file.h \
1270 $(NT_INC)/sys/ioctl.h \
1271 $(NT_INC)/sys/stat.h \
1272 $(NT_INC)/unistd.h \
1273 $(ATIMER_H) \
1274 $(BUFFER_H) \
1275 $(CHARACTER_H) \
1276 $(CODING_H) \
1277 $(CONFIG_H) \
1278 $(DISPEXTERN_H) \
1279 $(FRAME_H) \
1280 $(KEYBOARD_H) \
1281 $(LISP_H) \
1282 $(PROCESS_H) \
1283 $(SOCKET_H) \
1284 $(SYSSIGNAL_H) \
1285 $(SYSTIME_H) \
1286 $(SYSTTY_H) \
1287 $(TERMHOOKS_H) \
1288 $(W32TERM_H) \
1289 $(WINDOW_H)
1290
1291 $(BLD)/ralloc.$(O) : \
1292 $(SRC)/ralloc.c \
1293 $(SRC)/blockinput.h \
1294 $(SRC)/getpagesize.h \
1295 $(NT_INC)/unistd.h \
1296 $(CONFIG_H) \
1297 $(LISP_H)
1298
1299 $(BLD)/regex.$(O) : \
1300 $(SRC)/regex.c \
1301 $(SRC)/category.h \
1302 $(SRC)/regex.h \
1303 $(SRC)/syntax.h \
1304 $(BUFFER_H) \
1305 $(CHARACTER_H) \
1306 $(CONFIG_H) \
1307 $(LISP_H)
1308
1309 $(BLD)/region-cache.$(O) : \
1310 $(SRC)/region-cache.c \
1311 $(SRC)/region-cache.h \
1312 $(BUFFER_H) \
1313 $(CHARACTER_H) \
1314 $(CONFIG_H) \
1315 $(LISP_H)
1316
1317 $(BLD)/scroll.$(O) : \
1318 $(SRC)/scroll.c \
1319 $(SRC)/termchar.h \
1320 $(CONFIG_H) \
1321 $(DISPEXTERN_H) \
1322 $(FRAME_H) \
1323 $(KEYBOARD_H) \
1324 $(LISP_H) \
1325 $(TERMHOOKS_H) \
1326 $(WINDOW_H)
1327
1328 $(BLD)/search.$(O) : \
1329 $(SRC)/search.c \
1330 $(SRC)/blockinput.h \
1331 $(SRC)/category.h \
1332 $(SRC)/commands.h \
1333 $(SRC)/regex.h \
1334 $(SRC)/region-cache.h \
1335 $(SRC)/syntax.h \
1336 $(BUFFER_H) \
1337 $(CHARACTER_H) \
1338 $(CHARSET_H) \
1339 $(CONFIG_H) \
1340 $(INTERVALS_H) \
1341 $(LISP_H)
1342
1343 $(BLD)/sound.$(O) : \
1344 $(SRC)/sound.c \
1345 $(NT_INC)/unistd.h \
1346 $(ATIMER_H) \
1347 $(CONFIG_H) \
1348 $(DISPEXTERN_H) \
1349 $(LISP_H) \
1350 $(SYSSIGNAL_H)
1351
1352 $(BLD)/syntax.$(O) : \
1353 $(SRC)/syntax.c \
1354 $(SRC)/category.h \
1355 $(SRC)/commands.h \
1356 $(SRC)/keymap.h \
1357 $(SRC)/regex.h \
1358 $(SRC)/syntax.h \
1359 $(BUFFER_H) \
1360 $(CHARACTER_H) \
1361 $(CONFIG_H) \
1362 $(INTERVALS_H) \
1363 $(LISP_H)
1364
1365 $(BLD)/sysdep.$(O) : \
1366 $(SRC)/sysdep.c \
1367 $(SRC)/blockinput.h \
1368 $(SRC)/cm.h \
1369 $(SRC)/sysselect.h \
1370 $(SRC)/syswait.h \
1371 $(SRC)/termchar.h \
1372 $(SRC)/termopts.h \
1373 $(NT_INC)/netdb.h \
1374 $(NT_INC)/pwd.h \
1375 $(NT_INC)/sys/file.h \
1376 $(NT_INC)/sys/stat.h \
1377 $(NT_INC)/unistd.h \
1378 $(GNU_LIB)/allocator.h \
1379 $(GNU_LIB)/execinfo.h \
1380 $(GNU_LIB)/ignore-value.h \
1381 $(GNU_LIB)/utimens.h \
1382 $(CAREADLINKAT_H) \
1383 $(CONFIG_H) \
1384 $(C_CTYPE_H) \
1385 $(DISPEXTERN_H) \
1386 $(FRAME_H) \
1387 $(GRP_H) \
1388 $(KEYBOARD_H) \
1389 $(LISP_H) \
1390 $(PROCESS_H) \
1391 $(SOCKET_H) \
1392 $(SYSSIGNAL_H) \
1393 $(SYSTIME_H) \
1394 $(SYSTTY_H) \
1395 $(TERMHOOKS_H) \
1396 $(WINDOW_H)
1397
1398 $(BLD)/term.$(O) : \
1399 $(SRC)/term.c \
1400 $(SRC)/blockinput.h \
1401 $(SRC)/cm.h \
1402 $(SRC)/composite.h \
1403 $(SRC)/disptab.h \
1404 $(SRC)/keymap.h \
1405 $(SRC)/termchar.h \
1406 $(SRC)/termopts.h \
1407 $(SRC)/tparam.h \
1408 $(NT_INC)/sys/file.h \
1409 $(NT_INC)/sys/time.h \
1410 $(NT_INC)/unistd.h \
1411 $(BUFFER_H) \
1412 $(CHARACTER_H) \
1413 $(CHARSET_H) \
1414 $(CODING_H) \
1415 $(CONFIG_H) \
1416 $(DISPEXTERN_H) \
1417 $(FRAME_H) \
1418 $(INTERVALS_H) \
1419 $(KEYBOARD_H) \
1420 $(LISP_H) \
1421 $(SYSSIGNAL_H) \
1422 $(SYSTTY_H) \
1423 $(TERMHOOKS_H) \
1424 $(WINDOW_H)
1425
1426 $(BLD)/terminal.$(O) : \
1427 $(SRC)/terminal.c \
1428 $(SRC)/termchar.h \
1429 $(CHARSET_H) \
1430 $(CODING_H) \
1431 $(CONFIG_H) \
1432 $(FRAME_H) \
1433 $(KEYBOARD_H) \
1434 $(LISP_H) \
1435 $(TERMHOOKS_H)
1436
1437 $(BLD)/textprop.$(O) : \
1438 $(SRC)/textprop.c \
1439 $(BUFFER_H) \
1440 $(CHARACTER_H) \
1441 $(CONFIG_H) \
1442 $(INTERVALS_H) \
1443 $(LISP_H) \
1444 $(WINDOW_H)
1445
1446 $(BLD)/tparam.$(O) : \
1447 $(SRC)/tparam.c \
1448 $(SRC)/tparam.h \
1449 $(CONFIG_H) \
1450 $(LISP_H)
1451
1452 $(BLD)/undo.$(O) : \
1453 $(SRC)/undo.c \
1454 $(SRC)/commands.h \
1455 $(BUFFER_H) \
1456 $(CHARACTER_H) \
1457 $(CONFIG_H) \
1458 $(LISP_H) \
1459 $(WINDOW_H)
1460
1461 $(BLD)/unexw32.$(O) : \
1462 $(SRC)/unexw32.c \
1463 $(SRC)/unexec.h \
1464 $(SRC)/w32heap.h \
1465 $(CONFIG_H)
1466
1467 $(BLD)/vm-limit.$(O) : \
1468 $(SRC)/vm-limit.c \
1469 $(SRC)/mem-limits.h \
1470 $(NT_INC)/unistd.h \
1471 $(CONFIG_H) \
1472 $(LISP_H)
1473
1474 $(BLD)/window.$(O) : \
1475 $(SRC)/window.c \
1476 $(SRC)/blockinput.h \
1477 $(SRC)/commands.h \
1478 $(SRC)/disptab.h \
1479 $(SRC)/indent.h \
1480 $(SRC)/keymap.h \
1481 $(SRC)/termchar.h \
1482 $(BUFFER_H) \
1483 $(CHARACTER_H) \
1484 $(CONFIG_H) \
1485 $(DISPEXTERN_H) \
1486 $(FRAME_H) \
1487 $(INTERVALS_H) \
1488 $(KEYBOARD_H) \
1489 $(LISP_H) \
1490 $(TERMHOOKS_H) \
1491 $(W32TERM_H) \
1492 $(WINDOW_H)
1493
1494 $(BLD)/xdisp.$(O) : \
1495 $(SRC)/xdisp.c \
1496 $(SRC)/blockinput.h \
1497 $(SRC)/commands.h \
1498 $(SRC)/disptab.h \
1499 $(SRC)/fontset.h \
1500 $(SRC)/indent.h \
1501 $(SRC)/keymap.h \
1502 $(SRC)/macros.h \
1503 $(SRC)/region-cache.h \
1504 $(SRC)/termchar.h \
1505 $(SRC)/termopts.h \
1506 $(ATIMER_H) \
1507 $(BUFFER_H) \
1508 $(CHARACTER_H) \
1509 $(CHARSET_H) \
1510 $(CODING_H) \
1511 $(CONFIG_H) \
1512 $(DISPEXTERN_H) \
1513 $(FONT_H) \
1514 $(FRAME_H) \
1515 $(INTERVALS_H) \
1516 $(KEYBOARD_H) \
1517 $(LISP_H) \
1518 $(PROCESS_H) \
1519 $(TERMHOOKS_H) \
1520 $(W32TERM_H) \
1521 $(WINDOW_H)
1522
1523 $(BLD)/xfaces.$(O) : \
1524 $(SRC)/xfaces.c \
1525 $(SRC)/blockinput.h \
1526 $(SRC)/fontset.h \
1527 $(SRC)/termchar.h \
1528 $(NT_INC)/sys/stat.h \
1529 $(BUFFER_H) \
1530 $(CHARACTER_H) \
1531 $(CHARSET_H) \
1532 $(CONFIG_H) \
1533 $(C_CTYPE_H) \
1534 $(DISPEXTERN_H) \
1535 $(FONT_H) \
1536 $(FRAME_H) \
1537 $(INTERVALS_H) \
1538 $(KEYBOARD_H) \
1539 $(LISP_H) \
1540 $(TERMHOOKS_H) \
1541 $(W32TERM_H) \
1542 $(WINDOW_H)
1543
1544 $(BLD)/w32fns.$(O) : \
1545 $(SRC)/w32fns.c \
1546 $(SRC)/blockinput.h \
1547 $(SRC)/epaths.h \
1548 $(SRC)/fontset.h \
1549 $(SRC)/w32.h \
1550 $(SRC)/w32heap.h \
1551 $(BUFFER_H) \
1552 $(CCL_H) \
1553 $(CHARACTER_H) \
1554 $(CHARSET_H) \
1555 $(CODING_H) \
1556 $(CONFIG_H) \
1557 $(DISPEXTERN_H) \
1558 $(FONT_H) \
1559 $(FRAME_H) \
1560 $(INTERVALS_H) \
1561 $(KEYBOARD_H) \
1562 $(LISP_H) \
1563 $(SYSTIME_H) \
1564 $(TERMHOOKS_H) \
1565 $(W32FONT_H) \
1566 $(W32TERM_H) \
1567 $(WINDOW_H)
1568
1569 $(BLD)/w32menu.$(O) : \
1570 $(SRC)/w32menu.c \
1571 $(SRC)/blockinput.h \
1572 $(SRC)/keymap.h \
1573 $(SRC)/w32heap.h \
1574 $(BUFFER_H) \
1575 $(CHARACTER_H) \
1576 $(CHARSET_H) \
1577 $(CODING_H) \
1578 $(CONFIG_H) \
1579 $(DISPEXTERN_H) \
1580 $(FRAME_H) \
1581 $(KEYBOARD_H) \
1582 $(LISP_H) \
1583 $(MENU_H) \
1584 $(TERMHOOKS_H) \
1585 $(W32TERM_H) \
1586 $(WINDOW_H)
1587
1588 $(BLD)/w32term.$(O) : \
1589 $(SRC)/w32term.c \
1590 $(SRC)/blockinput.h \
1591 $(SRC)/disptab.h \
1592 $(SRC)/fontset.h \
1593 $(SRC)/keymap.h \
1594 $(SRC)/termchar.h \
1595 $(SRC)/termopts.h \
1596 $(SRC)/w32heap.h \
1597 $(NT_INC)/sys/stat.h \
1598 $(ATIMER_H) \
1599 $(BUFFER_H) \
1600 $(CCL_H) \
1601 $(CHARACTER_H) \
1602 $(CHARSET_H) \
1603 $(CODING_H) \
1604 $(CONFIG_H) \
1605 $(DISPEXTERN_H) \
1606 $(FONT_H) \
1607 $(FRAME_H) \
1608 $(INTERVALS_H) \
1609 $(KEYBOARD_H) \
1610 $(LISP_H) \
1611 $(PROCESS_H) \
1612 $(SYSTIME_H) \
1613 $(SYSTTY_H) \
1614 $(TERMHOOKS_H) \
1615 $(W32FONT_H) \
1616 $(W32TERM_H) \
1617 $(WINDOW_H)
1618
1619 $(BLD)/w32select.$(O) : \
1620 $(SRC)/w32select.c \
1621 $(SRC)/blockinput.h \
1622 $(SRC)/composite.h \
1623 $(SRC)/w32heap.h \
1624 $(CHARSET_H) \
1625 $(CODING_H) \
1626 $(CONFIG_H) \
1627 $(LISP_H) \
1628 $(W32TERM_H)
1629
1630 $(BLD)/w32reg.$(O) : \
1631 $(SRC)/w32reg.c \
1632 $(SRC)/blockinput.h \
1633 $(CONFIG_H) \
1634 $(LISP_H) \
1635 $(W32TERM_H)
1636
1637 $(BLD)/w32xfns.$(O) : \
1638 $(SRC)/w32xfns.c \
1639 $(SRC)/blockinput.h \
1640 $(SRC)/fontset.h \
1641 $(CHARSET_H) \
1642 $(CONFIG_H) \
1643 $(FRAME_H) \
1644 $(KEYBOARD_H) \
1645 $(LISP_H) \
1646 $(W32TERM_H)
1647
1648 $(BLD)/w32font.$(O) : \
1649 $(SRC)/w32font.c \
1650 $(SRC)/fontset.h \
1651 $(CHARACTER_H) \
1652 $(CHARSET_H) \
1653 $(CODING_H) \
1654 $(CONFIG_H) \
1655 $(DISPEXTERN_H) \
1656 $(FONT_H) \
1657 $(FRAME_H) \
1658 $(LISP_H) \
1659 $(W32FONT_H) \
1660 $(W32TERM_H)
1661
1662 $(BLD)/w32uniscribe.$(O) : \
1663 $(SRC)/w32uniscribe.c \
1664 $(SRC)/composite.h \
1665 $(SRC)/fontset.h \
1666 $(CHARACTER_H) \
1667 $(CHARSET_H) \
1668 $(CONFIG_H) \
1669 $(DISPEXTERN_H) \
1670 $(FONT_H) \
1671 $(FRAME_H) \
1672 $(LISP_H) \
1673 $(W32FONT_H) \
1674 $(W32TERM_H)
1675
1676 # Each object file depends on stamp_BLD, because in parallel builds we must
1677 # make sure $(BLD) exists before starting compilations.
1678 #
1679 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD