aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-06-07 19:16:50 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1996-06-07 19:16:50 -0400
commit7228791ecfdf07799dfc66d3b8b885f0c781a474 (patch)
tree73245b8b5fc9b274cf406e01bdfff6cf3de4ca18
parentbb029709d10d1c0d68b5631f83619718acc862fc (diff)
downloadgcc-7228791ecfdf07799dfc66d3b8b885f0c781a474.zip
gcc-7228791ecfdf07799dfc66d3b8b885f0c781a474.tar.gz
gcc-7228791ecfdf07799dfc66d3b8b885f0c781a474.tar.bz2
(OBJC_THREAD_FILE): Add target and dependency.
From-SVN: r12216
-rw-r--r--gcc/objc/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/objc/Makefile.in b/gcc/objc/Makefile.in
index d48db47..086f343 100644
--- a/gcc/objc/Makefile.in
+++ b/gcc/objc/Makefile.in
@@ -25,6 +25,7 @@
# srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
# GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
# GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$$thisdir1/include
+# OBJC_THREAD_FILE="$(OBJC_THREAD_FILE)"
# Two targets are used by ../Makefile: `all' and `mostlyclean'.
SHELL=/bin/sh
@@ -57,7 +58,7 @@ all:
OBJC_O = hash.o sarray.o class.o sendmsg.o init.o archive.o encoding.o \
selector.o objects.o misc.o NXConstStr.o Object.o Protocol.o \
- nil_method.o thr.o
+ nil_method.o thr.o $(OBJC_THREAD_FILE).o
libobjc.a: $(OBJC_O)
-rm -f libobjc.a
@@ -99,5 +100,6 @@ misc.o: misc.c
NXConstStr.o: NXConstStr.m
Object.o: Object.m
Protocol.o: Protocol.m
-thr.o: thr.h thr.c thr-solaris.c thr-irix.c thr-win32.c thr-single.c
+thr.o: thr.h thr.c
+$(OBJC_THREAD_FILE).o: $(OBJC_THREAD_FILE).c
nil_method.o: nil_method.c