Add dot sources

This commit is contained in:
Valentin Brandl
2019-12-10 20:36:14 +01:00
parent 0c5ae64bbe
commit ad8efa3d96
5 changed files with 53 additions and 0 deletions

12
work/dot/Makefile Normal file
View File

@ -0,0 +1,12 @@
.PHONY: clean build
DOT = $(wildcard *.dot)
PDF = $(DOT:.dot=.pdf)
build: $(PDF)
%.pdf: %.dot
dot -Tpdf $< -o $@
clean:
rm -f $(PDF)