From 159f8373059e4bc6d599e781d8cda1981a309216 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sun, 3 Jul 2016 21:55:51 +0200 Subject: Use h1/h2 in content only (not in header) --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ecfe00f..58f72a3 100644 --- a/Makefile +++ b/Makefile @@ -20,9 +20,13 @@ V_GEN = $(v_gen_$(V)) v_gen_ = $(v_gen_$(DEFAULT_VERBOSITY)) v_gen_0 = @echo " GEN " $@; +V_CSS = $(v_css_$(V)) +v_css_ = $(v_css_$(DEFAULT_VERBOSITY)) +v_css_0 = @echo " CSS " $@; + .PHONY: all -all: $(pages_gen) checkmark.png +all: $(pages_gen) checkmark.png style/style.min.css %.png: %.svg $(V_GEN) $(svg2png) $< > $@ @@ -33,7 +37,7 @@ all: $(pages_gen) checkmark.png $(V_XSLT) $(xsltproc) $< > $@ style/style.min.css: style/style.css - node_modules/.bin/postcss -u postcss-css-variables style/style.css | node_modules/.bin/cleancss > style/style.min.css + $(V_CSS) node_modules/.bin/postcss -u postcss-css-variables style/style.css | node_modules/.bin/cleancss > style/style.min.css clean: rm -f $(pages_gen) checkmark.png -- cgit