aboutsummaryrefslogtreecommitdiff
path: root/doc/manual_src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/manual_src/Makefile')
-rw-r--r--doc/manual_src/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/manual_src/Makefile b/doc/manual_src/Makefile
new file mode 100644
index 0000000..76fdbda
--- /dev/null
+++ b/doc/manual_src/Makefile
@@ -0,0 +1,10 @@
+
+DOCS := $(patsubst %.md,%.html,$(wildcard *.md))
+
+all: $(DOCS)
+
+clean:
+ $(RM) $(DOCS)
+
+%.html: %.md
+ pandoc $< -o $@ -s --highlight-style=kate