diff options
-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 00000000..df54c5d8 --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,9 @@ +all: rpc.html + +clean: + rm -rf *.html + +%.html: %.txt + asciidoc $< + +.PHONY: all clean |