diff options
author | tb <> | 2020-10-02 08:07:33 +0000 |
---|---|---|
committer | tb <> | 2020-10-02 08:07:33 +0000 |
commit | 0443640b1c857e0ae0b6b57e575a10b73993f15a (patch) | |
tree | 77f9e2c9ffbc9addea3a46e25a26b1354351aa6e /src | |
parent | 568878092b28ba0ff0a5e762e7043f3be79969a1 (diff) | |
download | openbsd-0443640b1c857e0ae0b6b57e575a10b73993f15a.tar.gz openbsd-0443640b1c857e0ae0b6b57e575a10b73993f15a.tar.bz2 openbsd-0443640b1c857e0ae0b6b57e575a10b73993f15a.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 |