summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/default-target.mk
blob: 701ac6916e350c9942fb04ae9f7ed2231609fc75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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: