49dae58b28
Fix a related typo while here. Note, this change results in the Kyuafile inclusion in the runtime package, which needs to be fixed, however addresses the PR as far as I can tell in my tests. PR: 209114 Submitted by: ngie Sponsored by: The FreeBSD Foundation
26 lines
410 B
Makefile
26 lines
410 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
FILESGROUPS= FILES
|
|
PACKAGE= tests
|
|
FILESGROUPS+= TESTS
|
|
TESTSPACKAGE= ${PACKAGE}
|
|
TESTS+= Kyuafile
|
|
|
|
SUBDIR+= etc
|
|
SUBDIR+= sys
|
|
SUBDIR_PARALLEL=
|
|
|
|
TESTSDIR= ${TESTSBASE}
|
|
KYUAFILE= yes
|
|
|
|
FILES+= README
|
|
FILESDIR_README= ${TESTSDIR}
|
|
|
|
afterinstall: install-tests-local
|
|
install-tests-local: .PHONY
|
|
${INSTALL_SYMLINK} ../local/tests ${DESTDIR}${TESTSDIR}/local
|
|
|
|
.include <bsd.test.mk>
|