From: anton Date: Sun, 4 Dec 2022 19:04:38 +0000 (+0000) Subject: Print skipped while running on anything other than i386. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=83872ed16a84fc7eebbc1e61e3440903d25bab91;p=openbsd Print skipped while running on anything other than i386. --- 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