Don't use the abbreviation "win" to refer to Windows (Bug#10421).
[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 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 $(GNU_LIB)/verify.h \
787 $(BLOCKINPUT_H) \
788 $(BUFFER_H) \
789 $(CHARACTER_H) \
790 $(CONFIG_H) \
791 $(FRAME_H) \
792 $(INTERVALS_H) \
793 $(KEYBOARD_H) \
794 $(LISP_H) \
795 $(PROCESS_H) \
796 $(SYSTTY_H) \
797 $(TERMHOOKS_H) \
798 $(WINDOW_H)
799
800 $(BLD)/eval.$(O) : \
801 $(SRC)/eval.c \
802 $(SRC)/commands.h \
803 $(BLOCKINPUT_H) \
804 $(CONFIG_H) \
805 $(DISPEXTERN_H) \
806 $(FRAME_H) \
807 $(KEYBOARD_H) \
808 $(LISP_H)
809
810 $(BLD)/fileio.$(O) : \
811 $(SRC)/fileio.c \
812 $(SRC)/commands.h \
813 $(NT_INC)/pwd.h \
814 $(NT_INC)/sys/stat.h \
815 $(NT_INC)/unistd.h \
816 $(BLOCKINPUT_H) \
817 $(BUFFER_H) \
818 $(CHARACTER_H) \
819 $(CODING_H) \
820 $(CONFIG_H) \
821 $(DISPEXTERN_H) \
822 $(FRAME_H) \
823 $(INTERVALS_H) \
824 $(LISP_H) \
825 $(STAT_TIME_H) \
826 $(SYSTIME_H) \
827 $(WINDOW_H)
828
829 $(BLD)/filelock.$(O) : \
830 $(SRC)/filelock.c \
831 $(NT_INC)/pwd.h \
832 $(NT_INC)/sys/file.h \
833 $(NT_INC)/sys/stat.h \
834 $(NT_INC)/unistd.h \
835 $(BUFFER_H) \
836 $(CHARACTER_H) \
837 $(CODING_H) \
838 $(CONFIG_H) \
839 $(LISP_H) \
840 $(SYSTIME_H)
841
842 $(BLD)/firstfile.$(O) : \
843 $(SRC)/firstfile.c \
844 $(CONFIG_H)
845
846 $(BLD)/floatfns.$(O) : \
847 $(SRC)/floatfns.c \
848 $(SRC)/syssignal.h \
849 $(CONFIG_H) \
850 $(LISP_H)
851
852 $(BLD)/fns.$(O) : \
853 $(SRC)/fns.c \
854 $(SRC)/commands.h \
855 $(SRC)/keymap.h \
856 $(NT_INC)/unistd.h \
857 $(GNU_LIB)/intprops.h \
858 $(BLOCKINPUT_H) \
859 $(BUFFER_H) \
860 $(CHARACTER_H) \
861 $(CODING_H) \
862 $(CONFIG_H) \
863 $(FRAME_H) \
864 $(INTERVALS_H) \
865 $(KEYBOARD_H) \
866 $(LANGINFO_H) \
867 $(LISP_H) \
868 $(MD5_H) \
869 $(SHA1_H) \
870 $(SHA256_H) \
871 $(SHA512_H) \
872 $(WINDOW_H)
873
874 $(BLD)/font.$(O) : \
875 $(SRC)/font.c \
876 $(SRC)/composite.h \
877 $(SRC)/fontset.h \
878 $(BUFFER_H) \
879 $(CHARACTER_H) \
880 $(CHARSET_H) \
881 $(CONFIG_H) \
882 $(DISPEXTERN_H) \
883 $(FONT_H) \
884 $(FRAME_H) \
885 $(LISP_H) \
886 $(W32TERM_H) \
887 $(WINDOW_H)
888
889 $(BLD)/fontset.$(O) : \
890 $(SRC)/fontset.c \
891 $(SRC)/ccl.h \
892 $(SRC)/fontset.h \
893 $(BLOCKINPUT_H) \
894 $(BUFFER_H) \
895 $(CHARACTER_H) \
896 $(CHARSET_H) \
897 $(CONFIG_H) \
898 $(DISPEXTERN_H) \
899 $(FONT_H) \
900 $(FRAME_H) \
901 $(INTERVALS_H) \
902 $(KEYBOARD_H) \
903 $(LISP_H) \
904 $(TERMHOOKS_H) \
905 $(W32TERM_H) \
906 $(WINDOW_H)
907
908 $(BLD)/frame.$(O) : \
909 $(SRC)/frame.c \
910 $(SRC)/commands.h \
911 $(SRC)/fontset.h \
912 $(SRC)/termchar.h \
913 $(BLOCKINPUT_H) \
914 $(BUFFER_H) \
915 $(CHARACTER_H) \
916 $(CONFIG_H) \
917 $(DISPEXTERN_H) \
918 $(FONT_H) \
919 $(FRAME_H) \
920 $(KEYBOARD_H) \
921 $(LISP_H) \
922 $(TERMHOOKS_H) \
923 $(W32TERM_H) \
924 $(WINDOW_H)
925
926 $(BLD)/fringe.$(O) : \
927 $(SRC)/fringe.c \
928 $(BLOCKINPUT_H) \
929 $(BUFFER_H) \
930 $(CHARACTER_H) \
931 $(CONFIG_H) \
932 $(DISPEXTERN_H) \
933 $(FRAME_H) \
934 $(LISP_H) \
935 $(TERMHOOKS_H) \
936 $(WINDOW_H)
937
938 $(BLD)/gmalloc.$(O) : \
939 $(SRC)/gmalloc.c \
940 $(NT_INC)/stdint.h \
941 $(NT_INC)/unistd.h \
942 $(CONFIG_H)
943
944 $(BLD)/gnutls.$(O) : \
945 $(SRC)/gnutls.c \
946 $(SRC)/w32.h \
947 $(CONFIG_H) \
948 $(LISP_H) \
949 $(PROCESS_H)
950
951 $(BLD)/xml.$(O) : \
952 $(SRC)/xml.c \
953 $(SRC)/w32.h \
954 $(BUFFER_H) \
955 $(CHARACTER_H) \
956 $(CONFIG_H) \
957 $(LISP_H)
958
959 $(BLD)/image.$(O) : \
960 $(SRC)/image.c \
961 $(SRC)/epaths.h \
962 $(SRC)/w32.h \
963 $(NT_INC)/unistd.h \
964 $(BLOCKINPUT_H) \
965 $(CHARACTER_H) \
966 $(CODING_H) \
967 $(CONFIG_H) \
968 $(DISPEXTERN_H) \
969 $(FONT_H) \
970 $(FRAME_H) \
971 $(LISP_H) \
972 $(SYSTIME_H) \
973 $(TERMHOOKS_H) \
974 $(W32TERM_H) \
975 $(WINDOW_H)
976
977 $(BLD)/indent.$(O) : \
978 $(SRC)/indent.c \
979 $(SRC)/category.h \
980 $(SRC)/composite.h \
981 $(SRC)/disptab.h \
982 $(SRC)/indent.h \
983 $(SRC)/region-cache.h \
984 $(SRC)/termchar.h \
985 $(SRC)/termopts.h \
986 $(BUFFER_H) \
987 $(CHARACTER_H) \
988 $(CONFIG_H) \
989 $(DISPEXTERN_H) \
990 $(FRAME_H) \
991 $(INTERVALS_H) \
992 $(KEYBOARD_H) \
993 $(LISP_H) \
994 $(WINDOW_H)
995
996 $(BLD)/insdel.$(O) : \
997 $(SRC)/insdel.c \
998 $(SRC)/region-cache.h \
999 $(GNU_LIB)/intprops.h \
1000 $(BLOCKINPUT_H) \
1001 $(BUFFER_H) \
1002 $(CHARACTER_H) \
1003 $(CONFIG_H) \
1004 $(INTERVALS_H) \
1005 $(LISP_H) \
1006 $(WINDOW_H)
1007
1008 $(BLD)/intervals.$(O) : \
1009 $(SRC)/intervals.c \
1010 $(SRC)/keymap.h \
1011 $(SRC)/puresize.h \
1012 $(GNU_LIB)/intprops.h \
1013 $(BUFFER_H) \
1014 $(CHARACTER_H) \
1015 $(CONFIG_H) \
1016 $(INTERVALS_H) \
1017 $(KEYBOARD_H) \
1018 $(LISP_H)
1019
1020 $(BLD)/keyboard.$(O) : \
1021 $(SRC)/keyboard.c \
1022 $(SRC)/commands.h \
1023 $(SRC)/disptab.h \
1024 $(SRC)/keymap.h \
1025 $(SRC)/macros.h \
1026 $(SRC)/puresize.h \
1027 $(SRC)/syntax.h \
1028 $(SRC)/syssignal.h \
1029 $(SRC)/termchar.h \
1030 $(SRC)/termopts.h \
1031 $(NT_INC)/sys/ioctl.h \
1032 $(NT_INC)/unistd.h \
1033 $(ATIMER_H) \
1034 $(BLOCKINPUT_H) \
1035 $(BUFFER_H) \
1036 $(CHARACTER_H) \
1037 $(CONFIG_H) \
1038 $(DISPEXTERN_H) \
1039 $(FRAME_H) \
1040 $(INTERVALS_H) \
1041 $(KEYBOARD_H) \
1042 $(LISP_H) \
1043 $(PROCESS_H) \
1044 $(SYSTIME_H) \
1045 $(TERMHOOKS_H) \
1046 $(W32TERM_H) \
1047 $(WINDOW_H)
1048
1049 $(BLD)/keymap.$(O) : \
1050 $(SRC)/keymap.c \
1051 $(SRC)/commands.h \
1052 $(SRC)/keymap.h \
1053 $(SRC)/puresize.h \
1054 $(BLOCKINPUT_H) \
1055 $(BUFFER_H) \
1056 $(CHARACTER_H) \
1057 $(CHARSET_H) \
1058 $(CONFIG_H) \
1059 $(FRAME_H) \
1060 $(INTERVALS_H) \
1061 $(KEYBOARD_H) \
1062 $(LISP_H) \
1063 $(TERMHOOKS_H) \
1064 $(WINDOW_H)
1065
1066 $(BLD)/lastfile.$(O) : \
1067 $(SRC)/lastfile.c \
1068 $(CONFIG_H)
1069
1070 $(BLD)/lread.$(O) : \
1071 $(SRC)/lread.c \
1072 $(SRC)/commands.h \
1073 $(SRC)/epaths.h \
1074 $(NT_INC)/sys/file.h \
1075 $(NT_INC)/sys/stat.h \
1076 $(NT_INC)/unistd.h \
1077 $(BLOCKINPUT_H) \
1078 $(BUFFER_H) \
1079 $(CHARACTER_H) \
1080 $(CHARSET_H) \
1081 $(CODING_H) \
1082 $(CONFIG_H) \
1083 $(FRAME_H) \
1084 $(INTERVALS_H) \
1085 $(KEYBOARD_H) \
1086 $(LISP_H) \
1087 $(STAT_TIME_H) \
1088 $(TERMHOOKS_H)
1089
1090 $(BLD)/macros.$(O) : \
1091 $(SRC)/macros.c \
1092 $(SRC)/commands.h \
1093 $(SRC)/macros.h \
1094 $(BUFFER_H) \
1095 $(CHARACTER_H) \
1096 $(CONFIG_H) \
1097 $(KEYBOARD_H) \
1098 $(LISP_H) \
1099 $(WINDOW_H)
1100
1101 $(BLD)/marker.$(O) : \
1102 $(SRC)/marker.c \
1103 $(BUFFER_H) \
1104 $(CHARACTER_H) \
1105 $(CONFIG_H) \
1106 $(LISP_H)
1107
1108 $(BLD)/menu.$(O) : \
1109 $(SRC)/menu.c \
1110 $(SRC)/keymap.h \
1111 $(BLOCKINPUT_H) \
1112 $(CONFIG_H) \
1113 $(DISPEXTERN_H) \
1114 $(FRAME_H) \
1115 $(KEYBOARD_H) \
1116 $(LISP_H) \
1117 $(MENU_H) \
1118 $(TERMHOOKS_H) \
1119 $(W32TERM_H) \
1120 $(WINDOW_H)
1121
1122 $(BLD)/minibuf.$(O) : \
1123 $(SRC)/minibuf.c \
1124 $(SRC)/commands.h \
1125 $(SRC)/keymap.h \
1126 $(SRC)/syntax.h \
1127 $(BUFFER_H) \
1128 $(CHARACTER_H) \
1129 $(CONFIG_H) \
1130 $(DISPEXTERN_H) \
1131 $(FRAME_H) \
1132 $(INTERVALS_H) \
1133 $(KEYBOARD_H) \
1134 $(LISP_H) \
1135 $(TERMHOOKS_H) \
1136 $(WINDOW_H)
1137
1138 $(BLD)/w32.$(O) : \
1139 $(SRC)/w32.c \
1140 $(SRC)/ndir.h \
1141 $(SRC)/w32.h \
1142 $(SRC)/w32heap.h \
1143 $(NT_INC)/pwd.h \
1144 $(NT_INC)/sys/file.h \
1145 $(NT_INC)/sys/time.h \
1146 $(GNU_LIB)/allocator.h \
1147 $(CAREADLINKAT_H) \
1148 $(CODING_H) \
1149 $(CONFIG_H) \
1150 $(DISPEXTERN_H) \
1151 $(GRP_H) \
1152 $(LISP_H) \
1153 $(PROCESS_H) \
1154 $(SOCKET_H) \
1155 $(SYSTIME_H)
1156
1157 $(BLD)/w32heap.$(O) : \
1158 $(SRC)/w32heap.c \
1159 $(SRC)/w32heap.h \
1160 $(CONFIG_H) \
1161 $(LISP_H)
1162
1163 $(BLD)/w32inevt.$(O) : \
1164 $(SRC)/w32inevt.c \
1165 $(SRC)/termchar.h \
1166 $(SRC)/w32heap.h \
1167 $(BLOCKINPUT_H) \
1168 $(CONFIG_H) \
1169 $(DISPEXTERN_H) \
1170 $(FRAME_H) \
1171 $(KEYBOARD_H) \
1172 $(LISP_H) \
1173 $(TERMHOOKS_H) \
1174 $(W32TERM_H) \
1175 $(WINDOW_H)
1176
1177 $(BLD)/w32proc.$(O) : \
1178 $(SRC)/w32proc.c \
1179 $(SRC)/syssignal.h \
1180 $(SRC)/syswait.h \
1181 $(SRC)/w32.h \
1182 $(SRC)/w32heap.h \
1183 $(NT_INC)/nl_types.h \
1184 $(NT_INC)/sys/file.h \
1185 $(CODING_H) \
1186 $(CONFIG_H) \
1187 $(DISPEXTERN_H) \
1188 $(LANGINFO_H) \
1189 $(LISP_H) \
1190 $(PROCESS_H) \
1191 $(SYSTIME_H) \
1192 $(W32TERM_H)
1193
1194 $(BLD)/w32console.$(O) : \
1195 $(SRC)/w32console.c \
1196 $(SRC)/disptab.h \
1197 $(SRC)/termchar.h \
1198 $(SRC)/w32inevt.h \
1199 $(CHARACTER_H) \
1200 $(CODING_H) \
1201 $(CONFIG_H) \
1202 $(DISPEXTERN_H) \
1203 $(FRAME_H) \
1204 $(LISP_H) \
1205 $(TERMHOOKS_H) \
1206 $(WINDOW_H)
1207
1208 $(BLD)/print.$(O) : \
1209 $(SRC)/print.c \
1210 $(SRC)/termchar.h \
1211 $(BLOCKINPUT_H) \
1212 $(BUFFER_H) \
1213 $(CHARACTER_H) \
1214 $(CHARSET_H) \
1215 $(CONFIG_H) \
1216 $(DISPEXTERN_H) \
1217 $(FONT_H) \
1218 $(FRAME_H) \
1219 $(FTOASTR_H) \
1220 $(INTERVALS_H) \
1221 $(KEYBOARD_H) \
1222 $(LISP_H) \
1223 $(PROCESS_H) \
1224 $(TERMHOOKS_H) \
1225 $(WINDOW_H)
1226
1227 $(BLD)/process.$(O) : \
1228 $(SRC)/process.c \
1229 $(SRC)/commands.h \
1230 $(SRC)/composite.h \
1231 $(SRC)/gnutls.h \
1232 $(SRC)/sysselect.h \
1233 $(SRC)/syssignal.h \
1234 $(SRC)/syswait.h \
1235 $(SRC)/termopts.h \
1236 $(NT_INC)/arpa/inet.h \
1237 $(NT_INC)/netdb.h \
1238 $(NT_INC)/netinet/in.h \
1239 $(NT_INC)/sys/file.h \
1240 $(NT_INC)/sys/ioctl.h \
1241 $(NT_INC)/sys/stat.h \
1242 $(NT_INC)/unistd.h \
1243 $(ATIMER_H) \
1244 $(BLOCKINPUT_H) \
1245 $(BUFFER_H) \
1246 $(CHARACTER_H) \
1247 $(CODING_H) \
1248 $(CONFIG_H) \
1249 $(DISPEXTERN_H) \
1250 $(FRAME_H) \
1251 $(KEYBOARD_H) \
1252 $(LISP_H) \
1253 $(PROCESS_H) \
1254 $(SOCKET_H) \
1255 $(SYSTIME_H) \
1256 $(SYSTTY_H) \
1257 $(TERMHOOKS_H) \
1258 $(WINDOW_H)
1259
1260 $(BLD)/ralloc.$(O) : \
1261 $(SRC)/ralloc.c \
1262 $(SRC)/getpagesize.h \
1263 $(NT_INC)/unistd.h \
1264 $(BLOCKINPUT_H) \
1265 $(CONFIG_H) \
1266 $(LISP_H)
1267
1268 $(BLD)/regex.$(O) : \
1269 $(SRC)/regex.c \
1270 $(SRC)/category.h \
1271 $(SRC)/regex.h \
1272 $(SRC)/syntax.h \
1273 $(BUFFER_H) \
1274 $(CHARACTER_H) \
1275 $(CONFIG_H) \
1276 $(LISP_H)
1277
1278 $(BLD)/region-cache.$(O) : \
1279 $(SRC)/region-cache.c \
1280 $(SRC)/region-cache.h \
1281 $(BUFFER_H) \
1282 $(CHARACTER_H) \
1283 $(CONFIG_H) \
1284 $(LISP_H)
1285
1286 $(BLD)/scroll.$(O) : \
1287 $(SRC)/scroll.c \
1288 $(SRC)/termchar.h \
1289 $(CONFIG_H) \
1290 $(DISPEXTERN_H) \
1291 $(FRAME_H) \
1292 $(KEYBOARD_H) \
1293 $(LISP_H) \
1294 $(TERMHOOKS_H) \
1295 $(WINDOW_H)
1296
1297 $(BLD)/search.$(O) : \
1298 $(SRC)/search.c \
1299 $(SRC)/category.h \
1300 $(SRC)/commands.h \
1301 $(SRC)/regex.h \
1302 $(SRC)/region-cache.h \
1303 $(SRC)/syntax.h \
1304 $(BLOCKINPUT_H) \
1305 $(BUFFER_H) \
1306 $(CHARACTER_H) \
1307 $(CHARSET_H) \
1308 $(CONFIG_H) \
1309 $(INTERVALS_H) \
1310 $(LISP_H)
1311
1312 $(BLD)/sound.$(O) : \
1313 $(SRC)/sound.c \
1314 $(SRC)/syssignal.h \
1315 $(NT_INC)/unistd.h \
1316 $(ATIMER_H) \
1317 $(CONFIG_H) \
1318 $(DISPEXTERN_H) \
1319 $(LISP_H)
1320
1321 $(BLD)/syntax.$(O) : \
1322 $(SRC)/syntax.c \
1323 $(SRC)/category.h \
1324 $(SRC)/commands.h \
1325 $(SRC)/keymap.h \
1326 $(SRC)/regex.h \
1327 $(SRC)/syntax.h \
1328 $(BUFFER_H) \
1329 $(CHARACTER_H) \
1330 $(CONFIG_H) \
1331 $(INTERVALS_H) \
1332 $(LISP_H)
1333
1334 $(BLD)/sysdep.$(O) : \
1335 $(SRC)/sysdep.c \
1336 $(SRC)/cm.h \
1337 $(SRC)/sysselect.h \
1338 $(SRC)/syssignal.h \
1339 $(SRC)/syswait.h \
1340 $(SRC)/termchar.h \
1341 $(SRC)/termopts.h \
1342 $(NT_INC)/netdb.h \
1343 $(NT_INC)/pwd.h \
1344 $(NT_INC)/sys/file.h \
1345 $(NT_INC)/sys/stat.h \
1346 $(NT_INC)/unistd.h \
1347 $(GNU_LIB)/allocator.h \
1348 $(GNU_LIB)/ignore-value.h \
1349 $(GNU_LIB)/utimens.h \
1350 $(BLOCKINPUT_H) \
1351 $(CAREADLINKAT_H) \
1352 $(CONFIG_H) \
1353 $(DISPEXTERN_H) \
1354 $(FRAME_H) \
1355 $(GRP_H) \
1356 $(KEYBOARD_H) \
1357 $(LISP_H) \
1358 $(PROCESS_H) \
1359 $(SOCKET_H) \
1360 $(SYSTIME_H) \
1361 $(SYSTTY_H) \
1362 $(TERMHOOKS_H) \
1363 $(WINDOW_H)
1364
1365 $(BLD)/term.$(O) : \
1366 $(SRC)/term.c \
1367 $(SRC)/cm.h \
1368 $(SRC)/composite.h \
1369 $(SRC)/disptab.h \
1370 $(SRC)/keymap.h \
1371 $(SRC)/syssignal.h \
1372 $(SRC)/termchar.h \
1373 $(SRC)/termopts.h \
1374 $(SRC)/tparam.h \
1375 $(NT_INC)/sys/file.h \
1376 $(NT_INC)/sys/time.h \
1377 $(NT_INC)/unistd.h \
1378 $(BLOCKINPUT_H) \
1379 $(BUFFER_H) \
1380 $(CHARACTER_H) \
1381 $(CHARSET_H) \
1382 $(CODING_H) \
1383 $(CONFIG_H) \
1384 $(DISPEXTERN_H) \
1385 $(FRAME_H) \
1386 $(INTERVALS_H) \
1387 $(KEYBOARD_H) \
1388 $(LISP_H) \
1389 $(SYSTTY_H) \
1390 $(TERMHOOKS_H) \
1391 $(WINDOW_H)
1392
1393 $(BLD)/terminal.$(O) : \
1394 $(SRC)/terminal.c \
1395 $(SRC)/termchar.h \
1396 $(CHARSET_H) \
1397 $(CODING_H) \
1398 $(CONFIG_H) \
1399 $(FRAME_H) \
1400 $(KEYBOARD_H) \
1401 $(LISP_H) \
1402 $(TERMHOOKS_H)
1403
1404 $(BLD)/textprop.$(O) : \
1405 $(SRC)/textprop.c \
1406 $(BUFFER_H) \
1407 $(CHARACTER_H) \
1408 $(CONFIG_H) \
1409 $(INTERVALS_H) \
1410 $(LISP_H) \
1411 $(WINDOW_H)
1412
1413 $(BLD)/tparam.$(O) : \
1414 $(SRC)/tparam.c \
1415 $(SRC)/tparam.h \
1416 $(CONFIG_H) \
1417 $(LISP_H)
1418
1419 $(BLD)/undo.$(O) : \
1420 $(SRC)/undo.c \
1421 $(SRC)/commands.h \
1422 $(BUFFER_H) \
1423 $(CHARACTER_H) \
1424 $(CONFIG_H) \
1425 $(LISP_H) \
1426 $(WINDOW_H)
1427
1428 $(BLD)/unexw32.$(O) : \
1429 $(SRC)/unexw32.c \
1430 $(SRC)/unexec.h \
1431 $(SRC)/w32heap.h \
1432 $(CONFIG_H)
1433
1434 $(BLD)/vm-limit.$(O) : \
1435 $(SRC)/vm-limit.c \
1436 $(SRC)/mem-limits.h \
1437 $(CONFIG_H) \
1438 $(LISP_H)
1439
1440 $(BLD)/window.$(O) : \
1441 $(SRC)/window.c \
1442 $(SRC)/commands.h \
1443 $(SRC)/disptab.h \
1444 $(SRC)/indent.h \
1445 $(SRC)/keymap.h \
1446 $(SRC)/termchar.h \
1447 $(BLOCKINPUT_H) \
1448 $(BUFFER_H) \
1449 $(CHARACTER_H) \
1450 $(CONFIG_H) \
1451 $(DISPEXTERN_H) \
1452 $(FRAME_H) \
1453 $(INTERVALS_H) \
1454 $(KEYBOARD_H) \
1455 $(LISP_H) \
1456 $(TERMHOOKS_H) \
1457 $(W32TERM_H) \
1458 $(WINDOW_H)
1459
1460 $(BLD)/xdisp.$(O) : \
1461 $(SRC)/xdisp.c \
1462 $(SRC)/commands.h \
1463 $(SRC)/disptab.h \
1464 $(SRC)/fontset.h \
1465 $(SRC)/indent.h \
1466 $(SRC)/keymap.h \
1467 $(SRC)/macros.h \
1468 $(SRC)/region-cache.h \
1469 $(SRC)/termchar.h \
1470 $(SRC)/termopts.h \
1471 $(BLOCKINPUT_H) \
1472 $(BUFFER_H) \
1473 $(CHARACTER_H) \
1474 $(CHARSET_H) \
1475 $(CODING_H) \
1476 $(CONFIG_H) \
1477 $(DISPEXTERN_H) \
1478 $(FONT_H) \
1479 $(FRAME_H) \
1480 $(INTERVALS_H) \
1481 $(KEYBOARD_H) \
1482 $(LISP_H) \
1483 $(PROCESS_H) \
1484 $(TERMHOOKS_H) \
1485 $(W32TERM_H) \
1486 $(WINDOW_H)
1487
1488 $(BLD)/xfaces.$(O) : \
1489 $(SRC)/xfaces.c \
1490 $(SRC)/fontset.h \
1491 $(SRC)/termchar.h \
1492 $(NT_INC)/sys/stat.h \
1493 $(BLOCKINPUT_H) \
1494 $(BUFFER_H) \
1495 $(CHARACTER_H) \
1496 $(CHARSET_H) \
1497 $(CONFIG_H) \
1498 $(DISPEXTERN_H) \
1499 $(FONT_H) \
1500 $(FRAME_H) \
1501 $(INTERVALS_H) \
1502 $(KEYBOARD_H) \
1503 $(LISP_H) \
1504 $(TERMHOOKS_H) \
1505 $(W32TERM_H) \
1506 $(WINDOW_H)
1507
1508 $(BLD)/w32fns.$(O) : \
1509 $(SRC)/w32fns.c \
1510 $(SRC)/ccl.h \
1511 $(SRC)/epaths.h \
1512 $(SRC)/fontset.h \
1513 $(SRC)/w32.h \
1514 $(SRC)/w32font.h \
1515 $(SRC)/w32heap.h \
1516 $(BLOCKINPUT_H) \
1517 $(BUFFER_H) \
1518 $(CHARACTER_H) \
1519 $(CHARSET_H) \
1520 $(CODING_H) \
1521 $(CONFIG_H) \
1522 $(DISPEXTERN_H) \
1523 $(FONT_H) \
1524 $(FRAME_H) \
1525 $(INTERVALS_H) \
1526 $(KEYBOARD_H) \
1527 $(LISP_H) \
1528 $(SYSTIME_H) \
1529 $(TERMHOOKS_H) \
1530 $(W32TERM_H) \
1531 $(WINDOW_H)
1532
1533 $(BLD)/w32menu.$(O) : \
1534 $(SRC)/w32menu.c \
1535 $(SRC)/keymap.h \
1536 $(SRC)/w32heap.h \
1537 $(BLOCKINPUT_H) \
1538 $(BUFFER_H) \
1539 $(CHARACTER_H) \
1540 $(CHARSET_H) \
1541 $(CODING_H) \
1542 $(CONFIG_H) \
1543 $(DISPEXTERN_H) \
1544 $(FRAME_H) \
1545 $(KEYBOARD_H) \
1546 $(LISP_H) \
1547 $(MENU_H) \
1548 $(TERMHOOKS_H) \
1549 $(W32TERM_H) \
1550 $(WINDOW_H)
1551
1552 $(BLD)/w32term.$(O) : \
1553 $(SRC)/w32term.c \
1554 $(SRC)/ccl.h \
1555 $(SRC)/disptab.h \
1556 $(SRC)/fontset.h \
1557 $(SRC)/keymap.h \
1558 $(SRC)/termchar.h \
1559 $(SRC)/termopts.h \
1560 $(SRC)/w32font.h \
1561 $(SRC)/w32heap.h \
1562 $(NT_INC)/sys/stat.h \
1563 $(ATIMER_H) \
1564 $(BLOCKINPUT_H) \
1565 $(BUFFER_H) \
1566 $(CHARACTER_H) \
1567 $(CHARSET_H) \
1568 $(CODING_H) \
1569 $(CONFIG_H) \
1570 $(DISPEXTERN_H) \
1571 $(FONT_H) \
1572 $(FRAME_H) \
1573 $(INTERVALS_H) \
1574 $(KEYBOARD_H) \
1575 $(LISP_H) \
1576 $(PROCESS_H) \
1577 $(SYSTIME_H) \
1578 $(SYSTTY_H) \
1579 $(TERMHOOKS_H) \
1580 $(W32TERM_H) \
1581 $(WINDOW_H)
1582
1583 $(BLD)/w32select.$(O) : \
1584 $(SRC)/w32select.c \
1585 $(SRC)/composite.h \
1586 $(SRC)/w32heap.h \
1587 $(BLOCKINPUT_H) \
1588 $(CHARSET_H) \
1589 $(CODING_H) \
1590 $(CONFIG_H) \
1591 $(LISP_H) \
1592 $(W32TERM_H)
1593
1594 $(BLD)/w32reg.$(O) : \
1595 $(SRC)/w32reg.c \
1596 $(BLOCKINPUT_H) \
1597 $(CONFIG_H) \
1598 $(LISP_H) \
1599 $(W32TERM_H)
1600
1601 $(BLD)/w32xfns.$(O) : \
1602 $(SRC)/w32xfns.c \
1603 $(SRC)/fontset.h \
1604 $(BLOCKINPUT_H) \
1605 $(CHARSET_H) \
1606 $(CONFIG_H) \
1607 $(FRAME_H) \
1608 $(KEYBOARD_H) \
1609 $(LISP_H) \
1610 $(W32TERM_H)
1611
1612 $(BLD)/w32font.$(O) : \
1613 $(SRC)/w32font.c \
1614 $(SRC)/fontset.h \
1615 $(SRC)/w32font.h \
1616 $(CHARACTER_H) \
1617 $(CHARSET_H) \
1618 $(CODING_H) \
1619 $(CONFIG_H) \
1620 $(DISPEXTERN_H) \
1621 $(FONT_H) \
1622 $(FRAME_H) \
1623 $(LISP_H) \
1624 $(W32TERM_H)
1625
1626 $(BLD)/w32uniscribe.$(O) : \
1627 $(SRC)/w32uniscribe.c \
1628 $(SRC)/composite.h \
1629 $(SRC)/fontset.h \
1630 $(SRC)/w32font.h \
1631 $(CHARACTER_H) \
1632 $(CHARSET_H) \
1633 $(CONFIG_H) \
1634 $(DISPEXTERN_H) \
1635 $(FONT_H) \
1636 $(FRAME_H) \
1637 $(LISP_H) \
1638 $(W32TERM_H)
1639
1640 # Each object file depends on stamp_BLD, because in parallel builds we must
1641 # make sure $(BLD) exists before starting compilations.
1642 #
1643 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD