diff options
Diffstat (limited to 'tvix/doc/Makefile')
-rw-r--r-- | tvix/doc/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tvix/doc/Makefile b/tvix/doc/Makefile new file mode 100644 index 000000000000..ba9e2bdef6d3 --- /dev/null +++ b/tvix/doc/Makefile @@ -0,0 +1,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 |