X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/be520aca79dd429d55012a1916bdc97f06773fc5..b46a6a83b3c30d34aa6b80633394c74e6145291c:/src/makefile.w32-in diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 060b565b30..ada19ccdca 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in @@ -1,5 +1,5 @@ -# -*- Makefile -*- for GNU Emacs on the Microsoft W32 API. -# Copyright (C) 2000-2011 Free Software Foundation, Inc. +# -*- Makefile -*- for GNU Emacs on the Microsoft Windows API. +# Copyright (C) 2000-2012 Free Software Foundation, Inc. # This file is part of GNU Emacs. @@ -24,11 +24,10 @@ ALL = emacs # Set EMACSLOADPATH correctly (in case already defined in environment). EMACSLOADPATH=$(CURDIR)/../lisp -# -# HAVE_CONFIG_H is required by some generic gnu sources stuck into -# the emacs source tree. -# -LOCAL_FLAGS = -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS) +# Size in MBs of the static heap in temacs.exe. +HEAPSIZE = 27 + +LOCAL_FLAGS = -Demacs=1 -I../lib -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS) SRC = . EMACS = $(BLD)/emacs.exe @@ -125,6 +124,7 @@ OBJ2 = $(BLD)/sysdep.$(O) \ $(BLD)/image.$(O) \ $(BLD)/terminal.$(O) \ $(BLD)/menu.$(O) \ + $(BLD)/xml.$(O) \ $(BLD)/w32term.$(O) \ $(BLD)/w32xfns.$(O) \ $(BLD)/w32fns.$(O) \ @@ -177,7 +177,7 @@ temacs: stamp_BLD $(TEMACS) $(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLASTLIB) $(TOBJ) $(TRES) \ ../nt/$(BLD)/addsection.exe $(GNULIB) $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) - "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 21 + "$(THISDIR)/../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP $(HEAPSIZE) # These omit firstfile.${O}, but there's no documentation in there # anyways. @@ -221,7 +221,8 @@ GLOBAL_SOURCES = dosfns.c msdos.c \ syntax.c bytecode.c \ process.c callproc.c unexw32.c \ region-cache.c sound.c atimer.c \ - doprnt.c intervals.c textprop.c composite.c + doprnt.c intervals.c textprop.c composite.c \ + gnutls.c xml.c SOME_MACHINE_OBJECTS = dosfns.o msdos.o \ xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o dbusbind.o obj = $(GLOBAL_SOURCES:.c=.o) @@ -231,7 +232,7 @@ globals.h: gl-stamp gl-stamp: ../lib-src/$(BLD)/make-docfile.exe $(GLOBAL_SOURCES) - $(DEL) gl-tmp - "../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp + "$(THISDIR)/../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp cmd /c "fc /b gl-tmp globals.h >nul 2>&1 || $(CP) gl-tmp globals.h" - $(DEL) gl-tmp echo timestamp > $@ @@ -338,7 +339,7 @@ cleanall: clean ## ## This works only with GNU Make. -TAGS: $(OBJ0) $(OBJ1) $(OBJ2) $(CURDIR)/m/intel386.h $(CURDIR)/s/ms-w32.h +TAGS: $(OBJ0) $(OBJ1) $(OBJ2) $(CURDIR)/s/ms-w32.h $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE) TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2) @@ -347,12 +348,12 @@ TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2) TAGS-gmake: ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \ --regex=@../nt/emacs-src.tags \ - $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ0)) + $(OBJ0_c) ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \ - $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1)) + $(OBJ1_c) ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \ - $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2)) \ - $(CURDIR)/*.h $(CURDIR)/m/intel386.h $(CURDIR)/s/ms-w32.h + $(OBJ2_c) \ + $(CURDIR)/*.h $(CURDIR)/s/ms-w32.h TAGS-nmake: echo This target is not supported with NMake @@ -382,471 +383,461 @@ full-tags: TAGS TAGS-LISP ../nt/TAGS ### DEPENDENCIES ### EMACS_ROOT = .. -CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \ - $(EMACS_ROOT)/src/m/intel386.h \ - $(EMACS_ROOT)/src/config.h \ - $(EMACS_ROOT)/nt/inc/sys/stat.h -LISP_H = $(SRC)/lisp.h \ - $(SRC)/globals.h \ - $(EMACS_ROOT)/nt/inc/inttypes.h \ - $(EMACS_ROOT)/nt/inc/stdint.h -PROCESS_H = $(SRC)/process.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(SRC)/gnutls.h +GNU_LIB = $(EMACS_ROOT)/lib +NT_INC = $(EMACS_ROOT)/nt/inc + +SYSTIME_H = $(SRC)/systime.h \ + $(NT_INC)/sys/time.h \ + $(GNU_LIB)/timespec.h +ATIMER_H = $(SRC)/atimer.h \ + $(SYSTIME_H) +BLOCKINPUT_H = $(SRC)/blockinput.h \ + $(ATIMER_H) +BUFFER_H = $(SRC)/buffer.h \ + $(SYSTIME_H) +CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \ + $(NT_INC)/unistd.h +CHARACTER_H = $(SRC)/character.h \ + $(GNU_LIB)/verify.h +CHARSET_H = $(SRC)/charset.h \ + $(GNU_LIB)/verify.h +CODING_H = $(SRC)/coding.h \ + $(SRC)/composite.h +MS_W32_H = $(SRC)/s/ms-w32.h \ + $(NT_INC)/sys/stat.h +CONFIG_H = $(SRC)/config.h \ + $(MS_W32_H) +DIR_H = $(NT_INC)/sys/dir.h \ + $(SRC)/ndir.h +W32GUI_H = $(SRC)/w32gui.h \ + $(SYSTIME_H) +DISPEXTERN_H = $(SRC)/dispextern.h \ + $(GNU_LIB)/c-strcase.h \ + $(SYSTIME_H) \ + $(W32GUI_H) +FILEMODE_H = $(GNU_LIB)/filemode.h \ + $(NT_INC)/sys/stat.h +FONT_H = $(SRC)/font.h \ + $(SRC)/ccl.h +FRAME_H = $(SRC)/frame.h \ + $(DISPEXTERN_H) +FTOASTR_H = $(GNU_LIB)/ftoastr.h \ + $(GNU_LIB)/intprops.h +GRP_H = $(NT_INC)/grp.h \ + $(NT_INC)/pwd.h +INTERVALS_H = $(SRC)/intervals.h \ + $(SRC)/composite.h \ + $(DISPEXTERN_H) +INTTYPES_H = $(NT_INC)/inttypes.h \ + $(NT_INC)/stdint.h +KEYBOARD_H = $(SRC)/keyboard.h \ + $(CODING_H) \ + $(SYSTIME_H) +LANGINFO_H = $(NT_INC)/langinfo.h \ + $(NT_INC)/nl_types.h +LISP_H = $(SRC)/lisp.h \ + $(SRC)/globals.h \ + $(GNU_LIB)/intprops.h \ + $(INTTYPES_H) +MD5_H = $(GNU_LIB)/md5.h \ + $(NT_INC)/stdint.h +MENU_H = $(SRC)/menu.h \ + $(SYSTIME_H) +PROCESS_H = $(SRC)/process.h \ + $(SRC)/gnutls.h \ + $(NT_INC)/unistd.h +SHA1_H = $(GNU_LIB)/sha1.h \ + $(NT_INC)/stdint.h +SHA256_H = $(GNU_LIB)/sha256.h \ + $(NT_INC)/stdint.h +U64_H = $(GNU_LIB)/u64.h \ + $(NT_INC)/stdint.h +SHA512_H = $(GNU_LIB)/sha512.h \ + $(U64_H) +SOCKET_H = $(NT_INC)/sys/socket.h \ + $(SRC)/w32.h +STAT_TIME_H = $(GNU_LIB)/stat-time.h \ + $(NT_INC)/sys/stat.h +SYSTTY_H = $(SRC)/systty.h \ + $(NT_INC)/sys/ioctl.h \ + $(NT_INC)/unistd.h +TERMHOOKS_H = $(SRC)/termhooks.h \ + $(SYSTIME_H) +W32TERM_H = $(SRC)/w32term.h \ + $(W32GUI_H) +WINDOW_H = $(SRC)/window.h \ + $(DISPEXTERN_H) $(BLD)/alloc.$(O) : \ $(SRC)/alloc.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/puresize.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ $(SRC)/w32.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(NT_INC)/unistd.h \ + $(GNU_LIB)/verify.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/atimer.$(O) : \ $(SRC)/atimer.c \ + $(SRC)/syssignal.h \ + $(NT_INC)/unistd.h \ + $(ATIMER_H) \ + $(BLOCKINPUT_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/syssignal.h \ - $(SRC)/systime.h + $(SYSTIME_H) $(BLD)/bidi.$(O) : \ $(SRC)/bidi.c \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/bidimirror.h \ - $(SRC)/biditype.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/dispextern.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h + $(DISPEXTERN_H) \ + $(LISP_H) $(BLD)/buffer.$(O) : \ $(SRC)/buffer.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/param.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ $(SRC)/indent.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/region-cache.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(NT_INC)/sys/param.h \ + $(NT_INC)/sys/stat.h \ + $(NT_INC)/unistd.h \ + $(GNU_LIB)/verify.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(WINDOW_H) $(BLD)/bytecode.$(O) : \ $(SRC)/bytecode.c \ + $(SRC)/syntax.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/dispextern.h \ - $(SRC)/syntax.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(WINDOW_H) $(BLD)/callint.$(O) : \ $(SRC)/callint.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(WINDOW_H) $(BLD)/callproc.$(O) : \ $(SRC)/callproc.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/epaths.h \ - $(SRC)/frame.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ - $(SRC)/systty.h \ - $(SRC)/termhooks.h \ $(SRC)/w32.h \ - $(SRC)/w32gui.h + $(NT_INC)/sys/file.h \ + $(NT_INC)/unistd.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SYSTTY_H) \ + $(TERMHOOKS_H) $(BLD)/casefiddle.$(O) : \ $(SRC)/casefiddle.c \ - $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ $(SRC)/commands.h \ $(SRC)/composite.h \ $(SRC)/keymap.h \ - $(SRC)/syntax.h + $(SRC)/syntax.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(LISP_H) $(BLD)/casetab.$(O) : \ $(SRC)/casetab.c \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h + $(LISP_H) $(BLD)/category.$(O) : \ $(SRC)/category.c \ - $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/buffer.h \ $(SRC)/category.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/keymap.h + $(SRC)/keymap.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(LISP_H) $(BLD)/ccl.$(O) : \ $(SRC)/ccl.c \ - $(CONFIG_H) \ - $(LISP_H) \ $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(LISP_H) $(BLD)/character.$(O) : \ $(SRC)/character.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/lib/intprops.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ $(SRC)/composite.h \ - $(SRC)/disptab.h + $(SRC)/disptab.h \ + $(GNU_LIB)/intprops.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(LISP_H) $(BLD)/charset.$(O) : \ $(SRC)/charset.c \ + $(SRC)/disptab.h \ + $(NT_INC)/unistd.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/disptab.h + $(LISP_H) $(BLD)/chartab.$(O) : \ $(SRC)/chartab.c \ - $(CONFIG_H) \ - $(LISP_H) \ $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(LISP_H) $(BLD)/cmds.$(O) : \ $(SRC)/cmds.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/syntax.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(WINDOW_H) $(BLD)/coding.$(O) : \ $(SRC)/coding.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/composite.$(O) : \ $(SRC)/composite.c \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CODING_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/data.$(O) : \ $(SRC)/data.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ + $(SRC)/keymap.h \ $(SRC)/puresize.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h + $(GNU_LIB)/intprops.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) $(BLD)/dired.$(O) : \ $(SRC)/dired.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/grp.h \ - $(EMACS_ROOT)/nt/inc/pwd.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/dir.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(EMACS_ROOT)/lib/filemode.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/ndir.h \ $(SRC)/regex.h \ - $(SRC)/systime.h + $(NT_INC)/pwd.h \ + $(NT_INC)/sys/stat.h \ + $(NT_INC)/unistd.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DIR_H) \ + $(FILEMODE_H) \ + $(GRP_H) \ + $(LISP_H) \ + $(STAT_TIME_H) \ + $(SYSTIME_H) $(BLD)/dispnew.$(O) : \ $(SRC)/dispnew.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ $(SRC)/cm.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/disptab.h \ - $(SRC)/frame.h \ $(SRC)/indent.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ $(SRC)/termopts.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(NT_INC)/unistd.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SYSTIME_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/doc.$(O) : \ $(SRC)/doc.c \ - $(CONFIG_H) \ - buildobj.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/keyboard.h \ + $(SRC)/buildobj.h \ $(SRC)/keymap.h \ - $(SRC)/systime.h + $(NT_INC)/sys/file.h \ + $(NT_INC)/unistd.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(KEYBOARD_H) \ + $(LISP_H) $(BLD)/doprnt.$(O) : \ $(SRC)/doprnt.c \ + $(NT_INC)/unistd.h \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(LISP_H) \ - $(SRC)/character.h + $(LISP_H) $(BLD)/editfns.$(O) : \ $(SRC)/editfns.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/pwd.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(EMACS_ROOT)/lib/intprops.h \ - $(EMACS_ROOT)/lib/strftime.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(NT_INC)/pwd.h \ + $(NT_INC)/unistd.h \ + $(GNU_LIB)/intprops.h \ + $(GNU_LIB)/strftime.h \ + $(GNU_LIB)/verify.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(LISP_H) \ + $(SYSTIME_H) \ + $(WINDOW_H) $(BLD)/emacs.$(O) : \ $(SRC)/emacs.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ + $(SRC)/gnutls.h \ $(SRC)/keymap.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ - $(SRC)/systty.h \ - $(SRC)/termhooks.h \ $(SRC)/unexec.h \ $(SRC)/w32.h \ - $(SRC)/w32gui.h \ $(SRC)/w32heap.h \ - $(SRC)/window.h + $(NT_INC)/sys/file.h \ + $(NT_INC)/unistd.h \ + $(GNU_LIB)/verify.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SYSTTY_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/eval.$(O) : \ $(SRC)/eval.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h + $(BLOCKINPUT_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ + $(LISP_H) $(BLD)/fileio.$(O) : \ $(SRC)/fileio.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/pwd.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(NT_INC)/pwd.h \ + $(NT_INC)/sys/stat.h \ + $(NT_INC)/unistd.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(LISP_H) \ + $(STAT_TIME_H) \ + $(SYSTIME_H) \ + $(WINDOW_H) $(BLD)/filelock.$(O) : \ $(SRC)/filelock.c \ + $(NT_INC)/pwd.h \ + $(NT_INC)/sys/file.h \ + $(NT_INC)/sys/stat.h \ + $(NT_INC)/unistd.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CODING_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/pwd.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/systime.h + $(SYSTIME_H) $(BLD)/firstfile.$(O) : \ $(SRC)/firstfile.c \ @@ -854,271 +845,223 @@ $(BLD)/firstfile.$(O) : \ $(BLD)/floatfns.$(O) : \ $(SRC)/floatfns.c \ + $(SRC)/syssignal.h \ $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/syssignal.h + $(LISP_H) $(BLD)/fns.$(O) : \ $(SRC)/fns.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/langinfo.h \ - $(EMACS_ROOT)/nt/inc/nl_types.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(EMACS_ROOT)/lib/md5.h \ - $(EMACS_ROOT)/lib/sha1.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(NT_INC)/unistd.h \ + $(GNU_LIB)/intprops.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LANGINFO_H) \ + $(LISP_H) \ + $(MD5_H) \ + $(SHA1_H) \ + $(SHA256_H) \ + $(SHA512_H) \ + $(WINDOW_H) $(BLD)/font.$(O) : \ $(SRC)/font.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(LISP_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/fontset.$(O) : \ $(SRC)/fontset.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/frame.$(O) : \ $(SRC)/frame.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/fringe.$(O) : \ $(SRC)/fringe.c \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/gmalloc.$(O) : \ $(SRC)/gmalloc.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(SRC)/getpagesize.h + $(NT_INC)/stdint.h \ + $(NT_INC)/unistd.h \ + $(CONFIG_H) $(BLD)/gnutls.$(O) : \ $(SRC)/gnutls.c \ + $(SRC)/w32.h \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/w32.h + $(PROCESS_H) + +$(BLD)/xml.$(O) : \ + $(SRC)/xml.c \ + $(SRC)/w32.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(LISP_H) $(BLD)/image.$(O) : \ $(SRC)/image.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/epaths.h \ - $(SRC)/font.h \ - $(SRC)/frame.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ $(SRC)/w32.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(NT_INC)/unistd.h \ + $(BLOCKINPUT_H) \ + $(CHARACTER_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(LISP_H) \ + $(SYSTIME_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/indent.$(O) : \ $(SRC)/indent.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ $(SRC)/category.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/disptab.h \ - $(SRC)/frame.h \ $(SRC)/indent.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/region-cache.h \ - $(SRC)/systime.h \ $(SRC)/termchar.h \ $(SRC)/termopts.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(WINDOW_H) $(BLD)/insdel.$(O) : \ $(SRC)/insdel.c \ + $(SRC)/region-cache.h \ + $(GNU_LIB)/intprops.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(EMACS_ROOT)/lib/intprops.h \ + $(INTERVALS_H) \ $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/intervals.h \ - $(SRC)/region-cache.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(WINDOW_H) $(BLD)/intervals.$(O) : \ $(SRC)/intervals.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(EMACS_ROOT)/lib/intprops.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/puresize.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h + $(GNU_LIB)/intprops.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) $(BLD)/keyboard.$(O) : \ $(SRC)/keyboard.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/disptab.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/macros.h \ $(SRC)/puresize.h \ $(SRC)/syntax.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ $(SRC)/termopts.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(NT_INC)/sys/ioctl.h \ + $(NT_INC)/unistd.h \ + $(ATIMER_H) \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SYSTIME_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/keymap.$(O) : \ $(SRC)/keymap.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/puresize.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/lastfile.$(O) : \ $(SRC)/lastfile.c \ @@ -1126,715 +1069,573 @@ $(BLD)/lastfile.$(O) : \ $(BLD)/lread.$(O) : \ $(SRC)/lread.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/epaths.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h + $(NT_INC)/sys/file.h \ + $(NT_INC)/sys/stat.h \ + $(NT_INC)/unistd.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(STAT_TIME_H) \ + $(TERMHOOKS_H) $(BLD)/macros.$(O) : \ $(SRC)/macros.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/keyboard.h \ $(SRC)/macros.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(WINDOW_H) $(BLD)/marker.$(O) : \ $(SRC)/marker.c \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h + $(LISP_H) $(BLD)/menu.$(O) : \ $(SRC)/menu.c \ + $(SRC)/keymap.h \ + $(BLOCKINPUT_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ - $(SRC)/keymap.h \ - $(SRC)/menu.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(MENU_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/minibuf.$(O) : \ $(SRC)/minibuf.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/syntax.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/w32.$(O) : \ $(SRC)/w32.c \ + $(SRC)/ndir.h \ + $(SRC)/w32.h \ + $(SRC)/w32heap.h \ + $(NT_INC)/pwd.h \ + $(NT_INC)/sys/file.h \ + $(NT_INC)/sys/time.h \ + $(GNU_LIB)/allocator.h \ + $(CAREADLINKAT_H) \ + $(CODING_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/grp.h \ - $(EMACS_ROOT)/nt/inc/pwd.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/socket.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(EMACS_ROOT)/lib/allocator.h \ - $(EMACS_ROOT)/lib/careadlinkat.h \ + $(DISPEXTERN_H) \ + $(GRP_H) \ $(LISP_H) \ $(PROCESS_H) \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/ndir.h \ - $(SRC)/systime.h \ - $(SRC)/w32.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32heap.h + $(SOCKET_H) \ + $(SYSTIME_H) $(BLD)/w32heap.$(O) : \ $(SRC)/w32heap.c \ + $(SRC)/w32heap.h \ $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/w32heap.h + $(LISP_H) $(BLD)/w32inevt.$(O) : \ $(SRC)/w32inevt.c \ + $(SRC)/termchar.h \ + $(SRC)/w32heap.h \ + $(BLOCKINPUT_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32heap.h \ - $(SRC)/w32term.h + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/w32proc.$(O) : \ $(SRC)/w32proc.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/langinfo.h \ - $(EMACS_ROOT)/nt/inc/nl_types.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ $(SRC)/syswait.h \ $(SRC)/w32.h \ - $(SRC)/w32gui.h \ $(SRC)/w32heap.h \ - $(SRC)/w32term.h + $(NT_INC)/nl_types.h \ + $(NT_INC)/sys/file.h \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(LANGINFO_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SYSTIME_H) \ + $(W32TERM_H) $(BLD)/w32console.$(O) : \ $(SRC)/w32console.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/character.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/disptab.h \ - $(SRC)/frame.h \ - $(SRC)/systime.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32inevt.h + $(SRC)/w32inevt.h \ + $(CHARACTER_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/print.$(O) : \ $(SRC)/print.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(EMACS_ROOT)/lib/ftoastr.h \ - $(EMACS_ROOT)/lib/intprops.h \ + $(SRC)/termchar.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(FTOASTR_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ $(LISP_H) \ $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/process.$(O) : \ $(SRC)/process.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/netdb.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/arpa/inet.h \ - $(EMACS_ROOT)/nt/inc/netinet/in.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ - $(EMACS_ROOT)/nt/inc/sys/socket.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ + $(SRC)/gnutls.h \ $(SRC)/sysselect.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ - $(SRC)/systty.h \ $(SRC)/syswait.h \ - $(SRC)/termhooks.h \ $(SRC)/termopts.h \ - $(SRC)/w32.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(NT_INC)/arpa/inet.h \ + $(NT_INC)/netdb.h \ + $(NT_INC)/netinet/in.h \ + $(NT_INC)/sys/file.h \ + $(NT_INC)/sys/ioctl.h \ + $(NT_INC)/sys/stat.h \ + $(NT_INC)/unistd.h \ + $(ATIMER_H) \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SOCKET_H) \ + $(SYSTIME_H) \ + $(SYSTTY_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/ralloc.$(O) : \ $(SRC)/ralloc.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ $(SRC)/getpagesize.h \ - $(SRC)/systime.h + $(NT_INC)/unistd.h \ + $(BLOCKINPUT_H) \ + $(CONFIG_H) \ + $(LISP_H) $(BLD)/regex.$(O) : \ $(SRC)/regex.c \ - $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/buffer.h \ $(SRC)/category.h \ - $(SRC)/character.h \ $(SRC)/regex.h \ - $(SRC)/syntax.h + $(SRC)/syntax.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(LISP_H) $(BLD)/region-cache.$(O) : \ $(SRC)/region-cache.c \ + $(SRC)/region-cache.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/region-cache.h + $(LISP_H) $(BLD)/scroll.$(O) : \ $(SRC)/scroll.c \ + $(SRC)/termchar.h \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ $(LISP_H) \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/search.$(O) : \ $(SRC)/search.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ $(SRC)/category.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/intervals.h \ $(SRC)/regex.h \ $(SRC)/region-cache.h \ $(SRC)/syntax.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(INTERVALS_H) \ + $(LISP_H) $(BLD)/sound.$(O) : \ $(SRC)/sound.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/dispextern.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h + $(NT_INC)/unistd.h \ + $(ATIMER_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(LISP_H) $(BLD)/syntax.$(O) : \ $(SRC)/syntax.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/buffer.h \ $(SRC)/category.h \ - $(SRC)/character.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/intervals.h \ $(SRC)/keymap.h \ $(SRC)/regex.h \ $(SRC)/syntax.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(INTERVALS_H) \ + $(LISP_H) $(BLD)/sysdep.$(O) : \ $(SRC)/sysdep.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/grp.h \ - $(EMACS_ROOT)/nt/inc/netdb.h \ - $(EMACS_ROOT)/nt/inc/pwd.h \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ - $(EMACS_ROOT)/nt/inc/sys/socket.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(EMACS_ROOT)/lib/allocator.h \ - $(EMACS_ROOT)/lib/careadlinkat.h \ - $(EMACS_ROOT)/lib/ignore-value.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ $(SRC)/cm.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ $(SRC)/sysselect.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ - $(SRC)/systty.h \ $(SRC)/syswait.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ $(SRC)/termopts.h \ - $(SRC)/w32.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(NT_INC)/netdb.h \ + $(NT_INC)/pwd.h \ + $(NT_INC)/sys/file.h \ + $(NT_INC)/sys/stat.h \ + $(NT_INC)/unistd.h \ + $(GNU_LIB)/allocator.h \ + $(GNU_LIB)/ignore-value.h \ + $(GNU_LIB)/utimens.h \ + $(BLOCKINPUT_H) \ + $(CAREADLINKAT_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(GRP_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SOCKET_H) \ + $(SYSTIME_H) \ + $(SYSTTY_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/term.$(O) : \ $(SRC)/term.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/file.h \ - $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ $(SRC)/cm.h \ - $(SRC)/coding.h \ $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/disptab.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/syssignal.h \ - $(SRC)/systime.h \ - $(SRC)/systty.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ $(SRC)/termopts.h \ $(SRC)/tparam.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(NT_INC)/sys/file.h \ + $(NT_INC)/sys/time.h \ + $(NT_INC)/unistd.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(SYSTTY_H) \ + $(TERMHOOKS_H) \ + $(WINDOW_H) $(BLD)/terminal.$(O) : \ $(SRC)/terminal.c \ + $(SRC)/termchar.h \ + $(CHARSET_H) \ + $(CODING_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(FRAME_H) \ + $(KEYBOARD_H) \ $(LISP_H) \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h + $(TERMHOOKS_H) $(BLD)/textprop.$(O) : \ $(SRC)/textprop.c \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(INTERVALS_H) \ $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/intervals.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(WINDOW_H) $(BLD)/tparam.$(O) : \ $(SRC)/tparam.c \ + $(SRC)/tparam.h \ $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/tparam.h + $(LISP_H) $(BLD)/undo.$(O) : \ $(SRC)/undo.c \ + $(SRC)/commands.h \ + $(BUFFER_H) \ + $(CHARACTER_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ $(LISP_H) \ - $(SRC)/buffer.h \ - $(SRC)/commands.h \ - $(SRC)/dispextern.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/window.h + $(WINDOW_H) $(BLD)/unexw32.$(O) : \ $(SRC)/unexw32.c \ - $(CONFIG_H) \ $(SRC)/unexec.h \ - $(SRC)/w32heap.h + $(SRC)/w32heap.h \ + $(CONFIG_H) $(BLD)/vm-limit.$(O) : \ $(SRC)/vm-limit.c \ + $(SRC)/mem-limits.h \ $(CONFIG_H) \ - $(LISP_H) \ - $(SRC)/mem-limits.h + $(LISP_H) $(BLD)/window.$(O) : \ $(SRC)/window.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/disptab.h \ - $(SRC)/frame.h \ $(SRC)/indent.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ - $(SRC)/systime.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/xdisp.$(O) : \ $(SRC)/xdisp.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ $(SRC)/commands.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/disptab.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ $(SRC)/indent.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/macros.h \ $(SRC)/region-cache.h \ - $(SRC)/systime.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ $(SRC)/termopts.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/xfaces.$(O) : \ $(SRC)/xfaces.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(NT_INC)/sys/stat.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/w32fns.$(O) : \ $(SRC)/w32fns.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/epaths.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ $(SRC)/w32.h \ $(SRC)/w32font.h \ - $(SRC)/w32gui.h \ $(SRC)/w32heap.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(SYSTIME_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/w32menu.$(O) : \ $(SRC)/w32menu.c \ + $(SRC)/keymap.h \ + $(SRC)/w32heap.h \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(DISPEXTERN_H) \ + $(FRAME_H) \ + $(KEYBOARD_H) \ $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ - $(SRC)/keymap.h \ - $(SRC)/menu.h \ - $(SRC)/systime.h \ - $(SRC)/termhooks.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(MENU_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/w32term.$(O) : \ $(SRC)/w32term.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/unistd.h \ - $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(PROCESS_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/buffer.h \ $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ $(SRC)/disptab.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/intervals.h \ - $(SRC)/keyboard.h \ $(SRC)/keymap.h \ - $(SRC)/systime.h \ - $(SRC)/systty.h \ $(SRC)/termchar.h \ - $(SRC)/termhooks.h \ $(SRC)/termopts.h \ $(SRC)/w32font.h \ - $(SRC)/w32gui.h \ $(SRC)/w32heap.h \ - $(SRC)/w32term.h \ - $(SRC)/window.h + $(NT_INC)/sys/stat.h \ + $(ATIMER_H) \ + $(BLOCKINPUT_H) \ + $(BUFFER_H) \ + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(INTERVALS_H) \ + $(KEYBOARD_H) \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SYSTIME_H) \ + $(SYSTTY_H) \ + $(TERMHOOKS_H) \ + $(W32TERM_H) \ + $(WINDOW_H) $(BLD)/w32select.$(O) : \ $(SRC)/w32select.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ $(SRC)/composite.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ $(SRC)/w32heap.h \ - $(SRC)/w32term.h + $(BLOCKINPUT_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(LISP_H) \ + $(W32TERM_H) $(BLD)/w32reg.$(O) : \ $(SRC)/w32reg.c \ + $(BLOCKINPUT_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h + $(W32TERM_H) $(BLD)/w32xfns.$(O) : \ $(SRC)/w32xfns.c \ + $(SRC)/fontset.h \ + $(BLOCKINPUT_H) \ + $(CHARSET_H) \ $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(FRAME_H) \ + $(KEYBOARD_H) \ $(LISP_H) \ - $(SRC)/atimer.h \ - $(SRC)/blockinput.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/keyboard.h \ - $(SRC)/systime.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h + $(W32TERM_H) $(BLD)/w32font.$(O) : \ $(SRC)/w32font.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ - $(SRC)/coding.h \ - $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/systime.h \ $(SRC)/w32font.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CODING_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(LISP_H) \ + $(W32TERM_H) $(BLD)/w32uniscribe.$(O) : \ $(SRC)/w32uniscribe.c \ - $(CONFIG_H) \ - $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(LISP_H) \ - $(SRC)/ccl.h \ - $(SRC)/character.h \ - $(SRC)/charset.h \ $(SRC)/composite.h \ - $(SRC)/dispextern.h \ - $(SRC)/font.h \ $(SRC)/fontset.h \ - $(SRC)/frame.h \ - $(SRC)/systime.h \ $(SRC)/w32font.h \ - $(SRC)/w32gui.h \ - $(SRC)/w32term.h + $(CHARACTER_H) \ + $(CHARSET_H) \ + $(CONFIG_H) \ + $(DISPEXTERN_H) \ + $(FONT_H) \ + $(FRAME_H) \ + $(LISP_H) \ + $(W32TERM_H) # Each object file depends on stamp_BLD, because in parallel builds we must # make sure $(BLD) exists before starting compilations.