Add eps rule, create png with 300dpic

This commit is contained in:
Nico Schottelius 2021-03-08 21:55:47 +01:00
parent 2744555a70
commit 7e08e5ac65
1 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,10 @@ clean:
rm -f *.png *.pdf *.svg
%.png: %.dot
dot -Tpng < $< > $@
dot -Tpng -Gdpi=300 < $< > $@
%.eps: %.dot
dot -Teps < $< > $@
%.jpg: %.dot
dot -Tjpg < $< > $@