Home | History | Annotate | Download | only in testcase
      1 # TODO: Fix. We probably need to assume foo.y exists as there's a rule
      2 # to generate it.
      3 
      4 test1:
      5 	touch foo.x
      6 
      7 test2: foo.z
      8 
      9 %.z: %.y
     10 	cp $< $@
     11 
     12 %.y: %.x
     13 	cp $< $@
     14