Do not install atf-config, atf-report, atf-run nor atf-version when

MKKYUA!=no.  The newly imported kyua-atf-compat module provides a
backwards-compatibility implementation of atf-report and atf-run
based on kyua(1).
This commit is contained in:
jmmv 2013-02-25 00:22:10 +00:00
parent 1a338a3807
commit 8c23905fbe
4 changed files with 27 additions and 11 deletions

View File

@ -1,5 +1,9 @@
# $NetBSD: Makefile,v 1.1 2009/01/19 07:13:03 jmmv Exp $
# $NetBSD: Makefile,v 1.2 2013/02/25 00:22:10 jmmv Exp $
.include <bsd.init.mk>
.if !(${MKKYUA} != "no")
SUBDIR= atf
.endif
.include <bsd.subdir.mk>

View File

@ -1,5 +1,10 @@
# $NetBSD: Makefile,v 1.2 2010/06/04 08:33:41 jmmv Exp $
# $NetBSD: Makefile,v 1.3 2013/02/25 00:22:11 jmmv Exp $
SUBDIR= doc examples xml xsl
.include <bsd.init.mk>
SUBDIR= doc
.if !(${MKKYUA} != "no")
SUBDIR+= examples xml xsl
.endif
.include <bsd.subdir.mk>

View File

@ -1,18 +1,20 @@
# $NetBSD: Makefile,v 1.6 2010/10/20 09:20:10 jmmv Exp $
# $NetBSD: Makefile,v 1.7 2013/02/25 00:22:11 jmmv Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/atf
ATFFILE= yes
SUBDIR= atf-c \
TESTS_SUBDIRS= atf-c \
atf-c++ \
atf-config \
atf-report \
atf-run \
atf-sh \
test-programs
.if !(${MKKYUA} != "no")
TESTS_SUBDIRS+= atf-config \
atf-report \
atf-run
.endif
SRCDIR= ${NETBSDSRCDIR}/external/bsd/atf/dist
.PATH: ${SRCDIR}

View File

@ -1,5 +1,10 @@
# $NetBSD: Makefile,v 1.3 2010/10/20 09:20:12 jmmv Exp $
# $NetBSD: Makefile,v 1.4 2013/02/25 00:22:11 jmmv Exp $
SUBDIR= atf-config atf-report atf-run atf-sh atf-version
.include <bsd.init.mk>
SUBDIR= atf-sh
.if !(${MKKYUA} != "no")
SUBDIR+= atf-config atf-report atf-run atf-version
.endif
.include <bsd.subdir.mk>