generate jpgs

This commit is contained in:
Nico Schottelius 2020-06-18 17:52:22 +02:00
parent 570180ad64
commit 77d808dcbd
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.png
*.pdf
*.svg
*.jpg

View File

@ -9,6 +9,9 @@ clean:
%.png: %.dot
dot -Tpng < $< > $@
%.jpg: %.dot
dot -Tjpg < $< > $@
%.pdf: %.dot
dot -Tpdf < $< > $@