michael@0: # we should succeed in making foo.ooo from foo.ooo.test michael@0: all: foo.ooo michael@0: @echo TEST-PASS michael@0: michael@0: %.ooo: %.ccc michael@0: exit 1 michael@0: michael@0: # this match-anything rule is terminal, and therefore applies michael@0: %:: %.test michael@0: cp $< $@ michael@0: michael@0: foo.ooo.test: michael@0: touch $@