From 575c433fda6fcd041039036e0e1e6cad64b83ca9 Mon Sep 17 00:00:00 2001 From: Lucas Cimon Date: Sun, 6 May 2018 09:59:52 +0200 Subject: [PATCH] Substituting scss command in Makefile by node-sass + adding comment with instructions on how to install Makefile dependencies --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a44cb3..41a0afa 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +# INSTALLATION: pip install sphinx && npm install --global node-sass + ISSO_JS_SRC := $(shell find isso/js/app -type f) \ $(shell ls isso/js/*.js | grep -vE "(min|dev)") \ isso/js/lib/requirejs-jade/jade.js @@ -53,7 +55,7 @@ man: $(DOCS_RST_SRC) mv man/isso.conf.5 man/man5/isso.conf.5 ${DOCS_CSS_DST}: $(DOCS_CSS_SRC) $(DOCS_CSS_DEP) - scss --no-cache $(DOCS_CSS_SRC) $@ + node-sass --no-cache $(DOCS_CSS_SRC) $@ ${DOCS_HTML_DST}: $(DOCS_RST_SRC) $(DOCS_CSS_DST) sphinx-build -b dirhtml docs/ $@