aboutsummaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile
new file mode 100644
index 0000000..05b3f78
--- /dev/null
+++ b/docs/Makefile
@@ -0,0 +1,7 @@
+ADOC_FILES := $(wildcard *.adoc)
+HTML_FILES := $(ADOC_FILES:%.adoc=%.html)
+
+all: $(HTML_FILES)
+
+%.html : %.adoc
+ asciidoctor $^ -o $@