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