BMAKE ?= bmake

.PHONY: check

check:
	./tests/check-layout.sh
	@if command -v "$(BMAKE)" >/dev/null 2>&1; then \
		"$(BMAKE)" -f tests/framework.mk check; \
	else \
		printf '%s\n' "bmake parse check skipped: bmake is unavailable"; \
	fi
