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