summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>