summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2011-04-20 17:17:19 +0200
committerJonas Smedegaard <dr@jones.dk>2011-04-20 17:18:44 +0200
commit21f7515c1ee8d1046edd0b732bf9ca7de607db40 (patch)
tree0f1755e4cc57867403367b2ec484de54f05de0a1 /Makefile
parent67ebdd764b3a19809e16d19741aa9c9416898b6a (diff)
Improve compass project handling: Try compile only styling and (shared) goab by default. Git-ignore cache folders anywhere. Sync with HEAD of submodule shared.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index be53be3..82f01c1 100644
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,11 @@ IKIWIKI_OPTIONS ?= \
--set destdir='$(CURDIR)/build/html' \
$(IKIWIKI_SHARED_OPTIONS) $(IKIWIKI_CONFIG_OPTIONS)
+cssprojects ?= $(wildcard shared/themes/goab styling)
+
-include shared/include.mk
-include config/include.mk
-
--include shared/themes/Makefile
+-include shared/themes/include.mk
always-make = $(filter -B,$(MAKEFLAGS))
avoid-broken-git = $(shell cd content && git symbolic-ref -q HEAD > /dev/null || echo --no-rcs)
@@ -14,7 +15,6 @@ avoid-broken-git = $(shell cd content && git symbolic-ref -q HEAD > /dev/null ||
all: build
init: submodules content
- -$(MAKE) -C shared/themes -B
$(MAKE) -B config
submodules:
@@ -30,7 +30,7 @@ content: submodules
mkdir -p '$@'
[ -e '$@/index.mdwn' ] || printf '# Hello world!\n\nHello world!\n' > '$@/index.mdwn'
-build: $(cssfiles)
+build: $(cssprojects)
find config -name *.setup -exec ikiwiki --setup '{}' $(avoid-broken-git) $(if $(always-make),--rebuild) ';'
.PHONY: all build submodules content