summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libcrypto/ec/Makefile13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/regress/lib/libcrypto/ec/Makefile b/src/regress/lib/libcrypto/ec/Makefile
index 59f5077bd2..081eeb56bd 100644
--- a/src/regress/lib/libcrypto/ec/Makefile
+++ b/src/regress/lib/libcrypto/ec/Makefile
@@ -1,24 +1,13 @@
1# $OpenBSD: Makefile,v 1.6 2021/12/04 05:15:09 jsing Exp $ 1# $OpenBSD: Makefile,v 1.7 2023/04/17 20:36:08 tb Exp $
2 2
3PROGS += ectest 3PROGS += ectest
4PROGS += ec_asn1_test 4PROGS += ec_asn1_test
5PROGS += ec_point_conversion 5PROGS += ec_point_conversion
6 6
7.for t in ${PROGS}
8REGRESS_TARGETS += run-$t
9.endfor
10
11LDADD = ${CRYPTO_INT} 7LDADD = ${CRYPTO_INT}
12DPADD = ${LIBCRYPTO} 8DPADD = ${LIBCRYPTO}
13WARNINGS = Yes 9WARNINGS = Yes
14CFLAGS += -DLIBRESSL_CRYPTO_INTERNAL -DLIBRESSL_INTERNAL 10CFLAGS += -DLIBRESSL_CRYPTO_INTERNAL -DLIBRESSL_INTERNAL
15CFLAGS += -Wall -Wundef -Werror 11CFLAGS += -Wall -Wundef -Werror
16 12
17CLEANFILES += ${PROGS}
18
19.for t in ${PROGS}
20run-$t: $t
21 ./$t
22.endfor
23
24.include <bsd.regress.mk> 13.include <bsd.regress.mk>