diff options
author | Miles Bader <miles@gnu.org> | 2007-10-11 16:24:58 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-10-11 16:24:58 +0000 |
commit | c73bd236f75b742ad4642ec94798987ae6e3e1e8 (patch) | |
tree | ef5edc8db557fc1d25a17c379e4ae63a38b3ba5c /src/makefile.w32-in | |
parent | ecb21060d5c1752d41d7a742be565c59b5fcb855 (diff) | |
parent | 58ade22bf16a9ec2ff0aee6c59d8db4d1703e94f (diff) | |
download | emacs-c73bd236f75b742ad4642ec94798987ae6e3e1e8.tar.gz emacs-c73bd236f75b742ad4642ec94798987ae6e3e1e8.tar.bz2 emacs-c73bd236f75b742ad4642ec94798987ae6e3e1e8.zip |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 866-879)
- Merge multi-tty branch
- Update from CVS
- Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-257
Diffstat (limited to 'src/makefile.w32-in')
-rw-r--r-- | src/makefile.w32-in | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index df42d0a08d4..296c10c4208 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in @@ -125,7 +125,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) \ @@ -156,6 +157,7 @@ LIBS = $(TLIB0) \ $(SHELL32) \ $(WINSPOOL) \ $(OLE32) \ + $(COMCTL32) \ $(libc) # @@ -393,6 +395,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) : \ @@ -508,6 +512,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 @@ -537,7 +543,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 \ @@ -748,6 +755,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 @@ -779,6 +787,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 @@ -799,6 +808,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 \ @@ -972,6 +982,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)/character.h \ @@ -1029,6 +1040,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 @@ -1195,6 +1207,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 @@ -1263,6 +1276,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 \ @@ -1309,6 +1323,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 \ @@ -1426,6 +1452,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 \ |