aboutsummaryrefslogtreecommitdiffstats
path: root/.readme/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '.readme/Makefile')
-rw-r--r--.readme/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/.readme/Makefile b/.readme/Makefile
new file mode 100644
index 0000000..69a029e
--- /dev/null
+++ b/.readme/Makefile
@@ -0,0 +1,13 @@
+ASCIIDOC = asciidoc
+ASCIIDOC_FLAGS = -a toc2 \
+ -a data-uri \
+ -a toclevels=4 \
+ -a max-width=70em \
+ -b html5 \
+ --theme=volnitsky
+
+$(README_HTML): $(README)
+ $(ASCIIDOC) $(ASCIIDOC_FLAGS) -o $@ $^
+
+$(README): $(README_SOURCE)
+ cat $^ > $@