aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2000-12-05 23:05:57 +0000
committerJason Rumney2000-12-05 23:05:57 +0000
commitc28a075b11d6919003223593ba2178243b5c64a4 (patch)
tree9cbc844dc9e95e6eb3992ff36758a98cd57b1339 /src
parent4ea14a3b573b458d1d0d6e2f2dad1d271ca93d31 (diff)
downloademacs-c28a075b11d6919003223593ba2178243b5c64a4.tar.gz
emacs-c28a075b11d6919003223593ba2178243b5c64a4.zip
(sunfns.obj): Remove.
(md5.obj): Add. (fns.obj): Depend on md5.h.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/makefile.nt17
2 files changed, 13 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5c01438c3b5..da18425bb8b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -5,6 +5,12 @@
5 5
6 * md5.c: Delay include of md5.h until after namespace cleaning. 6 * md5.c: Delay include of md5.h until after namespace cleaning.
7 7
8 * makefile.w32-in (fns.o): Depend on md5.h
9 (md5.o): New target.
10 (sunfns.o): Remove.
11
12 * makefile.nt: Likewise.
13
82000-12-05 Jason Rumney <jasonr@altavista.net> 142000-12-05 Jason Rumney <jasonr@altavista.net>
9 15
10 * w32term.c (expose_area): Complete last change. 16 * w32term.c (expose_area): Complete last change.
diff --git a/src/makefile.nt b/src/makefile.nt
index cd7419f49a0..16264d7da85 100644
--- a/src/makefile.nt
+++ b/src/makefile.nt
@@ -116,6 +116,7 @@ OBJ1 = $(BLD)\abbrev.obj \
116 $(BLD)\lread.obj \ 116 $(BLD)\lread.obj \
117 $(BLD)\macros.obj \ 117 $(BLD)\macros.obj \
118 $(BLD)\marker.obj \ 118 $(BLD)\marker.obj \
119 $(BLD)\md5.obj \
119 $(BLD)\minibuf.obj \ 120 $(BLD)\minibuf.obj \
120 $(BLD)\mocklisp.obj 121 $(BLD)\mocklisp.obj
121 122
@@ -645,7 +646,8 @@ $(BLD)\fns.obj : \
645 $(SRC)\dispextern.h \ 646 $(SRC)\dispextern.h \
646 $(SRC)\w32gui.h \ 647 $(SRC)\w32gui.h \
647 $(SRC)\intervals.h \ 648 $(SRC)\intervals.h \
648 $(SRC)\composite.h 649 $(SRC)\composite.h \
650 $(SRC)\md5.h
649 651
650$(BLD)\frame.obj : \ 652$(BLD)\frame.obj : \
651 $(SRC)\frame.c \ 653 $(SRC)\frame.c \
@@ -808,6 +810,10 @@ $(BLD)\marker.obj : \
808 $(EMACS_ROOT)\src\config.h \ 810 $(EMACS_ROOT)\src\config.h \
809 $(SRC)\buffer.h 811 $(SRC)\buffer.h
810 812
813$(BLD)\md5.obj : \
814 $(SRC)\md5.c \
815 $(SRC)\md5.h
816
811$(BLD)\minibuf.obj : \ 817$(BLD)\minibuf.obj : \
812 $(SRC)\minibuf.c \ 818 $(SRC)\minibuf.c \
813 $(EMACS_ROOT)\src\s\ms-w32.h \ 819 $(EMACS_ROOT)\src\s\ms-w32.h \
@@ -977,15 +983,6 @@ $(BLD)\strftime.obj : \
977 $(EMACS_ROOT)\src\m\intel386.h \ 983 $(EMACS_ROOT)\src\m\intel386.h \
978 $(EMACS_ROOT)\src\config.h 984 $(EMACS_ROOT)\src\config.h
979 985
980$(BLD)\sunfns.obj : \
981 $(SRC)\sunfns.c \
982 $(EMACS_ROOT)\src\s\ms-w32.h \
983 $(EMACS_ROOT)\src\m\intel386.h \
984 $(EMACS_ROOT)\src\config.h \
985 $(SRC)\window.h \
986 $(SRC)\buffer.h \
987 $(SRC)\termhooks.h
988
989$(BLD)\syntax.obj : \ 986$(BLD)\syntax.obj : \
990 $(SRC)\syntax.c \ 987 $(SRC)\syntax.c \
991 $(EMACS_ROOT)\src\s\ms-w32.h \ 988 $(EMACS_ROOT)\src\s\ms-w32.h \