tenfourfox/build/pymake/tests/default-target.mk
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07: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: