aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..727798f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+all: preview
+
+render:
+ quarto render
+
+preview:
+ quarto preview
+
+lint-markdown:
+ @mdl --ignore-front-matter --style .mdl.rb */*.qmd */*/*.qmd
+
+%.svg: _%.yml
+ roadmap $< > $@
+
+%.svg: %.puml
+ plantuml -pipe -tsvg < $< > $@
+
+.PHONY: all preview render publish lint-markdown