mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -05:00
We should not be leaking these interfaces to the outside world given that it's much easier for third-party components to use the devel/atf package from ports. As a side-effect, we can also drop the ATF pkgconfig and aclocal files from the base system. Nothing in the base system needs these, and it was quite ugly to have to get them installed only so that a few ports could build. The offending ports have been fixed to depend on devel/atf explicitly. Reviewed by: bapt
29 lines
497 B
Makefile
29 lines
497 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/atf/libatf-c++
|
|
TESTS_SUBDIRS= detail
|
|
|
|
ATF= ${.CURDIR:H:H:H:H}/contrib/atf
|
|
.PATH: ${ATF}/atf-c++
|
|
.PATH: ${ATF}/atf-c++/detail
|
|
|
|
CFLAGS+= -I${ATF}
|
|
|
|
FILESDIR= ${TESTSDIR}
|
|
FILES= macros_hpp_test.cpp
|
|
FILES+= unused_test.cpp
|
|
|
|
.for _T in atf_c++_test \
|
|
build_test \
|
|
check_test \
|
|
config_test \
|
|
macros_test \
|
|
tests_test \
|
|
utils_test
|
|
ATF_TESTS_CXX+= ${_T}
|
|
SRCS.${_T}= ${_T}.cpp test_helpers.cpp
|
|
.endfor
|
|
|
|
.include <bsd.test.mk>
|