X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/a5d733f5d76c6f69780a3ed23020773c270362e7..727e958ef0548f3d8ce02a4a971247f52cc548ce:/src/makefile.w32-in diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 2dd00dcc87..8da589a711 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in @@ -72,7 +72,6 @@ OBJ1 = $(BLD)/alloc.$(O) \ $(BLD)/eval.$(O) \ $(BLD)/fileio.$(O) \ $(BLD)/filelock.$(O) \ - $(BLD)/filemode.$(O) \ $(BLD)/fns.$(O) \ $(BLD)/indent.$(O) \ $(BLD)/insdel.$(O) \ @@ -81,7 +80,6 @@ OBJ1 = $(BLD)/alloc.$(O) \ $(BLD)/lread.$(O) \ $(BLD)/macros.$(O) \ $(BLD)/marker.$(O) \ - $(BLD)/md5.$(O) \ $(BLD)/minibuf.$(O) \ $(BLD)/w32.$(O) \ $(BLD)/w32heap.$(O) \ @@ -107,6 +105,7 @@ OBJ2 = $(BLD)/sysdep.$(O) \ $(BLD)/floatfns.$(O) \ $(BLD)/frame.$(O) \ $(BLD)/gmalloc.$(O) \ + $(BLD)/gnutls.$(O) \ $(BLD)/intervals.$(O) \ $(BLD)/composite.$(O) \ $(BLD)/ralloc.$(O) \ @@ -152,6 +151,7 @@ LIBS = $(TLIB0) \ $(OLE32) \ $(COMCTL32) \ $(UNISCRIBE) \ + $(USER_LIBS) \ $(libc) # @@ -203,6 +203,39 @@ make-buildobj-SH: echo $(OBJ2) '\' >> buildobj.h echo '$(DQUOTE)' >> buildobj.h +GLOBAL_SOURCES = dosfns.c msdos.c \ + xterm.c xfns.c xmenu.c xselect.c xrdb.c xsmfns.c fringe.c image.c \ + fontset.c menu.c dbusbind.c \ + w32.c w32console.c w32fns.c w32heap.c w32inevt.c \ + w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \ + font.c w32font.c w32uniscribe.c \ + dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \ + charset.c coding.c category.c ccl.c character.c chartab.c \ + cm.c term.c terminal.c xfaces.c \ + emacs.c keyboard.c macros.c keymap.c sysdep.c \ + buffer.c filelock.c insdel.c marker.c \ + minibuf.c fileio.c dired.c \ + cmds.c casetab.c casefiddle.c indent.c search.c regex.c undo.c \ + alloc.c data.c doc.c editfns.c callint.c \ + eval.c floatfns.c fns.c print.c lread.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 +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) + +globals.h: gl-stamp + @cmd /c rem true + +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 + cmd /c "fc /b gl-tmp globals.h >nul 2>&1 || $(CP) gl-tmp globals.h" + - $(DEL) gl-tmp + echo timestamp > $@ + bootstrap: bootstrap-emacs # @@ -211,9 +244,15 @@ bootstrap: bootstrap-emacs # # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as # this can break with GNU Make 3.81 and later if sh.exe is used. -bootstrap-temacs: +bootstrap-temacs-CMD: + $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(ESC_CFLAGS) -DPURESIZE=5000000$(ARGQUOTE) + +bootstrap-temacs-SH: $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE) +bootstrap-temacs: + $(MAKE) $(MFLAGS) bootstrap-temacs-$(SHELLTYPE) + # # Dump an Emacs executable named bootstrap-emacs containing the # files from loadup.el in source form. @@ -279,7 +318,7 @@ clean: - $(DEL) "s/*.h~" "m/*.h~" - $(DEL) $(COMPILER_TEMP_FILES) - $(DEL_TREE) $(OBJDIR) - - $(DEL) stamp_BLD + - $(DEL) stamp_BLD gl-stamp globals.h - $(DEL) buildobj.h distclean: cleanall @@ -299,7 +338,7 @@ cleanall: clean ## ## This works only with GNU Make. -TAGS: $(OBJ0) $(OBJ1) $(OBJ2) +TAGS: $(OBJ0) $(OBJ1) $(OBJ2) $(CURDIR)/m/intel386.h $(CURDIR)/s/ms-w32.h $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE) TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2) @@ -313,7 +352,7 @@ TAGS-gmake: $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1)) ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \ $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2)) \ - $(CURDIR)/*.h + $(CURDIR)/*.h $(CURDIR)/m/intel386.h $(CURDIR)/s/ms-w32.h TAGS-nmake: echo This target is not supported with NMake @@ -347,14 +386,21 @@ 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 -IGNORE_VALUE_H = $(EMACS_ROOT)/lib/ignore-value.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 $(BLD)/alloc.$(O) : \ $(SRC)/alloc.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -365,7 +411,6 @@ $(BLD)/alloc.$(O) : \ $(SRC)/frame.h \ $(SRC)/intervals.h \ $(SRC)/keyboard.h \ - $(SRC)/process.h \ $(SRC)/puresize.h \ $(SRC)/syssignal.h \ $(SRC)/systime.h \ @@ -379,7 +424,7 @@ $(BLD)/atimer.$(O) : \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/syssignal.h \ @@ -388,12 +433,14 @@ $(BLD)/atimer.$(O) : \ $(BLD)/bidi.$(O) : \ $(SRC)/bidi.c \ $(CONFIG_H) \ - $(SRC)/lisp.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 $(BLD)/buffer.$(O) : \ @@ -402,7 +449,7 @@ $(BLD)/buffer.$(O) : \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/param.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -424,11 +471,13 @@ $(BLD)/buffer.$(O) : \ $(BLD)/bytecode.$(O) : \ $(SRC)/bytecode.c \ $(CONFIG_H) \ - $(SRC)/lisp.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 @@ -436,8 +485,9 @@ $(BLD)/callint.$(O) : \ $(SRC)/callint.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ + $(SRC)/character.h \ $(SRC)/coding.h \ $(SRC)/commands.h \ $(SRC)/composite.h \ @@ -453,8 +503,10 @@ $(BLD)/callproc.$(O) : \ $(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 \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -466,7 +518,6 @@ $(BLD)/callproc.$(O) : \ $(SRC)/dispextern.h \ $(SRC)/epaths.h \ $(SRC)/frame.h \ - $(SRC)/process.h \ $(SRC)/syssignal.h \ $(SRC)/systime.h \ $(SRC)/systty.h \ @@ -477,7 +528,7 @@ $(BLD)/callproc.$(O) : \ $(BLD)/casefiddle.$(O) : \ $(SRC)/casefiddle.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h \ $(SRC)/commands.h \ @@ -488,14 +539,14 @@ $(BLD)/casefiddle.$(O) : \ $(BLD)/casetab.$(O) : \ $(SRC)/casetab.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h $(BLD)/category.$(O) : \ $(SRC)/category.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/category.h \ $(SRC)/character.h \ @@ -505,7 +556,7 @@ $(BLD)/category.$(O) : \ $(BLD)/ccl.$(O) : \ $(SRC)/ccl.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/ccl.h \ $(SRC)/character.h \ $(SRC)/charset.h \ @@ -515,7 +566,8 @@ $(BLD)/ccl.$(O) : \ $(BLD)/character.$(O) : \ $(SRC)/character.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/intprops.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h \ $(SRC)/charset.h \ @@ -526,7 +578,7 @@ $(BLD)/charset.$(O) : \ $(SRC)/charset.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h \ $(SRC)/charset.h \ @@ -537,7 +589,7 @@ $(BLD)/charset.$(O) : \ $(BLD)/chartab.$(O) : \ $(SRC)/chartab.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/ccl.h \ $(SRC)/character.h \ $(SRC)/charset.h @@ -546,7 +598,7 @@ $(BLD)/cmds.$(O) : \ $(SRC)/cmds.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h \ $(SRC)/coding.h \ @@ -564,7 +616,8 @@ $(BLD)/cmds.$(O) : \ $(BLD)/coding.$(O) : \ $(SRC)/coding.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/ccl.h \ $(SRC)/character.h \ @@ -573,6 +626,7 @@ $(BLD)/coding.$(O) : \ $(SRC)/composite.h \ $(SRC)/dispextern.h \ $(SRC)/frame.h \ + $(SRC)/systime.h \ $(SRC)/termhooks.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -580,7 +634,8 @@ $(BLD)/coding.$(O) : \ $(BLD)/composite.$(O) : \ $(SRC)/composite.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/ccl.h \ $(SRC)/character.h \ @@ -590,6 +645,7 @@ $(BLD)/composite.$(O) : \ $(SRC)/font.h \ $(SRC)/frame.h \ $(SRC)/intervals.h \ + $(SRC)/systime.h \ $(SRC)/termhooks.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -598,7 +654,8 @@ $(BLD)/data.$(O) : \ $(SRC)/data.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/intprops.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/ccl.h \ $(SRC)/character.h \ @@ -622,7 +679,8 @@ $(BLD)/dired.$(O) : \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/dir.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/filemode.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -640,7 +698,8 @@ $(BLD)/dispnew.$(O) : \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -655,7 +714,6 @@ $(BLD)/dispnew.$(O) : \ $(SRC)/indent.h \ $(SRC)/intervals.h \ $(SRC)/keyboard.h \ - $(SRC)/process.h \ $(SRC)/syssignal.h \ $(SRC)/systime.h \ $(SRC)/termchar.h \ @@ -672,7 +730,7 @@ $(BLD)/doc.$(O) : \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/file.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h \ $(SRC)/coding.h \ @@ -685,7 +743,7 @@ $(BLD)/doprnt.$(O) : \ $(SRC)/doprnt.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/character.h $(BLD)/editfns.$(O) : \ @@ -694,7 +752,10 @@ $(BLD)/editfns.$(O) : \ $(EMACS_ROOT)/nt/inc/pwd.h \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/intprops.h \ + $(EMACS_ROOT)/lib/strftime.h \ + $(EMACS_ROOT)/lib/verify.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -713,8 +774,10 @@ $(BLD)/emacs.$(O) : \ $(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 \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -726,11 +789,11 @@ $(BLD)/emacs.$(O) : \ $(SRC)/intervals.h \ $(SRC)/keyboard.h \ $(SRC)/keymap.h \ - $(SRC)/process.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 \ @@ -740,7 +803,7 @@ $(BLD)/eval.$(O) : \ $(SRC)/eval.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/coding.h \ @@ -758,7 +821,7 @@ $(BLD)/fileio.$(O) : \ $(EMACS_ROOT)/nt/inc/pwd.h \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -780,17 +843,13 @@ $(BLD)/filelock.$(O) : \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/file.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h \ $(SRC)/coding.h \ $(SRC)/composite.h \ $(SRC)/systime.h -$(BLD)/filemode.$(O) : \ - $(SRC)/filemode.c \ - $(CONFIG_H) - $(BLD)/firstfile.$(O) : \ $(SRC)/firstfile.c \ $(CONFIG_H) @@ -798,7 +857,7 @@ $(BLD)/firstfile.$(O) : \ $(BLD)/floatfns.$(O) : \ $(SRC)/floatfns.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/syssignal.h $(BLD)/fns.$(O) : \ @@ -808,7 +867,9 @@ $(BLD)/fns.$(O) : \ $(EMACS_ROOT)/nt/inc/nl_types.h \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/md5.h \ + $(EMACS_ROOT)/lib/sha1.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -821,7 +882,6 @@ $(BLD)/fns.$(O) : \ $(SRC)/intervals.h \ $(SRC)/keyboard.h \ $(SRC)/keymap.h \ - $(SRC)/md5.h \ $(SRC)/systime.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -829,7 +889,8 @@ $(BLD)/fns.$(O) : \ $(BLD)/font.$(O) : \ $(SRC)/font.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/ccl.h \ $(SRC)/character.h \ @@ -839,6 +900,7 @@ $(BLD)/font.$(O) : \ $(SRC)/font.h \ $(SRC)/fontset.h \ $(SRC)/frame.h \ + $(SRC)/systime.h \ $(SRC)/w32gui.h \ $(SRC)/w32term.h \ $(SRC)/window.h @@ -847,7 +909,7 @@ $(BLD)/fontset.$(O) : \ $(SRC)/fontset.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -872,7 +934,7 @@ $(BLD)/frame.$(O) : \ $(SRC)/frame.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -897,7 +959,7 @@ $(BLD)/fringe.$(O) : \ $(SRC)/fringe.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -914,12 +976,20 @@ $(BLD)/gmalloc.$(O) : \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(SRC)/getpagesize.h +$(BLD)/gnutls.$(O) : \ + $(SRC)/gnutls.c \ + $(CONFIG_H) \ + $(EMACS_ROOT)/nt/inc/unistd.h \ + $(LISP_H) \ + $(PROCESS_H) \ + $(SRC)/w32.h + $(BLD)/image.$(O) : \ $(SRC)/image.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/ccl.h \ @@ -932,6 +1002,7 @@ $(BLD)/image.$(O) : \ $(SRC)/frame.h \ $(SRC)/systime.h \ $(SRC)/termhooks.h \ + $(SRC)/w32.h \ $(SRC)/w32gui.h \ $(SRC)/w32term.h \ $(SRC)/window.h @@ -940,7 +1011,7 @@ $(BLD)/indent.$(O) : \ $(SRC)/indent.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/category.h \ $(SRC)/character.h \ @@ -963,7 +1034,8 @@ $(BLD)/insdel.$(O) : \ $(SRC)/insdel.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/intprops.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -980,7 +1052,8 @@ $(BLD)/intervals.$(O) : \ $(SRC)/intervals.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/intprops.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/coding.h \ $(SRC)/composite.h \ @@ -998,7 +1071,8 @@ $(BLD)/keyboard.$(O) : \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1013,7 +1087,6 @@ $(BLD)/keyboard.$(O) : \ $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/macros.h \ - $(SRC)/process.h \ $(SRC)/puresize.h \ $(SRC)/syntax.h \ $(SRC)/syssignal.h \ @@ -1029,7 +1102,7 @@ $(BLD)/keymap.$(O) : \ $(SRC)/keymap.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1059,7 +1132,7 @@ $(BLD)/lread.$(O) : \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/file.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1081,7 +1154,7 @@ $(BLD)/macros.$(O) : \ $(SRC)/macros.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/coding.h \ $(SRC)/commands.h \ @@ -1096,20 +1169,15 @@ $(BLD)/macros.$(O) : \ $(BLD)/marker.$(O) : \ $(SRC)/marker.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h -$(BLD)/md5.$(O) : \ - $(SRC)/md5.c \ - $(CONFIG_H) \ - $(SRC)/md5.h - $(BLD)/menu.$(O) : \ $(SRC)/menu.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/coding.h \ @@ -1129,7 +1197,7 @@ $(BLD)/minibuf.$(O) : \ $(SRC)/minibuf.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/character.h \ $(SRC)/coding.h \ @@ -1155,12 +1223,14 @@ $(BLD)/w32.$(O) : \ $(EMACS_ROOT)/nt/inc/sys/file.h \ $(EMACS_ROOT)/nt/inc/sys/socket.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/allocator.h \ + $(EMACS_ROOT)/lib/careadlinkat.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/coding.h \ $(SRC)/composite.h \ $(SRC)/dispextern.h \ $(SRC)/ndir.h \ - $(SRC)/process.h \ $(SRC)/systime.h \ $(SRC)/w32.h \ $(SRC)/w32gui.h \ @@ -1169,14 +1239,14 @@ $(BLD)/w32.$(O) : \ $(BLD)/w32heap.$(O) : \ $(SRC)/w32heap.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/w32heap.h $(BLD)/w32inevt.$(O) : \ $(SRC)/w32inevt.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/coding.h \ @@ -1198,12 +1268,12 @@ $(BLD)/w32proc.$(O) : \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/file.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/character.h \ $(SRC)/coding.h \ $(SRC)/composite.h \ $(SRC)/dispextern.h \ - $(SRC)/process.h \ $(SRC)/syssignal.h \ $(SRC)/systime.h \ $(SRC)/syswait.h \ @@ -1215,13 +1285,15 @@ $(BLD)/w32proc.$(O) : \ $(BLD)/w32console.$(O) : \ $(SRC)/w32console.c \ $(CONFIG_H) \ - $(SRC)/lisp.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 \ @@ -1232,7 +1304,10 @@ $(BLD)/print.$(O) : \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/lib/ftoastr.h \ + $(EMACS_ROOT)/lib/intprops.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1246,7 +1321,6 @@ $(BLD)/print.$(O) : \ $(SRC)/frame.h \ $(SRC)/intervals.h \ $(SRC)/keyboard.h \ - $(SRC)/process.h \ $(SRC)/systime.h \ $(SRC)/termchar.h \ $(SRC)/termhooks.h \ @@ -1261,9 +1335,11 @@ $(BLD)/process.$(O) : \ $(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 \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1274,7 +1350,6 @@ $(BLD)/process.$(O) : \ $(SRC)/dispextern.h \ $(SRC)/frame.h \ $(SRC)/keyboard.h \ - $(SRC)/process.h \ $(SRC)/sysselect.h \ $(SRC)/syssignal.h \ $(SRC)/systime.h \ @@ -1291,7 +1366,7 @@ $(BLD)/ralloc.$(O) : \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/getpagesize.h \ @@ -1300,7 +1375,7 @@ $(BLD)/ralloc.$(O) : \ $(BLD)/regex.$(O) : \ $(SRC)/regex.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/category.h \ $(SRC)/character.h \ @@ -1310,7 +1385,7 @@ $(BLD)/regex.$(O) : \ $(BLD)/region-cache.$(O) : \ $(SRC)/region-cache.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/region-cache.h @@ -1318,7 +1393,7 @@ $(BLD)/scroll.$(O) : \ $(SRC)/scroll.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/coding.h \ $(SRC)/composite.h \ $(SRC)/dispextern.h \ @@ -1334,7 +1409,7 @@ $(BLD)/search.$(O) : \ $(SRC)/search.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1356,7 +1431,7 @@ $(BLD)/sound.$(O) : \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/dispextern.h \ $(SRC)/syssignal.h \ @@ -1366,7 +1441,8 @@ $(BLD)/sound.$(O) : \ $(BLD)/syntax.$(O) : \ $(SRC)/syntax.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/category.h \ $(SRC)/character.h \ @@ -1377,6 +1453,7 @@ $(BLD)/syntax.$(O) : \ $(SRC)/keymap.h \ $(SRC)/regex.h \ $(SRC)/syntax.h \ + $(SRC)/systime.h \ $(SRC)/w32gui.h $(BLD)/sysdep.$(O) : \ @@ -1387,10 +1464,14 @@ $(BLD)/sysdep.$(O) : \ $(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 \ - $(IGNORE_VALUE_H) \ - $(SRC)/lisp.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 \ @@ -1399,7 +1480,6 @@ $(BLD)/sysdep.$(O) : \ $(SRC)/dispextern.h \ $(SRC)/frame.h \ $(SRC)/keyboard.h \ - $(SRC)/process.h \ $(SRC)/sysselect.h \ $(SRC)/syssignal.h \ $(SRC)/systime.h \ @@ -1417,8 +1497,9 @@ $(BLD)/term.$(O) : \ $(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 \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1439,6 +1520,7 @@ $(BLD)/term.$(O) : \ $(SRC)/termchar.h \ $(SRC)/termhooks.h \ $(SRC)/termopts.h \ + $(SRC)/tparam.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -1446,7 +1528,7 @@ $(BLD)/terminal.$(O) : \ $(SRC)/terminal.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/charset.h \ $(SRC)/coding.h \ $(SRC)/composite.h \ @@ -1461,45 +1543,51 @@ $(BLD)/terminal.$(O) : \ $(BLD)/textprop.$(O) : \ $(SRC)/textprop.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(LISP_H) \ $(SRC)/buffer.h \ $(SRC)/composite.h \ $(SRC)/dispextern.h \ $(SRC)/intervals.h \ + $(SRC)/systime.h \ $(SRC)/w32gui.h \ $(SRC)/window.h $(BLD)/tparam.$(O) : \ $(SRC)/tparam.c \ $(CONFIG_H) \ - $(SRC)/lisp.h + $(LISP_H) \ + $(SRC)/tparam.h $(BLD)/undo.$(O) : \ $(SRC)/undo.c \ $(CONFIG_H) \ - $(SRC)/lisp.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 $(BLD)/unexw32.$(O) : \ $(SRC)/unexw32.c \ $(CONFIG_H) \ + $(SRC)/unexec.h \ $(SRC)/w32heap.h $(BLD)/vm-limit.$(O) : \ $(SRC)/vm-limit.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/mem-limits.h $(BLD)/window.$(O) : \ $(SRC)/window.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1525,7 +1613,8 @@ $(BLD)/xdisp.$(O) : \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/unistd.h \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1545,7 +1634,6 @@ $(BLD)/xdisp.$(O) : \ $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/macros.h \ - $(SRC)/process.h \ $(SRC)/region-cache.h \ $(SRC)/systime.h \ $(SRC)/termchar.h \ @@ -1559,7 +1647,7 @@ $(BLD)/xfaces.$(O) : \ $(SRC)/xfaces.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1585,7 +1673,7 @@ $(BLD)/w32fns.$(O) : \ $(SRC)/w32fns.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1614,7 +1702,7 @@ $(BLD)/w32menu.$(O) : \ $(SRC)/w32menu.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1637,8 +1725,10 @@ $(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 \ - $(SRC)/lisp.h \ + $(LISP_H) \ + $(PROCESS_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/buffer.h \ @@ -1655,7 +1745,6 @@ $(BLD)/w32term.$(O) : \ $(SRC)/intervals.h \ $(SRC)/keyboard.h \ $(SRC)/keymap.h \ - $(SRC)/process.h \ $(SRC)/systime.h \ $(SRC)/systty.h \ $(SRC)/termchar.h \ @@ -1671,14 +1760,13 @@ $(BLD)/w32select.$(O) : \ $(SRC)/w32select.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/character.h \ $(SRC)/charset.h \ $(SRC)/coding.h \ $(SRC)/composite.h \ - $(SRC)/keyboard.h \ $(SRC)/systime.h \ $(SRC)/w32gui.h \ $(SRC)/w32heap.h \ @@ -1688,7 +1776,7 @@ $(BLD)/w32reg.$(O) : \ $(SRC)/w32reg.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/systime.h \ @@ -1699,7 +1787,7 @@ $(BLD)/w32xfns.$(O) : \ $(SRC)/w32xfns.c \ $(CONFIG_H) \ $(EMACS_ROOT)/nt/inc/sys/time.h \ - $(SRC)/lisp.h \ + $(LISP_H) \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ $(SRC)/charset.h \ @@ -1716,7 +1804,8 @@ $(BLD)/w32xfns.$(O) : \ $(BLD)/w32font.$(O) : \ $(SRC)/w32font.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(LISP_H) \ $(SRC)/ccl.h \ $(SRC)/character.h \ $(SRC)/charset.h \ @@ -1726,6 +1815,7 @@ $(BLD)/w32font.$(O) : \ $(SRC)/font.h \ $(SRC)/fontset.h \ $(SRC)/frame.h \ + $(SRC)/systime.h \ $(SRC)/w32font.h \ $(SRC)/w32gui.h \ $(SRC)/w32term.h @@ -1733,7 +1823,8 @@ $(BLD)/w32font.$(O) : \ $(BLD)/w32uniscribe.$(O) : \ $(SRC)/w32uniscribe.c \ $(CONFIG_H) \ - $(SRC)/lisp.h \ + $(EMACS_ROOT)/nt/inc/sys/time.h \ + $(LISP_H) \ $(SRC)/ccl.h \ $(SRC)/character.h \ $(SRC)/charset.h \ @@ -1742,6 +1833,7 @@ $(BLD)/w32uniscribe.$(O) : \ $(SRC)/font.h \ $(SRC)/fontset.h \ $(SRC)/frame.h \ + $(SRC)/systime.h \ $(SRC)/w32font.h \ $(SRC)/w32gui.h \ $(SRC)/w32term.h