# see comments in allocate_heap in w32heap.c before changing any of the
# -stack, -heap, or -base settings.
!if "$(BUILD_TYPE)" == "spd"
-LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd
+LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd
!else
LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:none -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd $(EXTRA_LINK)
!endif
DOC = $(OBJDIR)\etc\DOC-X
$(DOC):; cd ..\lib-src
- $(DEL) DOC-X
- $(MAKE) -f makefile.nt all
+ $(MAKE) $(MFLAGS) -f makefile.nt all
cd ..\src
#
# The dumped executable
#
emacs: $(EMACS)
-$(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS)
+$(EMACS): $(DOC) $(TEMACS)
cd $(BLD)
$(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump
cd ..\..
# (it is the preload heap size in MB).
#
temacs: $(BLD) $(TEMACS)
-$(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
+$(TEMACS): $(PREPARED_HEADERS) $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
$(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16
+bootstrap: bootstrap-emacs
+
+#
+# Build a temacs with a sufficiently large PURESIZE to load the
+# Lisp files from loadup.el in source form.
+#
+bootstrap-temacs: bootstrap-clean
+ $(MAKE) $(MFLAGS) -f makefile.nt temacs CFLAGS="$(CFLAGS) -DPURESIZE=5000000"
+
+#
+# Dump an Emacs executable named bootstrap-emacs containing the
+# files from loadup.el in source form.
+#
+bootstrap-emacs: bootstrap-temacs
+ cd $(BLD)
+ $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup bootstrap
+ cd ..\..
+ - mkdir ..\bin
+ $(CP) $(EMACS) ..\bin
+
+#
+# Force recompile of files that depend on PURESIZE
+#
+bootstrap-clean:
+ - $(DEL) $(BLD)\alloc.obj
+ - $(DEL) $(BLD)\data.obj
+ - $(DEL) $(BLD)\intervals.obj
+ - $(DEL) $(BLD)\keyboard.obj
+ - $(DEL) $(BLD)\keymap.obj
+
#
# The resource file. NT 3.10 requires the use of cvtres; even though
# it is not necessary on later versions, it is still ok to use it.
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(SRC)\window.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h \
$(SRC)\puresize.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
- $(SRC)\lisp.h \
$(SRC)\atimer.h \
$(SRC)\syssignal.h \
$(SRC)\systime.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h \
+ $(SRC)\frame.h \
$(SRC)\window.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\syntax.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\commands.h \
$(SRC)\keyboard.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\msdos.h \
$(EMACS_ROOT)\nt\inc\sys\param.h \
- $(SRC)\lisp.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(SRC)\process.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\commands.h \
$(SRC)\syntax.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h
$(BLD)\cm.obj : \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(SRC)\syntax.h
+$(BLD)\composite.obj : \
+ $(SRC)\composite.c \
+ $(SRC)\buffer.h \
+ $(SRC)\charset.h \
+ $(SRC)\intervals.h \
+ $(SRC)\composite.h \
+ $(EMACS_ROOT)\src\s\ms-w32.h \
+ $(EMACS_ROOT)\src\m\intel386.h \
+ $(EMACS_ROOT)\src\config.h
+
$(BLD)\data.obj : \
$(SRC)\data.c \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\puresize.h \
$(SRC)\buffer.h \
$(SRC)\syssignal.h
$(EMACS_ROOT)\src\config.h \
$(SRC)\vmsdir.h \
$(SRC)\ndir.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\commands.h \
$(SRC)\regex.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\termchar.h \
$(SRC)\termopts.h \
$(SRC)\termhooks.h \
$(SRC)\indent.h \
$(SRC)\dispextern.h \
$(SRC)\intervals.h \
+ $(SRC)\composite.h \
$(EMACS_ROOT)\nt\inc\sys\ioctl.h \
$(EMACS_ROOT)\nt\inc\sys\file.h \
$(SRC)\systty.h \
$(SRC)\w32term.h \
- $(SRC)\w32gui.h \
$(SRC)\xterm.h \
$(SRC)\vmstime.h \
- $(SRC)\systime.h \
- $(SRC)\composite.h
+ $(SRC)\systime.h
$(BLD)\doc.obj : \
$(SRC)\doc.c \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(EMACS_ROOT)\nt\inc\sys\file.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\keyboard.h
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h
+$(BLD)\dosfns.obj : \
+ $(SRC)\dosfns.c \
+ $(EMACS_ROOT)\src\s\ms-w32.h \
+ $(EMACS_ROOT)\src\m\intel386.h \
+ $(EMACS_ROOT)\src\config.h \
+ $(SRC)\buffer.h \
+ $(SRC)\termchar.h \
+ $(SRC)\termhooks.h \
+ $(SRC)\frame.h \
+ $(SRC)\dosfns.h \
+ $(SRC)\msdos.h
+
$(BLD)\editfns.obj : \
$(SRC)\editfns.c \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(SRC)\uaf.h \
$(SRC)\vms-pwd.h \
$(EMACS_ROOT)\nt\inc\pwd.h \
- $(SRC)\lisp.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h \
$(SRC)\buffer.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\commands.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h \
$(EMACS_ROOT)\nt\inc\sys\ioctl.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\blockinput.h \
$(SRC)\commands.h \
$(SRC)\keyboard.h
$(SRC)\msdos.h \
$(EMACS_ROOT)\nt\inc\sys\param.h \
$(SRC)\vmsdir.h \
- $(SRC)\lisp.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h \
$(SRC)\buffer.h \
$(SRC)\vms-pwd.h \
$(EMACS_ROOT)\nt\inc\pwd.h \
$(EMACS_ROOT)\nt\inc\sys\file.h \
- $(SRC)\lisp.h \
$(EMACS_ROOT)\src\epaths.h \
$(SRC)\buffer.h \
$(SRC)\vmsdir.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\syssignal.h
$(BLD)\fns.obj : \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(SRC)\keyboard.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\frame.h \
$(SRC)\termhooks.h \
$(SRC)\window.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\indent.h \
$(SRC)\frame.h \
$(SRC)\termopts.h \
$(SRC)\disptab.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\region-cache.h \
$(SRC)\composite.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h \
$(SRC)\buffer.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
+ $(SRC)\composite.h \
+ $(SRC)\keyboard.h \
$(SRC)\buffer.h \
$(SRC)\puresize.h
- $(CC) $(CFLAGS) -Fo$@ intervals.c
$(BLD)\keyboard.obj : \
$(SRC)\keyboard.c \
$(EMACS_ROOT)\src\config.h \
$(SRC)\termchar.h \
$(SRC)\termopts.h \
- $(SRC)\lisp.h \
$(SRC)\termhooks.h \
$(SRC)\macros.h \
$(SRC)\frame.h \
$(EMACS_ROOT)\nt\inc\sys\file.h \
$(SRC)\systty.h \
$(SRC)\w32term.h \
- $(SRC)\w32gui.h \
$(SRC)\xterm.h \
$(SRC)\vmstime.h \
$(SRC)\systime.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(SRC)\keyboard.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(EMACS_ROOT)\nt\inc\sys\file.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(EMACS_ROOT)\src\epaths.h \
$(SRC)\commands.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\macros.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h
$(BLD)\minibuf.obj : \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\frame.h \
$(SRC)\window.h \
$(SRC)\syntax.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h
$(BLD)\w32.obj : \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
- $(SRC)\lisp.h \
$(EMACS_ROOT)\nt\inc\pwd.h \
$(SRC)\w32heap.h
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
- $(SRC)\lisp.h \
$(SRC)\frame.h \
$(SRC)\blockinput.h \
$(SRC)\termhooks.h \
$(SRC)\w32heap.h \
- $(SRC)\w32gui.h \
$(SRC)\w32term.h
$(BLD)\w32proc.obj : \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
- $(SRC)\lisp.h \
$(SRC)\w32.h \
$(SRC)\w32heap.h \
$(SRC)\vmstime.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
- $(SRC)\lisp.h \
$(SRC)\frame.h \
$(SRC)\disptab.h \
$(SRC)\termhooks.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\frame.h \
$(SRC)\window.h \
$(SRC)\process.h \
$(SRC)\termchar.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h
$(SRC)\syssignal.h \
$(SRC)\vmsproc.h \
$(SRC)\syswait.h \
- $(SRC)\lisp.h \
$(SRC)\vmstime.h \
$(SRC)\systime.h \
$(SRC)\termopts.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\syntax.h \
$(SRC)\regex.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\region-cache.h
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\termchar.h \
- $(SRC)\lisp.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\frame.h
$(BLD)\search.obj : \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\syntax.h \
$(SRC)\buffer.h \
$(SRC)\commands.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\window.h \
$(SRC)\buffer.h \
$(SRC)\termhooks.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\commands.h \
$(SRC)\buffer.h \
$(SRC)\syntax.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\blockinput.h \
$(SRC)\dosfns.h \
$(SRC)\msdos.h \
$(SRC)\termchar.h \
$(SRC)\termopts.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\process.h \
$(SRC)\vmsdir.h \
$(SRC)\ndir.h \
$(SRC)\termchar.h \
$(SRC)\termopts.h \
$(SRC)\cm.h \
- $(SRC)\lisp.h \
$(SRC)\frame.h \
$(SRC)\disptab.h \
$(SRC)\termhooks.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h \
$(SRC)\buffer.h \
$(SRC)\window.h
-$(BLD)\intervals.obj : \
- $(SRC)\intervals.c \
- $(SRC)\buffer.h \
- $(SRC)\intervals.h \
- $(SRC)\composite.h \
- $(SRC)\keyboard.h \
- $(SRC)\puresize.h \
- $(EMACS_ROOT)\src\s\ms-w32.h \
- $(EMACS_ROOT)\src\m\intel386.h \
- $(EMACS_ROOT)\src\config.h
-
-$(BLD)\composite.obj : \
- $(SRC)\composite.c \
- $(SRC)\buffer.h \
- $(SRC)\charset.h \
- $(SRC)\intervals.h \
- $(SRC)\composite.h \
- $(EMACS_ROOT)\src\s\ms-w32.h \
- $(EMACS_ROOT)\src\m\intel386.h \
- $(EMACS_ROOT)\src\config.h
-
$(BLD)\tparam.obj : \
$(SRC)\tparam.c \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\commands.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\xterm.h \
$(SRC)\frame.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\widget.h \
$(SRC)\widgetprv.h
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\frame.h \
$(SRC)\window.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
- $(SRC)\lisp.h \
$(SRC)\frame.h \
$(SRC)\window.h \
$(SRC)\termchar.h \
$(SRC)\disptab.h \
$(SRC)\termhooks.h \
$(SRC)\dispextern.h \
- $(SRC)\w32gui.h \
$(SRC)\intervals.h \
$(SRC)\composite.h
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\xfaces.c \
- $(SRC)\lisp.h \
$(SRC)\charset.h \
$(SRC)\fontset.h \
$(SRC)\w32term.h \
$(SRC)\frame.h \
$(SRC)\blockinput.h \
$(SRC)\window.h \
- $(SRC)\keyboard.h \
$(SRC)\intervals.h \
$(SRC)\composite.h
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32fns.c \
$(SRC)\x-list-font.c \
- $(SRC)\lisp.h \
$(SRC)\w32term.h \
$(SRC)\w32gui.h \
$(SRC)\frame.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32menu.c \
- $(SRC)\lisp.h \
$(SRC)\termhooks.h \
$(SRC)\frame.h \
$(SRC)\window.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32term.c \
- $(SRC)\lisp.h \
$(SRC)\blockinput.h \
$(SRC)\w32heap.h \
$(SRC)\w32term.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32select.c \
- $(SRC)\lisp.h \
$(SRC)\w32term.h \
$(SRC)\w32gui.h \
$(SRC)\dispextern.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32reg.c \
- $(SRC)\lisp.h \
$(SRC)\w32term.h \
$(SRC)\w32gui.h \
$(SRC)\blockinput.h
$(EMACS_ROOT)\src/m\intel386.h \
$(EMACS_ROOT)\src/config.h \
$(SRC)\w32bdf.c \
- $(SRC)\lisp.h \
$(SRC)\charset.h \
$(SRC)\frame.h \
$(SRC)\dispextern.h \
$(SRC)\w32gui.h \
$(SRC)\w32term.h \
$(SRC)\w32bdf.h \
- $(SRC)\lisp.h \
- $(SRC)\w32term.h \
$(SRC)\w32.h \
+ $(SRC)\frame.h \
$(SRC)\blockinput.h