From f6338bec093c5d0736c9076257d566e8047051e2 Mon Sep 17 00:00:00 2001 From: tb Date: Thu, 1 Dec 2022 22:55:40 +0000 Subject: [PATCH] Fix typo, move one .PHONY target nearer to the target itself --- regress/lib/libcrypto/bn/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/regress/lib/libcrypto/bn/Makefile b/regress/lib/libcrypto/bn/Makefile index 390dc8bcc17..f752ede2162 100644 --- a/regress/lib/libcrypto/bn/Makefile +++ b/regress/lib/libcrypto/bn/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2022/12/01 22:41:46 tb Exp $ +# $OpenBSD: Makefile,v 1.12 2022/12/01 22:55:40 tb Exp $ PROGS += bn_add_sub PROGS += bn_cmp @@ -26,7 +26,7 @@ CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/ .for p in ${PROGS} REGRESS_TARGETS += run-$p -.PHONY += run-$p +.PHONY: run-$p run-$p: $p ./$p @@ -35,6 +35,7 @@ run-$p: $p # Verify that the bn_isqrt -C output isn't changed by accident. isqrt-print-tables: bn_isqrt @./bn_isqrt -C +.PHONY: isqrt-print-tables CLEANFILES += bn_isqrt_gen_tables.txt.tmp bn_isqrt_gen_tables.txt bn_isqrt_gen_tables.txt: bn_isqrt @@ -66,6 +67,4 @@ run-bc: bn_test.out LDADD_$p += ${CRYPTO_INT} .endfor -.PHONY: isqrt-print-tables - .include -- 2.20.1