diff options
author | tb <> | 2020-10-02 08:07:33 +0000 |
---|---|---|
committer | tb <> | 2020-10-02 08:07:33 +0000 |
commit | f0d357b9eadb2e4521846bc9db12b0cc9cc9de76 (patch) | |
tree | 77f9e2c9ffbc9addea3a46e25a26b1354351aa6e /src | |
parent | 24c1472944e53124a9ed8f5baef3fd8496632a4f (diff) | |
download | openbsd-f0d357b9eadb2e4521846bc9db12b0cc9cc9de76.tar.gz openbsd-f0d357b9eadb2e4521846bc9db12b0cc9cc9de76.tar.bz2 openbsd-f0d357b9eadb2e4521846bc9db12b0cc9cc9de76.zip |
Tidy up: no need to link statically against libcrypto and no need
to look at its private headers either.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/x509/bettertls/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/x509/bettertls/Makefile b/src/regress/lib/libcrypto/x509/bettertls/Makefile index c930c21cae..fabbebcca7 100644 --- a/src/regress/lib/libcrypto/x509/bettertls/Makefile +++ b/src/regress/lib/libcrypto/x509/bettertls/Makefile | |||
@@ -1,10 +1,10 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2020/07/15 03:12:42 beck Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2020/10/02 08:07:33 tb Exp $ |
2 | 2 | ||
3 | PROGS = verify | 3 | PROGS= verify |
4 | LDADD= -Wl,-Bstatic -lcrypto -Wl,-Bdynamic | 4 | LDADD= -lcrypto |
5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
7 | CFLAGS+= -g -DLIBRESSL_INTERNAL -Wundef -Werror -I$(BSDSRCDIR)/lib/libcrypto/x509 | 7 | CFLAGS+= -g -DLIBRESSL_INTERNAL -Wundef -Werror |
8 | 8 | ||
9 | REGRESS_TARGETS= bettertls-test | 9 | REGRESS_TARGETS= bettertls-test |
10 | CLEANFILES+= test.out | 10 | CLEANFILES+= test.out |