blob: ba9e2bdef6d3473345ddbc2302d3d57b1a4709e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
all: build
puml:
plantuml *.puml -tsvg
html:
pandoc *.md -f markdown --self-contained -t html -s -o tvix.html --csl=${CSL}
build: puml html
clean:
rm -f *.tex *.pdf *.png *.svg
|