summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/ec/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/ec/Makefile')
-rw-r--r--src/regress/lib/libcrypto/ec/Makefile25
1 files changed, 19 insertions, 6 deletions
diff --git a/src/regress/lib/libcrypto/ec/Makefile b/src/regress/lib/libcrypto/ec/Makefile
index 76b552fa23..394ac51226 100644
--- a/src/regress/lib/libcrypto/ec/Makefile
+++ b/src/regress/lib/libcrypto/ec/Makefile
@@ -1,9 +1,22 @@
1# $OpenBSD: Makefile,v 1.4 2021/04/20 17:09:45 tb Exp $ 1# $OpenBSD: Makefile,v 1.5 2021/04/21 20:15:08 tb Exp $
2 2
3PROG= ectest 3PROGS += ectest
4LDADD= ${CRYPTO_INT} 4PROGS += ec_point_conversion
5DPADD= ${LIBCRYPTO} 5
6WARNINGS= Yes 6.for t in ${PROGS}
7CFLAGS+= -DLIBRESSL_INTERNAL -Werror 7REGRESS_TARGETS += run-$t
8.endfor
9
10LDADD = ${CRYPTO_INT}
11DPADD = ${LIBCRYPTO}
12WARNINGS = Yes
13CFLAGS += -DLIBRESSL_INTERNAL -Wall -Wundef -Werror
14
15CLEANFILES += ${PROGS}
16
17.for t in ${PROGS}
18run-$t: $t
19 ./$t
20.endfor
8 21
9.include <bsd.regress.mk> 22.include <bsd.regress.mk>