xref: /minix3/tests/lib/libutil/Makefile (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc# $NetBSD: Makefile,v 1.4 2011/03/30 17:02:17 jruoho Exp $
2*11be35a1SLionel Sambuc
3*11be35a1SLionel SambucNOMAN=		# defined
4*11be35a1SLionel Sambuc
5*11be35a1SLionel Sambuc.include <bsd.own.mk>
6*11be35a1SLionel Sambuc
7*11be35a1SLionel SambucTESTSDIR=	${TESTSBASE}/lib/libutil
8*11be35a1SLionel Sambuc
9*11be35a1SLionel SambucDPADD+=		${LIBUTIL}
10*11be35a1SLionel SambucLDADD+=		-lutil
11*11be35a1SLionel Sambuc
12*11be35a1SLionel SambucTESTS_C=	t_efun
13*11be35a1SLionel Sambuc# LSC: Unsupported on MINIX
14*11be35a1SLionel Sambuc#TESTS_C+=	t_parsedate
15*11be35a1SLionel SambucTESTS_C+=	t_pidfile
16*11be35a1SLionel SambucTESTS_C+=	t_snprintb
17*11be35a1SLionel Sambuc# LSC: Unsupported on MINIX
18*11be35a1SLionel Sambuc#TESTS_C+=	t_sockaddr_snprintf
19*11be35a1SLionel Sambuc
20*11be35a1SLionel Sambuc.if (${USE_INET6} != "no")
21*11be35a1SLionel SambucCFLAGS+=	-DINET6
22*11be35a1SLionel Sambuc.endif
23*11be35a1SLionel Sambuc
24*11be35a1SLionel Sambuc.include <bsd.test.mk>
25