summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/general/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/regress/lib/libcrypto/bn/general/Makefile8
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
5PROGS += bntest 5PROGS += bntest
6PROGS += bn_mod_exp2_mont 6PROGS += bn_mod_exp2_mont
7PROGS += bn_mod_sqrt 7PROGS += bn_mod_sqrt
8PROGS += bn_primes
8PROGS += bn_to_string 9PROGS += bn_to_string
9 10
10LDADD = ${CRYPTO_INT} 11LDADD = ${CRYPTO_INT}
11DPADD = ${LIBCRYPTO} 12DPADD = ${LIBCRYPTO}
12WARNINGS = Yes 13WARNINGS = Yes
13CFLAGS += -Werror 14CFLAGS += -Werror
15CFLAGS += -I${.CURDIR}/../../../../../lib/libcrypto/bn/
14CLEANFILES = bntest.out bc.out 16CLEANFILES = bntest.out bc.out
15 17
16REGRESS_TARGETS += run-bntest 18REGRESS_TARGETS += run-bntest
@@ -30,6 +32,10 @@ REGRESS_TARGETS += run-bn_mod_sqrt
30run-bn_mod_sqrt: bn_mod_sqrt 32run-bn_mod_sqrt: bn_mod_sqrt
31 ./bn_mod_sqrt 33 ./bn_mod_sqrt
32 34
35REGRESS_TARGETS += run-bn_primes
36run-bn_primes: bn_primes
37 ./bn_primes
38
33REGRESS_TARGETS += run-bn_to_string 39REGRESS_TARGETS += run-bn_to_string
34run-bn_to_string: bn_to_string 40run-bn_to_string: bn_to_string
35 ./bn_to_string 41 ./bn_to_string