summaryrefslogtreecommitdiff
path: root/gnu/lib/libobjc
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-04-07 09:30:05 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-04-07 09:30:05 +0000
commitaf968949b10123abc8886a7ce119cbe7eb78eaa4 (patch)
tree4bd43be1adecb370aa6e2e5534562052b37bb5c2 /gnu/lib/libobjc
parentbf4990bb7668994c9886e573949b64a44f2df723 (diff)
Notes
Diffstat (limited to 'gnu/lib/libobjc')
-rw-r--r--gnu/lib/libobjc/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/gnu/lib/libobjc/Makefile b/gnu/lib/libobjc/Makefile
new file mode 100644
index 000000000000..b3ffc0b24715
--- /dev/null
+++ b/gnu/lib/libobjc/Makefile
@@ -0,0 +1,42 @@
+# $FreeBSD$
+
+OBJCDIR=${.CURDIR}/../../../contrib/libobjc
+GCCDIR= ${.CURDIR}/../../../contrib/gcc
+
+.PATH: ${OBJCDIR}/objc ${OBJCDIR}
+
+LIB= objc
+NOMAN= sorry
+NOPIC= works but method lookup slowdown is significant
+
+SRCS= archive.c class.c encoding.c gc.c hash.c init.c misc.c \
+ nil_method.c objects.c sarray.c selector.c sendmsg.c \
+ thr.c thr-single.c \
+ NXConstStr.m Object.m Protocol.m linking.m
+
+HDRS= encoding.h hash.h objc-api.h objc-list.h objc.h runtime.h \
+ sarray.h thr.h typedstream.h NXConstStr.h Object.h Protocol.h
+
+CFLAGS+= -fgnu-runtime -DHAVE_GTHR_DEFAULT -DIN_TARGET_LIBS
+CFLAGS+= -I. -I${.CURDIR}/../../usr.bin/cc/cc_tools
+CFLAGS+= -I${OBJCDIR}/objc -I${OBJCDIR}
+CFLAGS+= -I${GCCDIR}/config -I${GCCDIR}
+
+beforeinstall:
+ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${HDRS:S;^;${OBJCDIR}/objc/;} ${DESTDIR}/usr/include/objc
+
+GENHDRS= runtime-info.h tconfig.h
+CLEANFILES+= ${GENHDRS}
+SRCS+= ${GENHDRS}
+
+${OBJS}: ${GENHDRS}
+
+runtime-info.h:
+ `${CC} --print-prog-name=cc1obj` -print-objc-runtime-info \
+ < /dev/null > ${.TARGET}
+
+tconfig.h: ${.CURDIR}/../../usr.bin/cc/cc_tools/Makefile
+ ${MAKE} -f ${.ALLSRC} MFILE=${.ALLSRC} ${.TARGET}
+
+.include <bsd.lib.mk>