mirror of
https://github.com/yweber/lodel2.git
synced 2025-12-03 17:26:54 +01:00
Adding images support for doxygen documentation ( in doc/img ) + automated images generation with graphviz & make
14 lines
198 B
Makefile
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
|