summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 1c9c7fbf3f09a29e08d04160f9ba5a7a8e49c79d (plain)
1
2
3
4
5
6
7
8
DOCS := $(PWD)/docs

book: $(DOCS)/guide/index.html

$(DOCS)/guide/index.html: $(DOCS)/src/*.md
	cd docs && mdbook build

.PHONY: book