1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-10-31 03:29:03 +01:00
lodel2_mirror/doc/img/graphviz/Makefile
2016-06-16 15:01:15 +02:00

14 lines
198 B
Makefile

dotfiles := $(wildcard *.dot)
images := $(patsubst %.dot,%.png,$(wildcard *.dot))
all: $(images)
%.png: %.dot
dot -Tpng $< > $@
.PHONY: clean distclean
clean:
-rm $(images)
distclean: clean