Deleted Added
full compact
Makefile (261897) Makefile (263161)
1# $FreeBSD: head/lib/atf/libatf-c/tests/detail/Makefile 261897 2014-02-14 19:33:16Z jmmv $
1# $FreeBSD: head/lib/atf/libatf-c/tests/detail/Makefile 263161 2014-03-14 08:56:19Z 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 dynstr_test \
13 env_test \
14 fs_test \
15 list_test \
16 map_test \
17 process_test \
18 sanity_test \
19 text_test \
20 user_test
21ATF_TESTS_C+= ${_T}
22SRCS.${_T}= ${_T}.c test_helpers.c
23.endfor
24
25.for p in process_helpers version_helper
26PROGS+= ${p}
27SRCS.${p}= ${p}.c
28MAN.${p}= # defined
29BINDIR.${p}= ${TESTSDIR}
30.endfor
31version_helper.o: atf-version
32
33.include "../../../common.mk"
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 dynstr_test \
13 env_test \
14 fs_test \
15 list_test \
16 map_test \
17 process_test \
18 sanity_test \
19 text_test \
20 user_test
21ATF_TESTS_C+= ${_T}
22SRCS.${_T}= ${_T}.c test_helpers.c
23.endfor
24
25.for p in process_helpers version_helper
26PROGS+= ${p}
27SRCS.${p}= ${p}.c
28MAN.${p}= # defined
29BINDIR.${p}= ${TESTSDIR}
30.endfor
31version_helper.o: atf-version
32
33.include "../../../common.mk"
34.include <atf.test.mk>
34.include <bsd.test.mk>