comparison: build/pymake/tests/implicitsubdir.mk
build/pymake/tests/implicitsubdir.mk
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 $(shell \ |
|
2 mkdir foo; \ |
|
3 touch test.in \ |
|
4 ) |
|
5 |
|
6 all: foo/test.out |
|
7 @echo TEST-PASS |
|
8 |
|
9 foo/%.out: %.in |
|
10 cp $< $@ |
|
11 |
|
12 |