summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-03-26 18:34:36 +0000
committertb <>2023-03-26 18:34:36 +0000
commit95750a6de606505162ce4f3fcc3d026deadd1fb0 (patch)
tree249a0e15e7b77a5bbdc48171d69cc36f6400ffef /src
parentb2acde64a46da48bebfe7c490b42d84c3d64ba62 (diff)
downloadopenbsd-95750a6de606505162ce4f3fcc3d026deadd1fb0.tar.gz
openbsd-95750a6de606505162ce4f3fcc3d026deadd1fb0.tar.bz2
openbsd-95750a6de606505162ce4f3fcc3d026deadd1fb0.zip
bn_primes: there is no need to link this statically. It can pull the
primes table in directly.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/bn/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/Makefile b/src/regress/lib/libcrypto/bn/Makefile
index 71b1f7a8d2..93baac074b 100644
--- a/src/regress/lib/libcrypto/bn/Makefile
+++ b/src/regress/lib/libcrypto/bn/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.24 2023/03/18 09:09:11 tb Exp $ 1# $OpenBSD: Makefile,v 1.25 2023/03/26 18:34:36 tb Exp $
2 2
3PROGS += bn_add_sub 3PROGS += bn_add_sub
4PROGS += bn_cmp 4PROGS += bn_cmp
@@ -18,7 +18,6 @@ PROGS += bn_word
18 18
19STATIC_LINK += bn_isqrt 19STATIC_LINK += bn_isqrt
20STATIC_LINK += bn_mod_exp 20STATIC_LINK += bn_mod_exp
21STATIC_LINK += bn_primes
22STATIC_LINK += bn_rand_interval 21STATIC_LINK += bn_rand_interval
23STATIC_LINK += bn_test 22STATIC_LINK += bn_test
24STATIC_LINK += bn_to_string 23STATIC_LINK += bn_to_string
@@ -70,4 +69,8 @@ benchmark: bn_mul_div bn_shift
70LDADD_$p += ${CRYPTO_INT} 69LDADD_$p += ${CRYPTO_INT}
71.endfor 70.endfor
72 71
72SRCS_bn_primes = bn_primes.c bn_small_primes.c
73
74.PATH: ${.CURDIR}/../../../../lib/libcrypto/bn
75
73.include <bsd.regress.mk> 76.include <bsd.regress.mk>