diff options
author | anton <anton@cvs.openbsd.org> | 2018-12-17 22:11:38 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2018-12-17 22:11:38 +0000 |
commit | a61fb3953ad3bb620b4171a14959e208872b958c (patch) | |
tree | d30d6e4a5c9331913f608759e392d51438a88dba /regress/sys/dev | |
parent | dcce8185403658c2bab30017cf15071135ede969 (diff) |
add missing dependency on PROG
Diffstat (limited to 'regress/sys/dev')
-rw-r--r-- | regress/sys/dev/kcov/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/regress/sys/dev/kcov/Makefile b/regress/sys/dev/kcov/Makefile index fd236cf226b..dabc14a03d7 100644 --- a/regress/sys/dev/kcov/Makefile +++ b/regress/sys/dev/kcov/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2018/12/16 15:56:03 anton Exp $ +# $OpenBSD: Makefile,v 1.3 2018/12/17 22:11:37 anton Exp $ PROG= kcov WARNINGS= yes @@ -10,6 +10,9 @@ TESTS+= mode TESTS+= open TESTS+= close +REGRESS_SETUP_ONCE= setup +setup: ${PROG} + .for t in ${TESTS} $t: @echo "\n======== ${@} ========" |