diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-06-19 14:32:37 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-06-19 14:32:37 +0000 |
commit | 21a7e092a6248e384b9d2fa5dc683527fafc6a2f (patch) | |
tree | a66862f95d2b1e96b038892767f3bc87f83c6b0d /regress | |
parent | 75b83436ef8f7fe6654b3e0f44a554f63da72ec2 (diff) |
the test depend on ${PROG}; noticed by david@, mickey@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libevent/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libevent/Makefile b/regress/lib/libevent/Makefile index 3f96ffa8cd5..e027a91f687 100644 --- a/regress/lib/libevent/Makefile +++ b/regress/lib/libevent/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2003/06/16 14:14:29 markus Exp $ +# $OpenBSD: Makefile,v 1.3 2003/06/19 14:32:36 markus Exp $ PROG= eventtest LDADD= -levent @@ -7,10 +7,10 @@ DPADD= ${LIBEVENT} REGRESS_TARGETS= eventtest-select eventtest-kqueue .PHONY: ${REGRESS_TARGETS} -eventtest-kqueue: +eventtest-kqueue: ${PROG} @EVENT_SHOW_METHOD=yes EVENT_NOSELECT=yes ./${PROG} -eventtest-select: +eventtest-select: ${PROG} @EVENT_SHOW_METHOD=yes EVENT_NOKQUEUE=yes ./${PROG} .include <bsd.regress.mk> |