add a Makefile to collect commands in

Right now it just adds the `make book` command
master
Paul Woolcock 6 years ago
parent 55793f22e3
commit 272b17190f
  1. 8
      Makefile

@ -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
Loading…
Cancel
Save