From: tb Date: Thu, 2 Mar 2023 20:45:11 +0000 (+0000) Subject: Some more Makefile cosmetics X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=699253ff46345d5df02923a2420091dc3790f7e6;p=openbsd Some more Makefile cosmetics The verbose evp test actually depends on the evptest binary. Use consistent spacing and indentation. --- diff --git a/regress/lib/libcrypto/evp/Makefile b/regress/lib/libcrypto/evp/Makefile index c337c3b111f..c5fee02693d 100644 --- a/regress/lib/libcrypto/evp/Makefile +++ b/regress/lib/libcrypto/evp/Makefile @@ -1,17 +1,22 @@ -# $OpenBSD: Makefile,v 1.11 2023/03/02 20:27:54 tb Exp $ +# $OpenBSD: Makefile,v 1.12 2023/03/02 20:45:11 tb Exp $ -PROGS= evptest evp_test evp_ecx_test evp_pkey_check evp_pkey_cleanup -LDADD= -lcrypto -DPADD= ${LIBCRYPTO} -WARNINGS= Yes -CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror -CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/curve25519 -CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/evp +PROGS += evp_ecx_test +PROGS += evp_pkey_check +PROGS += evp_pkey_cleanup +PROGS += evp_test +PROGS += evptest -run-regress-evptest: evptest +LDADD = -lcrypto +DPADD = ${LIBCRYPTO} +WARNINGS = Yes +CFLAGS += -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror +CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/curve25519 +CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/evp + +run-regress-evptest: evptest ./evptest ${.CURDIR}/evptests.txt -run-regress-evptest-verbose: +run-regress-evptest-verbose: evptest ./evptest -v ${.CURDIR}/evptests.txt .PHONY: run-regress-evptest-verbose