aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-03-01 11:16:55 +0100
committerJonas Smedegaard <dr@jones.dk>2025-03-01 11:16:55 +0100
commitd09e6cebade81d5c10226115b51e2e11ac4d8747 (patch)
treec67452b70085c604c609a4f9e1d9296eea15ca5f /Makefile
parent0b44c91743ae0de41a333398a3fd3ab151b574c1 (diff)
add roadmap; use citations
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