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