summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam@afuera.me.uk>2016-02-20 12:33:02 +0000
committerSam Thursfield <sam@afuera.me.uk>2016-02-20 12:33:02 +0000
commit883ae7dabdfc2f91a779cab36bd96155af45484a (patch)
treecc6fe87ff0e11694885792459b94e11d2b896799
parent6c4c284968b0d541ffca465f9116ec842d711f77 (diff)
downloadspec-883ae7dabdfc2f91a779cab36bd96155af45484a.tar.gz
Add Makefile to generate spec.html from spec.mdwn
There are various bits of ikiwiki Markdown in spec.mdwn currently, but it's a starting point.
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3cfeb6f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+# Makefile for Baserock definitions format specification
+
+# This is available in the 'python3-markdown2' package on Fedora.
+MARKDOWN2 = markdown2-3.4
+
+spec.html: spec.mdwn
+ $(MARKDOWN2) $< > $@