diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-10-04 10:40:59 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-10-04 11:40:38 +0200 |
commit | a99c0fe5d33101a2c4753a350f5bf63f8c93dc68 (patch) | |
tree | 562875cd22971c360979be34dd1ae6d5d9d6088d /doc/Makefile | |
parent | a8552f5444d4f42c2d81db60fce837b3c3d62501 (diff) | |
download | aurweb-a99c0fe5d33101a2c4753a350f5bf63f8c93dc68.tar.xz |
Add documentation Makefile
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 9 |
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 |