Makefile revision 264483
1# $FreeBSD: stable/10/lib/atf/libatf-c++/tests/detail/Makefile 264483 2014-04-14 23:51:57Z jmmv $
2
3.include <bsd.init.mk>
4
5TESTSDIR=	${TESTSBASE}/lib/atf/libatf-c++/detail
6
7ATF=		${.CURDIR:H:H:H:H:H}/contrib/atf
8.PATH:		${ATF}/atf-c++/detail
9
10CFLAGS+=	-I${ATF}
11
12.for _T in	application_test \
13		env_test \
14		exceptions_test \
15		fs_test \
16		process_test \
17		sanity_test \
18		text_test
19ATF_TESTS_CXX+=	${_T}
20SRCS.${_T}=	${_T}.cpp test_helpers.cpp
21.endfor
22
23.for p in version_helper
24PROGS_CXX+=	${p}
25SRCS.${p}=	${p}.cpp
26MAN.${p}=	# defined
27BINDIR.${p}=	${TESTSDIR}
28.endfor
29version_helper.o: atf-version
30
31.include "../../../common.mk"
32.include <bsd.test.mk>
33