diff options
Diffstat (limited to 'src/regress/lib/libcrypto/bn/general/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/bn/general/Makefile | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/src/regress/lib/libcrypto/bn/general/Makefile b/src/regress/lib/libcrypto/bn/general/Makefile index d578d0fe12..d1a73a3769 100644 --- a/src/regress/lib/libcrypto/bn/general/Makefile +++ b/src/regress/lib/libcrypto/bn/general/Makefile | |||
@@ -1,11 +1,22 @@ | |||
1 | # $OpenBSD: Makefile,v 1.4 2017/01/21 09:38:58 beck Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2019/04/13 22:06:31 tb Exp $ |
2 | 2 | ||
3 | .include "../../Makefile.inc" | 3 | .include "../../Makefile.inc" |
4 | 4 | ||
5 | PROG= bntest | 5 | PROGS += bntest |
6 | LDADD= ${CRYPTO_INT} | 6 | PROGS += bn_to_string |
7 | DPADD= ${LIBCRYPTO} | 7 | |
8 | WARNINGS= Yes | 8 | LDADD = ${CRYPTO_INT} |
9 | CFLAGS+= -Werror | 9 | DPADD = ${LIBCRYPTO} |
10 | WARNINGS = Yes | ||
11 | CFLAGS += -Werror | ||
12 | |||
13 | .for p in ${PROGS} | ||
14 | REGRESS_TARGETS += run-$p | ||
15 | |||
16 | run-$p: $p | ||
17 | ./$p | ||
18 | |||
19 | .PHONY: run-$p | ||
20 | .endfor | ||
10 | 21 | ||
11 | .include <bsd.regress.mk> | 22 | .include <bsd.regress.mk> |