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