From e9bf0f92ea236fe826b8c92c442f1aa638bb94c7 Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 19 Sep 1996 16:19:49 +0000 Subject: Add libobjc, the Objective-C runtime library. --- gnu/lib/Makefile | 4 ++-- gnu/lib/libobjc/Makefile | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 gnu/lib/libobjc/Makefile (limited to 'gnu/lib') diff --git a/gnu/lib/Makefile b/gnu/lib/Makefile index 59ea61c..9359bc1 100644 --- a/gnu/lib/Makefile +++ b/gnu/lib/Makefile @@ -1,5 +1,5 @@ -# $Id: Makefile,v 1.10 1995/11/13 19:12:10 markm Exp $ +# $Id: Makefile,v 1.11 1996/02/11 18:16:11 phk Exp $ -SUBDIR= libdialog libg++ libgmp libmp libregex libreadline +SUBDIR= libdialog libg++ libgmp libmp libobjc libregex libreadline .include diff --git a/gnu/lib/libobjc/Makefile b/gnu/lib/libobjc/Makefile new file mode 100644 index 0000000..2083d23 --- /dev/null +++ b/gnu/lib/libobjc/Makefile @@ -0,0 +1,33 @@ +# Makefile for libobjc +# $Id$ + +GCCDIR= ${.CURDIR}/../../../contrib/gcc + +.PATH: ${GCCDIR}/objc + +LIB= objc +NOMAN= sorry +NOPIC= does not work + +SRCS= archive.c class.c encoding.c hash.c init.c misc.c \ + my_objects.c sarray.c selector.c my_sendmsg.c \ + NXConstStr.m Object.m Protocol.m + +HDRS= encoding.h hash.h list.h objc-api.h objc.h sarray.h typedstream.h \ + NXConstStr.h Object.h Protocol.h + +CFLAGS+= -I${GCCDIR}/objc -I${GCCDIR} + +beforeinstall: + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${HDRS:S;^;${GCCDIR}/objc/;} ${DESTDIR}/usr/include/objc + +my_objects.c: objects.c + sed -e '/\.\.\/tconfig.h/d' < ${GCCDIR}/objc/objects.c > my_objects.c + +my_sendmsg.c: sendmsg.c + sed -e '/\.\.\/tconfig.h/d' < ${GCCDIR}/objc/sendmsg.c > my_sendmsg.c + +CLEANFILES+= my_objects.c my_sendmsg.c + +.include -- cgit v1.1