From c0e0dfc107b4a3a698e1c396f44633a61be65f74 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Thu, 18 May 2017 16:15:25 -0400 Subject: [PATCH] Add doc target to test docs locally Requires a local sphinx --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f20d75f7..66604f80 100644 --- a/Makefile +++ b/Makefile @@ -27,4 +27,7 @@ clean: extract-makefile: $(BIN) extract-makefile -o Makefile.extracted @install -.PHONY: default install uninstall reinstall clean test +doc: + cd doc && sphinx-build . _build + +.PHONY: default install uninstall reinstall clean test doc