summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2015-10-16 13:25:51 +0200
committerJonas Smedegaard <dr@jones.dk>2015-10-16 13:25:51 +0200
commite6f07e6c65c08cdb24b203a6352b0c8067caf658 (patch)
tree378cdbd4cdf20cd09cc4ca1f4f7efe0a3c7f6ea0 /Makefile
parent36a4cac675ad6315f834f1c9e945901d1aa58242 (diff)
Add basic styling.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d9346a..311a56a 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ hypertext-snippets = $(markdown-snippets:%.mdwn=%.html)
markdown := $(filter-out $(markdown-snippets),$(wildcard *.mdwn))
hypertext = $(subst index/index,index,$(markdown:%.mdwn=%/index.html))
-all: $(hypertext)
+all: $(hypertext) style.css
update: source all
source: .git
@@ -15,11 +15,15 @@ $(hypertext-snippets): %.html: %.mdwn Makefile
%.html %/index.html: %.mdwn $(hypertext-snippets) Makefile
$(if $(filter-out ./,$(dir $@)),mkdir -p $(dir $@))
- pandoc -s -B topbar.html -A footer.html -f markdown -t html -o $@ $<
+ pandoc -s -c style.css -B topbar.html -A footer.html -f markdown -t html -o $@ $<
+
+%.css : %.scss Makefile
+ scss --compass --style compressed $< $@
clean:
find -type f -name '*.html' -delete
find -type d -empty -delete
+ rm -rf .sass-cache
MAKEFLAGS += --jobs
.NOTPARALLEL: source