diff options
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -8,6 +8,8 @@ ikiwiki_LOCALES = da #dummy_MODULES = content_dummy +#CONFIGS = ikiwiki.setup + # Everything after this is generic # FIXME: Not all of these are used within templates @@ -18,8 +20,11 @@ podir = po all: $(SOURCES) install: +ifneq ($(strip $(CONFIGS)),) + $(CONFIGS:%=ikiwiki --setup % --rebuild) +else $(error FIXME: you need to adjust ikiwiki.setup first!) -# ikiwiki --setup ikiwiki.setup --rebuild +endif |