diff options
Diffstat (limited to '')
-rw-r--r-- | src/regress/lib/libcrypto/bn/general/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/bn/general/Makefile b/src/regress/lib/libcrypto/bn/general/Makefile index 4f1fcc852a..4c36648ec7 100644 --- a/src/regress/lib/libcrypto/bn/general/Makefile +++ b/src/regress/lib/libcrypto/bn/general/Makefile | |||
@@ -1,16 +1,18 @@ | |||
1 | # $OpenBSD: Makefile,v 1.10 2022/03/16 12:37:44 bluhm Exp $ | 1 | # $OpenBSD: Makefile,v 1.11 2022/06/18 19:53:19 tb Exp $ |
2 | 2 | ||
3 | .include "../../Makefile.inc" | 3 | .include "../../Makefile.inc" |
4 | 4 | ||
5 | PROGS += bntest | 5 | PROGS += bntest |
6 | PROGS += bn_mod_exp2_mont | 6 | PROGS += bn_mod_exp2_mont |
7 | PROGS += bn_mod_sqrt | 7 | PROGS += bn_mod_sqrt |
8 | PROGS += bn_primes | ||
8 | PROGS += bn_to_string | 9 | PROGS += bn_to_string |
9 | 10 | ||
10 | LDADD = ${CRYPTO_INT} | 11 | LDADD = ${CRYPTO_INT} |
11 | DPADD = ${LIBCRYPTO} | 12 | DPADD = ${LIBCRYPTO} |
12 | WARNINGS = Yes | 13 | WARNINGS = Yes |
13 | CFLAGS += -Werror | 14 | CFLAGS += -Werror |
15 | CFLAGS += -I${.CURDIR}/../../../../../lib/libcrypto/bn/ | ||
14 | CLEANFILES = bntest.out bc.out | 16 | CLEANFILES = bntest.out bc.out |
15 | 17 | ||
16 | REGRESS_TARGETS += run-bntest | 18 | REGRESS_TARGETS += run-bntest |
@@ -30,6 +32,10 @@ REGRESS_TARGETS += run-bn_mod_sqrt | |||
30 | run-bn_mod_sqrt: bn_mod_sqrt | 32 | run-bn_mod_sqrt: bn_mod_sqrt |
31 | ./bn_mod_sqrt | 33 | ./bn_mod_sqrt |
32 | 34 | ||
35 | REGRESS_TARGETS += run-bn_primes | ||
36 | run-bn_primes: bn_primes | ||
37 | ./bn_primes | ||
38 | |||
33 | REGRESS_TARGETS += run-bn_to_string | 39 | REGRESS_TARGETS += run-bn_to_string |
34 | run-bn_to_string: bn_to_string | 40 | run-bn_to_string: bn_to_string |
35 | ./bn_to_string | 41 | ./bn_to_string |