diff options
author | dim <dim@FreeBSD.org> | 2011-04-17 21:03:23 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-04-17 21:03:23 +0000 |
commit | d9e6052d4ec703f14849c7b8cad2795fc141edec (patch) | |
tree | 5fe8b25843e2a335b0bb3410998d4b4363031e4a /gnu/lib/libobjc | |
parent | 34f2672a905032e05414032bd2669880fe72ddb4 (diff) | |
download | FreeBSD-src-d9e6052d4ec703f14849c7b8cad2795fc141edec.zip FreeBSD-src-d9e6052d4ec703f14849c7b8cad2795fc141edec.tar.gz |
Remove libobjc and other Objective-C related components, as these are
extremely outdated, and not used by anything in the base system.
Silence from: current@
Diffstat (limited to 'gnu/lib/libobjc')
-rw-r--r-- | gnu/lib/libobjc/Makefile | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/gnu/lib/libobjc/Makefile b/gnu/lib/libobjc/Makefile deleted file mode 100644 index 80d0240..0000000 --- a/gnu/lib/libobjc/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# $FreeBSD$ - -.include <bsd.own.mk> - -OBJCDIR=${.CURDIR}/../../../contrib/libobjc -GCCDIR= ${.CURDIR}/../../../contrib/gcc -GCCLIB= ${.CURDIR}/../../../contrib/gcclibs - -.PATH: ${OBJCDIR}/objc ${OBJCDIR} - -LIB= objc -SHLIB_MAJOR= 4 - -SRCS= archive.c class.c encoding.c gc.c hash.c init.c linking.m misc.c \ - nil_method.c NXConstStr.m Object.m objects.c Protocol.m sarray.c \ - selector.c sendmsg.c thr.c thr-objc.c exception.c - -# XXX: clang cannot compile libobjc yet -CC:=${CC:C/^(.*\/)?clang$/gcc/1} - -INCS= encoding.h hash.h objc-api.h objc-decls.h objc-list.h objc.h runtime.h \ - sarray.h thr.h typedstream.h NXConstStr.h Object.h Protocol.h -INCSDIR=${INCLUDEDIR}/objc - -CFLAGS+= -DHAVE_GTHR_DEFAULT -DIN_GCC -DIN_TARGET_LIBS -CFLAGS+= -I. -I${.CURDIR}/../../usr.bin/cc/cc_tools -CFLAGS+= -I${OBJCDIR}/objc -I${OBJCDIR} -CFLAGS+= -I${GCCDIR}/config -I${GCCDIR} -CFLAGS+= -I${GCCLIB}/include -CFLAGS+= -fexceptions -frandom-seed=RepeatabilityConsideredGood -OBJCFLAGS= -fgnu-runtime ${CFLAGS} - -GENHDRS= runtime-info.h - -runtime-info.h: - `${CC} --print-prog-name=cc1obj` -print-objc-runtime-info \ - < /dev/null > ${.TARGET} - -.for H in tconfig.h tm.h config.h options.h gthr-default.h unwind.h -$H: ${.CURDIR}/../../usr.bin/cc/cc_tools/Makefile - ${MAKE} -f ${.ALLSRC} MFILE=${.ALLSRC} GCCDIR=${GCCDIR} ${.TARGET} -GENHDRS+= $H -.endfor - -CLEANFILES+= ${GENHDRS} cs-* optionlist -SRCS+= ${GENHDRS} - -${OBJS}: ${GENHDRS} - -.include <bsd.lib.mk> |