summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d3e4d04..fb85a0c 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ $(vectorimage-graph): %.svg: %.dot Makefile
$(eval title = $(shell head --lines=1 $< \
| grep --perl-regexp --only-matching '^\#\s*\K(\S+(\s\S+)*)+'))
$(if $(filter-out ./,$(dir $@)),mkdir -p $(dir $@))
- pandoc -f markdown -t html5 -s \
+ $(strip pandoc -f markdown -t html5 -s \
--metadata lang=da \
$(if $(title),\
$(if $(filter-out $(sitetitle),$(title)),$(strip \
@@ -34,7 +34,7 @@ $(vectorimage-graph): %.svg: %.dot Makefile
-c $(shell realpath --relative-to=$(dir $@) style.css) \
-B nav.html \
-A footer.html \
- -o $@ $<
+ -o $@ $<)
%.css : %.scss Makefile
sassc --load-path /usr/share/sass --style compressed $< $@