add presentation, update graphics

Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
This commit is contained in:
Nico Schottelius 2019-08-28 19:02:08 +02:00
commit 45871ae2c9
26 changed files with 1514 additions and 14 deletions

View file

@ -15,9 +15,13 @@ clean:
all-graphviz:
for dot in graphviz/*.dot; do make $${dot%%.dot}.png; done
for dot in graphviz/*.dot; do make $${dot%%.dot}.pdf; done
for dot in graphviz/*.dot; do make $${dot%%.dot}.svg; done
graphviz/%.png: graphviz/%.dot
dot -Tpng < $< > $@
graphviz/%.pdf: graphviz/%.dot
dot -Tpdf < $< > $@
graphviz/%.svg: graphviz/%.dot
dot -Tsvg < $< > $@