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