Simplify Makefile
authortb <tb@openbsd.org>
Mon, 17 Apr 2023 20:36:08 +0000 (20:36 +0000)
committertb <tb@openbsd.org>
Mon, 17 Apr 2023 20:36:08 +0000 (20:36 +0000)
regress/lib/libcrypto/ec/Makefile

index 59f5077..081eeb5 100644 (file)
@@ -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 <bsd.regress.mk>