summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2007-11-06 12:10:17 +0100
committerJonas Smedegaard <dr@jones.dk>2007-11-06 12:10:17 +0100
commit74e15aa80e8234cfefabe109e810eadb6d50f982 (patch)
treeab340360c670ab65a3f78ecf6a3d73a1460bd52b /Makefile
parent98db86ccbcdad71182be70d3a74ab99d65fb9e82 (diff)
Fix fallback fail-and-hint install target in Makefile, and move it up below all target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 5 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 08a3354..881332d 100644
--- a/Makefile
+++ b/Makefile
@@ -20,6 +20,11 @@ podir = po
all: $(SOURCES)
+install::
+ifeq ($(strip $(CONFIGS)),)
+ $(error Please configure ikiwiki.setup and then uncomment it at the top of the Makefile!)
+endif
+
# 1:source 2:locales
@@ -137,13 +142,6 @@ $(foreach config,$(CONFIGS),$(eval $(call CONFIG_template,$(config))))
-install:
-ifneq ($(strip $(CONFIGS)),)
- $(error Please configure ikiwiki.setup and then uncomment it at the top of the Makefile!)
-endif
-
-
-
pot: $(ALL_POTFILES)
po: $(ALL_POFILES)
translations: $(ALL_L10NFILES)