From f43a9e232e3c4469f7ccc3c87c0125626ed91761 Mon Sep 17 00:00:00 2001 From: Chris Hutchison Date: Fri, 13 Apr 2018 23:55:48 -0400 Subject: [PATCH] Update Makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a44cb3..81c98fb 100644 --- a/Makefile +++ b/Makefile @@ -69,6 +69,10 @@ test: $($ISSO_PY_SRC) clean: rm -f $(DOCS_MAN_DST) $(DOCS_CSS_DST) $(ISSO_JS_DST) rm -rf $(DOCS_HTML_DST) + +web: + python setup.py develop # or `install` + isso run -.PHONY: clean site man init js coverage test +.PHONY: clean site man init js coverage test web