main shinobi / tests / mk / gnu / features / patternrules / t003 / mk
 1
 2$(dir)/foo.o:
 3
 4$(dir)/foo.y: ; @echo $@
 5
 6%.c: %.y ; touch $@
 7
 8%.o: %.c ; @echo $@
 9
10.PHONY: install
11install: $(dir)/foo.c
12