This commit is contained in:
Nico Schottelius 2019-08-09 10:38:54 +02:00
commit 2e544c1e6d
9 changed files with 54 additions and 5 deletions

View file

@ -10,3 +10,9 @@ all:
clean:
rm -f *.dvi *.log *.aux *.bbl *.blg *.toc *.lof *.lot *.cb *.~
all-graphviz:
for dot in graphviz/*.dot; do make $${dot%%.dot}.png; done
graphviz/%.png: graphviz/%.dot
dot -Tpng < $< > $@