summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/implicitsubdir.mk
blob: b9d854a2a56c7be6410de50c2e91f679fbee3d40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
$(shell \
mkdir foo; \
touch test.in \
)

all: foo/test.out
	@echo TEST-PASS

foo/%.out: %.in
	cp $< $@