blob: 2780fb9ac997ef8aa79fe13a77ea4fbb18dd7b59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
default: build
build: graphs
latexmk -pdf
graphs:
for f in assets/*.json; do vl2png -s 1.5 $f ${f/json/png}; done
watch-latex:
latexmk -pdf -pvc
clean:
latexmk -c
rm -f assets/*.png
|