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