From 5f141466ee643707cef8881397787132b4b95fe3 Mon Sep 17 00:00:00 2001 From: Joel Dillon Date: Tue, 11 Sep 2012 14:00:36 +0100 Subject: Add makefile to produce HTML from Markdown --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b617f44 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +SOURCES = morphology.txt morphology_examples.txt git.txt + +HTML = $(SOURCES:.txt=.html) + +all: $(SOURCES) $(HTML) + echo "Done!" + +clean: + rm -f $(HTML) + +%.html : %.txt + pandoc -f markdown $< -o $@ -- cgit v1.2.1