diff options
author | Jonas Smedegaard <dr@jones.dk> | 2010-07-11 19:51:30 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2010-07-11 19:51:30 +0200 |
commit | 9ec8b89f51e0b631163c51724e32184b84770e4c (patch) | |
tree | 511750a194808cb0f39b198ab18029bb7397dc38 /Makefile | |
parent | 2b3b3ef6b22755b44e5be6a490fe291c75fbf442 (diff) | |
parent | c105645368dd025efc83b0dd9e68b7a64bf1f005 (diff) |
Merge branch '_multilang' into allinone-multilang
Conflicts: (manually resolved)
.gitignore
Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -1,16 +1,9 @@ SOURCES = ikiwiki ikiwiki_VERSION = 2.62.1 -# Git origin (with capital MOULE replaced or stripped as needed) -ikiwiki_ORIGIN = git://source.jones.dk/ikiwiki_MODULE -# Git branch (with capital FLAVOR and LOCALE replaced or stripped as needed) -ikiwiki_BRANCH = allinone-FLAVOR-LOCALE -# modules (subproject extension names) used. Expands Git ORIGINs +# modules (subproject extension names) used. Expands SOURCES ikiwiki_MODULES = templates basewiki smiley directives -# flavors used. Expands Git BRANCHes -ikiwiki_basewiki_FLAVORS = nonedit -ikiwiki_templates_FLAVORS = nonedit -# locales used. Expands Git BRANCHes +# locales used. Expands SOURCES ikiwiki_LOCALES = da nb # gettext-based modules and locales used #ikiwiki_POMODULES = basewiki smiley directives @@ -30,7 +23,12 @@ flavordir = $(module)_$(flavor) flavorl10ndir = $(module)_$(flavor)_l10n/$(locale) podir = po -all: $(SOURCES) +all: init $(SOURCES) + +init: + git submodule init + git submodule update + touch init install:: ifeq ($(strip $(CONFIGS)),) |