(sendmsg.c, fflags, xforward): Targets removed;
authorKresten Krab Thorup <krab@gcc.gnu.org>
Tue, 24 Aug 1993 09:58:45 +0000 (09:58 +0000)
committerKresten Krab Thorup <krab@gcc.gnu.org>
Tue, 24 Aug 1993 09:58:45 +0000 (09:58 +0000)
(OBJC_O): Added encoding.o;
(OBJC_H): Added encoding.h, removed mutex.h.

From-SVN: r5200

gcc/objc/Makefile.in

index 05bba2f27e77bb960e8787c2baab2ee5a79060b3..2b97f731c728f9e1a21e7f2b18c1160f324b860b 100644 (file)
@@ -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