xref: /minix3/tests/lib/libobjc/Makefile (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc# $NetBSD: Makefile,v 1.2 2011/05/20 13:03:45 joerg Exp $
2*11be35a1SLionel Sambuc
3*11be35a1SLionel SambucTESTSDIR=	${TESTSBASE}/lib/libobjc
4*11be35a1SLionel Sambuc
5*11be35a1SLionel Sambuc.include <bsd.own.mk>
6*11be35a1SLionel Sambuc
7*11be35a1SLionel SambucUNSUPPORTED_COMPILER.clang=	# defined
8*11be35a1SLionel SambucUNSUPPORTED_COMPILER.pcc=	# defined
9*11be35a1SLionel Sambuc
10*11be35a1SLionel Sambuc.if !empty(AVAILABLE_COMPILER:Mgcc)
11*11be35a1SLionel SambucTESTS_C=	t_threads
12*11be35a1SLionel Sambuc.endif
13*11be35a1SLionel Sambuc
14*11be35a1SLionel SambucSRCS.t_threads=	t_threads.m
15*11be35a1SLionel SambucWARNS?=		4
16*11be35a1SLionel SambucCFLAGS+=	-pthread
17*11be35a1SLionel SambucLDFLAGS+=	-pthread
18*11be35a1SLionel SambucDPADD+=		${LIBOBJC}
19*11be35a1SLionel SambucLDADD+=		-lobjc
20*11be35a1SLionel Sambuc
21*11be35a1SLionel Sambuc.include <bsd.test.mk>
22