9 lines
122 B
Makefile
9 lines
122 B
Makefile
|
|
||
|
TARGETS=$(shell find -name '*.dot' | sed -E 's~\.dot~\.png~')
|
||
|
|
||
|
all: $(TARGETS)
|
||
|
|
||
|
%.png: %.dot
|
||
|
dot -Tpng $< -o target/$@
|
||
|
|