summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/general/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/bn/general/Makefile')
-rw-r--r--src/regress/lib/libcrypto/bn/general/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/bn/general/Makefile b/src/regress/lib/libcrypto/bn/general/Makefile
index 913a3db19b..ab642e0769 100644
--- a/src/regress/lib/libcrypto/bn/general/Makefile
+++ b/src/regress/lib/libcrypto/bn/general/Makefile
@@ -1,8 +1,9 @@
1# $OpenBSD: Makefile,v 1.13 2022/06/23 18:09:19 tb Exp $ 1# $OpenBSD: Makefile,v 1.14 2022/07/25 20:48:57 tb Exp $
2 2
3.include "../../Makefile.inc" 3.include "../../Makefile.inc"
4 4
5PROGS += bntest 5PROGS += bntest
6PROGS += bn_isqrt
6PROGS += bn_mod_exp2_mont 7PROGS += bn_mod_exp2_mont
7PROGS += bn_mod_sqrt 8PROGS += bn_mod_sqrt
8PROGS += bn_primes 9PROGS += bn_primes
@@ -42,4 +43,12 @@ REGRESS_TARGETS += run-bn_to_string
42run-bn_to_string: bn_to_string 43run-bn_to_string: bn_to_string
43 ./bn_to_string 44 ./bn_to_string
44 45
46LDADD_bn_isqrt = ${CRYPTO_INT}
47REGRESS_TARGETS += run-bn_isqrt
48run-bn_isqrt: bn_isqrt
49 ./bn_isqrt
50
51print-tables: bn_isqrt
52 @./bn_isqrt -C
53
45.include <bsd.regress.mk> 54.include <bsd.regress.mk>