1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-21 23:18:00 -08:00

Print skipped on non applicable architectures.

This commit is contained in:
anton 2022-12-08 12:14:11 +00:00
parent 1f99dc4e27
commit 548b77ec90

View File

@ -1,5 +1,10 @@
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
SUBDIR+= libbar foo
.elif make(regress) || make(all)
${.TARGETS}:
@echo Cannot run on ${MACHINE_ARCH}
@echo SKIPPED
.endif
.include <bsd.subdir.mk>