diff options
Diffstat (limited to 'src/regress/lib/libcrypto/bn/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/bn/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/bn/Makefile b/src/regress/lib/libcrypto/bn/Makefile index ed9298575b..89c8d7861a 100644 --- a/src/regress/lib/libcrypto/bn/Makefile +++ b/src/regress/lib/libcrypto/bn/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.6 2018/11/06 06:56:17 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.7 2022/11/30 02:51:05 jsing Exp $ |
2 | 2 | ||
3 | SUBDIR= \ | 3 | SUBDIR= \ |
4 | addsub \ | 4 | addsub \ |
@@ -6,7 +6,15 @@ SUBDIR= \ | |||
6 | mont \ | 6 | mont \ |
7 | rand | 7 | rand |
8 | 8 | ||
9 | PROGS+= bn_cmp | ||
9 | 10 | ||
10 | install: | 11 | LDADD= -lcrypto |
12 | DPADD= ${LIBCRYPTO} | ||
13 | WARNINGS= Yes | ||
14 | CFLAGS+= -Wall -Wundef -Werror | ||
11 | 15 | ||
12 | .include <bsd.subdir.mk> | 16 | REGRESS_TARGETS += run-bn_cmp |
17 | run-bn_cmp: bn_cmp | ||
18 | ./bn_cmp | ||
19 | |||
20 | .include <bsd.regress.mk> | ||