From 1e9465e3fe4387f15546634fa05311eaeb277986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sat, 3 Nov 2018 18:53:01 +0000 Subject: [PATCH] Support providing path to SASS. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a015e2b..626164c 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,8 @@ DOCS_HTML_DST := docs/_build/html RJS = r.js +SASS = node-sass + all: man js site init: @@ -54,7 +56,7 @@ man: $(DOCS_RST_SRC) mv man/isso.conf.5 man/man5/isso.conf.5 ${DOCS_CSS_DST}: $(DOCS_CSS_SRC) $(DOCS_CSS_DEP) - node-sass --no-cache $(DOCS_CSS_SRC) $@ + $(SASS) --no-cache $(DOCS_CSS_SRC) $@ ${DOCS_HTML_DST}: $(DOCS_RST_SRC) $(DOCS_CSS_DST) sphinx-build -b dirhtml docs/ $@