diff options
author | Kresten Krab Thorup <krab@gcc.gnu.org> | 1993-08-24 09:58:45 +0000 |
---|---|---|
committer | Kresten Krab Thorup <krab@gcc.gnu.org> | 1993-08-24 09:58:45 +0000 |
commit | a62354a0db054bbbdc2f71f017ae0e915ff3e1f8 (patch) | |
tree | c811f5752880e2a1f310c9da80de5350adbfdc32 /gcc | |
parent | 30c0e2df8c68f8cda6d51c71ed945cd151ead94d (diff) | |
download | gcc-a62354a0db054bbbdc2f71f017ae0e915ff3e1f8.zip gcc-a62354a0db054bbbdc2f71f017ae0e915ff3e1f8.tar.gz gcc-a62354a0db054bbbdc2f71f017ae0e915ff3e1f8.tar.bz2 |
(sendmsg.c, fflags, xforward): Targets removed;
(OBJC_O): Added encoding.o;
(OBJC_H): Added encoding.h, removed mutex.h.
From-SVN: r5200
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/objc/Makefile.in | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/gcc/objc/Makefile.in b/gcc/objc/Makefile.in index 05bba2f..2b97f73 100644 --- a/gcc/objc/Makefile.in +++ b/gcc/objc/Makefile.in @@ -52,7 +52,7 @@ SUBDIR_INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/config all: cd ..; $(MAKE) sublibobjc.a -OBJC_O = hash.o sarray.o class.o sendmsg.o init.o archive.o \ +OBJC_O = hash.o sarray.o class.o sendmsg.o init.o archive.o encoding.o \ selector.o objects.o misc.o Object.o Protocol.o libobjc.a: $(OBJC_O) @@ -62,8 +62,7 @@ libobjc.a: $(OBJC_O) OBJC_H = hash.h list.h sarray.h objc.h \ objc-api.h \ - Object.h Protocol.h mutex.h \ - typedstream.h + Object.h Protocol.h encoding.h typedstream.h # copy objc headers to installation include directory copy-headers: @@ -75,19 +74,6 @@ copy-headers: chmod a+r $(incinstalldir)/objc/$$file; \ done -sendmsg.o: sendmsg.c fflags - $(GCC_FOR_TARGET) `cat fflags` -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/sendmsg.c - -## Next to are for heuristics on forwarding mechanism... -xforward: xforward.c - -$(GCC_FOR_TARGET) -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/xforward.c - -$(GCC_FOR_TARGET) ./xforward.o -o xforward - if [ ! -f ./xforward ]; then touch ./xforward; else true; fi - -fflags: xforward - -rm -f fflags - -if [ -s ./xforward ]; then ./xforward > fflags; else touch fflags; fi - mostlyclean: -rm -f *.o libobjc.a xforward fflags clean: mostlyclean |