From 272b17190ff40b5c80abefc5316a696cc4dda623 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Sat, 25 Aug 2018 13:51:07 -0400 Subject: [PATCH] add a Makefile to collect commands in Right now it just adds the `make book` command --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1c9c7fb --- /dev/null +++ b/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