diff options
author | Jonas Smedegaard <dr@jones.dk> | 2018-10-03 11:10:48 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2018-10-03 11:10:48 +0200 |
commit | e5897ee6e7cd9cca8d98f55800dba8cdb0854e93 (patch) | |
tree | 68ada80985ea792924e137907af481bda174950a /Makefile | |
parent | 20f4ce4fb03149796e95013dba62369adc18d87f (diff) |
Fix use relative path to stylesheet.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ $(vectorimage-graph): %.svg: %.dot Makefile %.html %/index.html: %.mdwn $(hypertext-snippets) Makefile $(if $(filter-out ./,$(dir $@)),mkdir -p $(dir $@)) - pandoc -s -c /style.css -B topbar.html -A footer.html -f markdown -t html -o $@ $< + pandoc -s -c $(shell realpath --relative-to=$(dir $@) style.css) -B topbar.html -A footer.html -f markdown -t html -o $@ $< %.css : %.scss Makefile scss --compass --style compressed $< $@ |