main shinobi / tests / mk / kati / implicit_pattern_rule_phony / test2 / mk
 1test: foo.x
 2
 3test2: all
 4
 5.PHONY: FORCE
 6FORCE:
 7
 8all: foo.y
 9	echo $@ from $<
10
11%.y: %.x FORCE
12	echo $@ from $<
13
14foo.x:
15	touch foo.x