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