comparison: build/pymake/tests/matchany.mk
build/pymake/tests/matchany.mk
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
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 $@ |