Mypal/build/pymake/tests/default-target.mk
2019-03-11 13:26:37 +03:00

15 lines
220 B
Makefile

test: VAR = value
%.do:
@echo TEST-FAIL: ran target "$@", should have run "all"
.PHONY: test
all:
@echo TEST-PASS: the default target is all
test:
@echo TEST-FAIL: ran target "$@", should have run "all"
test.do: