1# TODO(c): Implement vpath.
2
3vpath %.c dir
4
5test: bar
6
7test1:
8	mkdir dir
9	touch dir/foo.c
10
11test2: bar
12
13bar: foo.c
14	echo PASS
15