From: tb Date: Mon, 17 Apr 2023 20:36:08 +0000 (+0000) Subject: Simplify Makefile X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b9e9a5302bd425c1dbca04c46bd96af9521f307a;p=openbsd Simplify Makefile --- diff --git a/regress/lib/libcrypto/ec/Makefile b/regress/lib/libcrypto/ec/Makefile index 59f5077bd2f..081eeb56bd0 100644 --- a/regress/lib/libcrypto/ec/Makefile +++ b/regress/lib/libcrypto/ec/Makefile @@ -1,24 +1,13 @@ -# $OpenBSD: Makefile,v 1.6 2021/12/04 05:15:09 jsing Exp $ +# $OpenBSD: Makefile,v 1.7 2023/04/17 20:36:08 tb Exp $ PROGS += ectest PROGS += ec_asn1_test PROGS += ec_point_conversion -.for t in ${PROGS} -REGRESS_TARGETS += run-$t -.endfor - LDADD = ${CRYPTO_INT} DPADD = ${LIBCRYPTO} WARNINGS = Yes CFLAGS += -DLIBRESSL_CRYPTO_INTERNAL -DLIBRESSL_INTERNAL CFLAGS += -Wall -Wundef -Werror -CLEANFILES += ${PROGS} - -.for t in ${PROGS} -run-$t: $t - ./$t -.endfor - .include