diff options
author | tb <> | 2023-03-26 18:34:36 +0000 |
---|---|---|
committer | tb <> | 2023-03-26 18:34:36 +0000 |
commit | 95750a6de606505162ce4f3fcc3d026deadd1fb0 (patch) | |
tree | 249a0e15e7b77a5bbdc48171d69cc36f6400ffef /src | |
parent | b2acde64a46da48bebfe7c490b42d84c3d64ba62 (diff) | |
download | openbsd-95750a6de606505162ce4f3fcc3d026deadd1fb0.tar.gz openbsd-95750a6de606505162ce4f3fcc3d026deadd1fb0.tar.bz2 openbsd-95750a6de606505162ce4f3fcc3d026deadd1fb0.zip |
bn_primes: there is no need to link this statically. It can pull the
primes table in directly.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/bn/Makefile | 7 |
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 | ||
3 | PROGS += bn_add_sub | 3 | PROGS += bn_add_sub |
4 | PROGS += bn_cmp | 4 | PROGS += bn_cmp |
@@ -18,7 +18,6 @@ PROGS += bn_word | |||
18 | 18 | ||
19 | STATIC_LINK += bn_isqrt | 19 | STATIC_LINK += bn_isqrt |
20 | STATIC_LINK += bn_mod_exp | 20 | STATIC_LINK += bn_mod_exp |
21 | STATIC_LINK += bn_primes | ||
22 | STATIC_LINK += bn_rand_interval | 21 | STATIC_LINK += bn_rand_interval |
23 | STATIC_LINK += bn_test | 22 | STATIC_LINK += bn_test |
24 | STATIC_LINK += bn_to_string | 23 | STATIC_LINK += bn_to_string |
@@ -70,4 +69,8 @@ benchmark: bn_mul_div bn_shift | |||
70 | LDADD_$p += ${CRYPTO_INT} | 69 | LDADD_$p += ${CRYPTO_INT} |
71 | .endfor | 70 | .endfor |
72 | 71 | ||
72 | SRCS_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> |