summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/static-pattern2.mk
blob: 08ed834fd02b9a73b5b072c8b79ee05678d3fb17 (plain)
1
2
3
4
5
6
7
8
9
10
all: foo.out
	test -f $^
	@echo TEST-PASS

foo.out: %.out: %.in
	test "$*" = "foo"
	cp $^ $@

foo.in:
	touch $@