15 lines
129 B
Makefile
15 lines
129 B
Makefile
test: foo.x
|
|
|
|
test2: all
|
|
|
|
.PHONY: FORCE
|
|
FORCE:
|
|
|
|
all: foo.y
|
|
echo $@ from $<
|
|
|
|
%.y: %.x FORCE
|
|
echo $@ from $<
|
|
|
|
foo.x:
|
|
touch foo.x
|