aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2019-09-18 19:46:40 +0200
committerJulian T <julian@jtle.dk>2019-09-18 19:46:40 +0200
commitceb14fd5301a7156102b62baa9add6c2beed351a (patch)
treeb40610dd20d32df3e3480056f39679ae204c9635 /Makefile
Initial
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a2fd408
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+
+MD_FILES = $(wildcard *.md) $(wildcard */*.md)
+HTML_FILES = $(patsubst %.md, %.html, $(MD_FILES))
+
+
+%.html: %.md
+ pandoc $^ --output $@
+
+.PHONY: all clean
+
+all: $(HTML_FILES)
+
+clean:
+ rm -rf $(HTML_FILES)