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