1# TODO(c): bar is built even if foo doesn't exist. 2 3VPATH=dir 4 5test: bar 6 7test1: 8 mkdir dir 9 touch dir/foo 10 11test2: bar 12 13bar: foo 14 echo PASS 15