diff options
Diffstat (limited to 'src/regress/lib/libcrypto/bn/general/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/bn/general/Makefile | 11 |
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 | ||
5 | PROGS += bntest | 5 | PROGS += bntest |
6 | PROGS += bn_isqrt | ||
6 | PROGS += bn_mod_exp2_mont | 7 | PROGS += bn_mod_exp2_mont |
7 | PROGS += bn_mod_sqrt | 8 | PROGS += bn_mod_sqrt |
8 | PROGS += bn_primes | 9 | PROGS += bn_primes |
@@ -42,4 +43,12 @@ REGRESS_TARGETS += run-bn_to_string | |||
42 | run-bn_to_string: bn_to_string | 43 | run-bn_to_string: bn_to_string |
43 | ./bn_to_string | 44 | ./bn_to_string |
44 | 45 | ||
46 | LDADD_bn_isqrt = ${CRYPTO_INT} | ||
47 | REGRESS_TARGETS += run-bn_isqrt | ||
48 | run-bn_isqrt: bn_isqrt | ||
49 | ./bn_isqrt | ||
50 | |||
51 | print-tables: bn_isqrt | ||
52 | @./bn_isqrt -C | ||
53 | |||
45 | .include <bsd.regress.mk> | 54 | .include <bsd.regress.mk> |