diff options
author | tb <> | 2023-03-02 21:17:35 +0000 |
---|---|---|
committer | tb <> | 2023-03-02 21:17:35 +0000 |
commit | f64585e4837c33f2db5540b28f8388a3608e38e6 (patch) | |
tree | f327b3f53dd558c154baa537d73d4b46deb0cef6 | |
parent | 9f6013a18793ed35fbff70704bb5ae5500d87ae0 (diff) | |
download | openbsd-f64585e4837c33f2db5540b28f8388a3608e38e6.tar.gz openbsd-f64585e4837c33f2db5540b28f8388a3608e38e6.tar.bz2 openbsd-f64585e4837c33f2db5540b28f8388a3608e38e6.zip |
Simplify the ct Makefile slightly
-rw-r--r-- | src/regress/lib/libcrypto/ct/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/regress/lib/libcrypto/ct/Makefile b/src/regress/lib/libcrypto/ct/Makefile index 52830aec92..2856ddf288 100644 --- a/src/regress/lib/libcrypto/ct/Makefile +++ b/src/regress/lib/libcrypto/ct/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2022/01/14 09:33:46 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2023/03/02 21:17:35 tb Exp $ |
2 | 2 | ||
3 | PROG= cttest | 3 | PROG= cttest |
4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
@@ -9,11 +9,7 @@ CFLAGS+= -Wundef -Werror | |||
9 | CFLAGS+= -DLIBRESSL_CRYPTO_INTERNAL -DLIBRESSL_INTERNAL | 9 | CFLAGS+= -DLIBRESSL_CRYPTO_INTERNAL -DLIBRESSL_INTERNAL |
10 | CFLAGS+= -I$(BSDSRCDIR)/lib/libcrypto | 10 | CFLAGS+= -I$(BSDSRCDIR)/lib/libcrypto |
11 | 11 | ||
12 | REGRESS_TARGETS= \ | 12 | run-regress-cttest: cttest |
13 | regress-cttest | 13 | ./cttest ${.CURDIR}/../../libcrypto/ct/ |
14 | |||
15 | regress-cttest: ${PROG} | ||
16 | ./cttest \ | ||
17 | ${.CURDIR}/../../libcrypto/ct/ | ||
18 | 14 | ||
19 | .include <bsd.regress.mk> | 15 | .include <bsd.regress.mk> |