add a Makefile to collect commands in

Right now it just adds the `make book` command
This commit is contained in:
Paul Woolcock
2018-08-25 13:55:29 -04:00
parent 55793f22e3
commit 272b17190f
+8
View File
@@ -0,0 +1,8 @@
DOCS := $(PWD)/docs
book: $(DOCS)/guide/index.html
$(DOCS)/guide/index.html: $(DOCS)/src/*.md
cd docs && mdbook build
.PHONY: book