diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-03-02 21:17:36 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-03-02 21:17:36 +0000 |
commit | e77074fdccf70d1ba4db4c7ff1674fcf1f7c360a (patch) | |
tree | e3d38c683567342fa56887b397eaa60c6c948b86 | |
parent | 4e12f55c947bfcf11f64f2bee66d50d99dfbab01 (diff) |
Simplify the ct Makefile slightly
-rw-r--r-- | regress/lib/libcrypto/ct/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/regress/lib/libcrypto/ct/Makefile b/regress/lib/libcrypto/ct/Makefile index 52830aec92e..2856ddf2888 100644 --- a/regress/lib/libcrypto/ct/Makefile +++ b/regress/lib/libcrypto/ct/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2022/01/14 09:33:46 tb Exp $ +# $OpenBSD: Makefile,v 1.4 2023/03/02 21:17:35 tb Exp $ PROG= cttest LDADD= -lcrypto @@ -9,11 +9,7 @@ CFLAGS+= -Wundef -Werror CFLAGS+= -DLIBRESSL_CRYPTO_INTERNAL -DLIBRESSL_INTERNAL CFLAGS+= -I$(BSDSRCDIR)/lib/libcrypto -REGRESS_TARGETS= \ - regress-cttest - -regress-cttest: ${PROG} - ./cttest \ - ${.CURDIR}/../../libcrypto/ct/ +run-regress-cttest: cttest + ./cttest ${.CURDIR}/../../libcrypto/ct/ .include <bsd.regress.mk> |