1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-12-03 17:26:54 +01:00
lodel2_mirror/doc/img/graphviz/Makefile
Yann d774480aa6 Updated the doxygen documentation
Adding images support for doxygen documentation ( in doc/img ) + automated images generation with graphviz & make
2016-01-27 16:58:55 +01: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