From 883ae7dabdfc2f91a779cab36bd96155af45484a Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Sat, 20 Feb 2016 12:33:02 +0000 Subject: 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. --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile 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) $< > $@ -- cgit v1.2.1