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