Note the check-clean target, which removes files related to the check-*
targets.
This commit is contained in:
parent
44fed2736c
commit
56b17a4580
1 changed files with 11 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: bsd.check.mk,v 1.1 2006/06/03 23:11:42 jlam Exp $
|
||||
# $NetBSD: bsd.check.mk,v 1.2 2006/06/07 17:04:01 jlam Exp $
|
||||
#
|
||||
# This Makefile fragment is included by bsd.pkg.mk and provides all
|
||||
# variables and targets related to build and install checks.
|
||||
|
@ -14,3 +14,13 @@
|
|||
.include "${PKGSRCDIR}/mk/check/check-shlibs.mk"
|
||||
.include "${PKGSRCDIR}/mk/check/check-vulnerable.mk"
|
||||
.include "${PKGSRCDIR}/mk/check/check-wrkref.mk"
|
||||
|
||||
######################################################################
|
||||
### check-clean (PRIVATE)
|
||||
######################################################################
|
||||
### check-clean is a helper target onto which one can hook all of the
|
||||
### targets that clean up the output of "check" targets.
|
||||
###
|
||||
.PHONY: check-clean
|
||||
check-clean:
|
||||
@${DO_NADA}
|
||||
|
|
Loading…
Reference in a new issue