summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-10-04 10:40:59 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2015-10-04 11:40:38 +0200
commita99c0fe5d33101a2c4753a350f5bf63f8c93dc68 (patch)
tree562875cd22971c360979be34dd1ae6d5d9d6088d /doc
parenta8552f5444d4f42c2d81db60fce837b3c3d62501 (diff)
downloadaurweb-a99c0fe5d33101a2c4753a350f5bf63f8c93dc68.tar.xz
Add documentation Makefile
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile
new file mode 100644
index 0000000..df54c5d
--- /dev/null
+++ b/doc/Makefile
@@ -0,0 +1,9 @@
+all: rpc.html
+
+clean:
+ rm -rf *.html
+
+%.html: %.txt
+ asciidoc $<
+
+.PHONY: all clean