diff options
author | Florian Klink <flokli@flokli.de> | 2021-03-31T22·30+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2021-03-31T22·34+0000 |
commit | 3c4e401c9ee9bd837ce6446cd2ddb9b1bed40f8a (patch) | |
tree | 0d5cf37c9e70d7bd1e5e57b92737c24f3b2e5382 /tvix/docs/Makefile | |
parent | 1fccc23f3cb5bd194310e30ffd9c4376e446251f (diff) |
chore(tvix/docs): move from doc r/2378
Most other docs folders in the repo are called `doc` too, let's make this consistent. Change-Id: Icd712429b51763076548c977321e370f2a77877e Reviewed-on: https://cl.tvl.fyi/c/depot/+/2741 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'tvix/docs/Makefile')
-rw-r--r-- | tvix/docs/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tvix/docs/Makefile b/tvix/docs/Makefile new file mode 100644 index 000000000000..ba9e2bdef6d3 --- /dev/null +++ b/tvix/docs/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 |