summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/bn/Makefile')
-rw-r--r--src/regress/lib/libcrypto/bn/Makefile14
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
3SUBDIR= \ 3SUBDIR= \
4 addsub \ 4 addsub \
@@ -6,7 +6,15 @@ SUBDIR= \
6 mont \ 6 mont \
7 rand 7 rand
8 8
9PROGS+= bn_cmp
9 10
10install: 11LDADD= -lcrypto
12DPADD= ${LIBCRYPTO}
13WARNINGS= Yes
14CFLAGS+= -Wall -Wundef -Werror
11 15
12.include <bsd.subdir.mk> 16REGRESS_TARGETS += run-bn_cmp
17run-bn_cmp: bn_cmp
18 ./bn_cmp
19
20.include <bsd.regress.mk>