diff options
author | jlam <jlam@pkgsrc.org> | 2006-06-07 17:04:01 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-06-07 17:04:01 +0000 |
commit | 1455c7bf37e67f8c2e497f29d4edd46cee5ba1a8 (patch) | |
tree | bd5806f0037d750e454704f03490c99be26be6c3 /mk/check | |
parent | 9d024babb279a4bdf7e8845261445bf3a8c9b532 (diff) | |
download | pkgsrc-1455c7bf37e67f8c2e497f29d4edd46cee5ba1a8.tar.gz |
Note the check-clean target, which removes files related to the check-*
targets.
Diffstat (limited to 'mk/check')
-rw-r--r-- | mk/check/bsd.check.mk | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/mk/check/bsd.check.mk b/mk/check/bsd.check.mk index 37bca2bed74..d74d00065ee 100644 --- a/mk/check/bsd.check.mk +++ b/mk/check/bsd.check.mk @@ -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} |