xref: /minix3/external/bsd/kyua-testers/lib/libatf_tester/Makefile (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc# $NetBSD: Makefile,v 1.1 2013/02/19 06:04:42 jmmv Exp $
2*11be35a1SLionel Sambuc
3*11be35a1SLionel Sambuc#NOLINT=		# defined
4*11be35a1SLionel Sambuc
5*11be35a1SLionel Sambuc.include <bsd.own.mk>
6*11be35a1SLionel Sambuc
7*11be35a1SLionel SambucLIB=		atf_tester
8*11be35a1SLionel SambucLIBISPRIVATE=	yes
9*11be35a1SLionel Sambuc
10*11be35a1SLionel SambucSRCDIR=		${NETBSDSRCDIR}/external/bsd/kyua-testers/dist
11*11be35a1SLionel Sambuc.PATH:		${SRCDIR}
12*11be35a1SLionel Sambuc
13*11be35a1SLionel SambucCPPFLAGS+=	-I${.CURDIR}/../libtester  # For config.h and defs.h.
14*11be35a1SLionel SambucCPPFLAGS+=	-I${SRCDIR}  # For non-installed headers.
15*11be35a1SLionel Sambuc
16*11be35a1SLionel SambucCPPFLAGS+=	-DHAVE_CONFIG_H
17*11be35a1SLionel Sambuc
18*11be35a1SLionel SambucWARNS?=		5
19*11be35a1SLionel Sambuc
20*11be35a1SLionel SambucSRCS=		atf_list.c
21*11be35a1SLionel SambucSRCS+=		atf_result.c
22*11be35a1SLionel Sambuc
23*11be35a1SLionel Sambuc.include <bsd.lib.mk>
24