build/pymake/tests/matchany.mk

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:d4be13874677
1 #T returncode: 2
2
3 # we should fail to make foo.ooo from foo.ooo.test
4 all: foo.ooo
5 @echo TEST-FAIL
6
7 %.ooo:
8
9 # this match-anything pattern should not apply to %.ooo
10 %: %.test
11 cp $< $@
12
13 foo.ooo.test:
14 touch $@

mercurial