From 83872ed16a84fc7eebbc1e61e3440903d25bab91 Mon Sep 17 00:00:00 2001 From: anton Date: Sun, 4 Dec 2022 19:04:38 +0000 Subject: [PATCH] Print skipped while running on anything other than i386. --- regress/sys/ddb/Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/regress/sys/ddb/Makefile b/regress/sys/ddb/Makefile index e2cdba8e376..b1823ee32f9 100644 --- a/regress/sys/ddb/Makefile +++ b/regress/sys/ddb/Makefile @@ -1,8 +1,7 @@ -# $OpenBSD: Makefile,v 1.4 2014/12/17 00:10:22 daniel Exp $ +# $OpenBSD: Makefile,v 1.5 2022/12/04 19:04:38 anton Exp $ -.if (${MACHINE} == "i386") +.if ${MACHINE} == "i386" REGRESS_TARGETS+= size -.endif SRC= ${.CURDIR}/../../.. @@ -22,4 +21,10 @@ size: clean clean: rm -rf build +.elif make(regress) || make(all) +${.TARGETS}: + @echo Cannot run on ${MACHINE} + @echo SKIPPED +.endif + .include -- 2.20.1