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