diff options
author | Kim F. Storm <storm@cua.dk> | 2004-03-11 00:26:37 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-03-11 00:26:37 +0000 |
commit | 25abe3d4f6ef6e3b9af4b4bfaa44d46b0a2a64c5 (patch) | |
tree | 94a3c06c445e6f9d41caa5782cf2156d2206c940 /src/makefile.w32-in | |
parent | 8eaae3d4540ab991aecd989e00cf43507fa35c85 (diff) | |
download | emacs-25abe3d4f6ef6e3b9af4b4bfaa44d46b0a2a64c5.tar.gz |
Image consolidation:
(OBJ1): Add image.o.
($(BLD)/image.$(O)): Add dependencies.
Diffstat (limited to 'src/makefile.w32-in')
-rw-r--r-- | src/makefile.w32-in | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 0c153b185d8..c2a6e4a1eeb 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in @@ -119,7 +119,8 @@ OBJ1 = $(BLD)/abbrev.$(O) \ $(BLD)/category.$(O) \ $(BLD)/ccl.$(O) \ $(BLD)/fontset.$(O) \ - $(BLD)/fringe.$(O) + $(BLD)/fringe.$(O) \ + $(BLD)/image.$(O) WIN32OBJ = $(BLD)/w32term.$(O) \ $(BLD)/w32xfns.$(O) \ @@ -746,6 +747,24 @@ $(BLD)/gmalloc.$(O) : \ $(EMACS_ROOT)/nt/inc/sys/param.h \ $(SRC)/getpagesize.h +$(BLD)/image.$(O): \ + $(SRC)/image.c \ + $(EMACS_ROOT)/src/s/ms-w32.h \ + $(EMACS_ROOT)/src/m/intel386.h \ + $(EMACS_ROOT)/src/config.h \ + $(SRC)/atimer.h \ + $(SRC)/blockinput.h \ + $(SRC)/dispextern.h \ + $(SRC)/epaths.h \ + $(SRC)/frame.h \ + $(SRC)/systime.h \ + $(SRC)/termhooks.h \ + $(SRC)/w32bdf.h \ + $(SRC)/w32gui.h \ + $(SRC)/w32heap.h \ + $(SRC)/w32term.h \ + $(SRC)/window.h + $(BLD)/indent.$(O) : \ $(SRC)/indent.c \ $(EMACS_ROOT)/src/s/ms-w32.h \ |