diff options
Diffstat (limited to 'src/makefile.w32-in')
-rw-r--r-- | src/makefile.w32-in | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 6611efbe3b2..d1ac66f7771 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in @@ -123,7 +123,8 @@ OBJ1 = $(BLD)/abbrev.$(O) \ $(BLD)/ccl.$(O) \ $(BLD)/fontset.$(O) \ $(BLD)/fringe.$(O) \ - $(BLD)/image.$(O) + $(BLD)/image.$(O) \ + $(BLD)/terminal.$(O) WIN32OBJ = $(BLD)/w32term.$(O) \ $(BLD)/w32xfns.$(O) \ @@ -380,6 +381,8 @@ $(BLD)/callproc.$(O) : \ $(SRC)/process.h \ $(SRC)/syssignal.h \ $(SRC)/systty.h \ + $(SRC)/frame.h \ + $(SRC)/termhooks.h \ $(SRC)/w32.h $(BLD)/casefiddle.$(O) : \ @@ -469,6 +472,8 @@ $(BLD)/coding.$(O) : \ $(SRC)/composite.h \ $(SRC)/dispextern.h \ $(SRC)/intervals.h \ + $(SRC)/frame.h \ + $(SRC)/termhooks.h \ $(SRC)/w32bdf.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -496,7 +501,8 @@ $(BLD)/data.$(O) : \ $(SRC)/frame.h \ $(SRC)/keyboard.h \ $(SRC)/puresize.h \ - $(SRC)/syssignal.h + $(SRC)/syssignal.h \ + $(SRC)/termhooks.h $(BLD)/dired.$(O) : \ $(SRC)/dired.c \ @@ -699,6 +705,7 @@ $(BLD)/fns.$(O) : \ $(SRC)/keymap.h \ $(SRC)/md5.h \ $(SRC)/systime.h \ + $(SRC)/termhooks.h \ $(SRC)/w32bdf.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -715,6 +722,7 @@ $(BLD)/fontset.$(O) : \ $(SRC)/fontset.h \ $(SRC)/frame.h \ $(SRC)/keyboard.h \ + $(SRC)/termhooks.h \ $(SRC)/w32bdf.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -734,6 +742,7 @@ $(BLD)/frame.$(O) : \ $(SRC)/frame.h \ $(SRC)/keyboard.h \ $(SRC)/systime.h \ + $(SRC)/termchar.h \ $(SRC)/termhooks.h \ $(SRC)/w32bdf.h \ $(SRC)/w32gui.h \ @@ -903,6 +912,7 @@ $(BLD)/lread.$(O) : \ $(EMACS_ROOT)/src/config.h \ $(EMACS_ROOT)/nt/inc/sys/file.h \ $(EMACS_ROOT)/src/epaths.h \ + $(SRC)/blockinput.h \ $(SRC)/buffer.h \ $(SRC)/ccl.h \ $(SRC)/charset.h \ @@ -957,6 +967,7 @@ $(BLD)/minibuf.$(O) : \ $(SRC)/keyboard.h \ $(SRC)/keymap.h \ $(SRC)/syntax.h \ + $(SRC)/termhooks.h \ $(SRC)/w32bdf.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -1118,6 +1129,7 @@ $(BLD)/scroll.$(O) : \ $(SRC)/frame.h \ $(SRC)/keyboard.h \ $(SRC)/termchar.h \ + $(SRC)/termhooks.h \ $(SRC)/w32bdf.h \ $(SRC)/w32gui.h \ $(SRC)/window.h @@ -1184,6 +1196,7 @@ $(BLD)/sysdep.$(O) : \ $(EMACS_ROOT)/nt/inc/sys/file.h \ $(SRC)/atimer.h \ $(SRC)/blockinput.h \ + $(SRC)/cm.h \ $(SRC)/dispextern.h \ $(SRC)/frame.h \ $(SRC)/keyboard.h \ @@ -1229,6 +1242,18 @@ $(BLD)/termcap.$(O) : \ $(EMACS_ROOT)/src/config.h \ $(EMACS_ROOT)/nt/inc/sys/file.h +$(BLD)/terminal.$(O) : \ + $(SRC)/terminal.c \ + $(EMACS_ROOT)/src/s/ms-w32.h \ + $(EMACS_ROOT)/src/m/intel386.h \ + $(EMACS_ROOT)/src/config.h \ + $(SRC)/charset.h \ + $(SRC)/coding.h \ + $(SRC)/frame.h \ + $(SRC)/keyboard.h \ + $(SRC)/termchar.h \ + $(SRC)/termhooks.h + $(BLD)/textprop.$(O) : \ $(SRC)/textprop.c \ $(EMACS_ROOT)/src/s/ms-w32.h \ @@ -1342,6 +1367,8 @@ $(BLD)/xfaces.$(O): \ $(SRC)/intervals.h \ $(SRC)/keyboard.h \ $(SRC)/systime.h \ + $(SRC)/termchar.h \ + $(SRC)/termhooks.h \ $(SRC)/w32bdf.h \ $(SRC)/w32gui.h \ $(SRC)/w32term.h \ |