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