blob: 4b8b5864cb35f198f476d6570cf34158a6e15587 (
plain)
- SOURCES = ikiwiki hearth
- 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 = master-FLAVOR-LOCALE
- # modules (subproject extension names) used. Expands Git ORIGINs
- ikiwiki_MODULES = templates basewiki smiley directives
- # flavors used. Expands Git BRANCHes
- #ikiwiki_basewiki_FLAVORS = nonedit
- #ikiwiki_templates_FLAVORS = nonedit
- # locales used. Expands Git BRANCHes
- #ikiwiki_LOCALES = da nb
- # gettext-based modules and locales used
- #ikiwiki_POMODULES = basewiki smiley directives
- #ikiwiki_POLOCALES = da
- hearth_ORIGIN = git://source.jones.dk/hearth_MODULE
- hearth_BRANCH = master-FLAVOR-LOCALE
- hearth_MODULES = content
- #dummy_MODULES = content_dummy
- # uncomment this when ikiwiki.setup is configured for the local environment
- #CONFIGS = ikiwiki.setup
- # Everything after this is generic
- # FIXME: Not all of these are used within templates
- masterdir = $(module)
- l10ndir = $(module)_l10n/$(locale)
- flavordir = $(module)_$(flavor)
- flavorl10ndir = $(module)_$(flavor)_l10n/$(locale)
- podir = po
- all: $(SOURCES)
- install::
- ifeq ($(strip $(CONFIGS)),)
- $(error Please configure ikiwiki.setup and then uncomment it at the top of the Makefile!)
- endif
- include make/rules.mk
- pot: $(ALL_POTFILES)
- po: $(ALL_POFILES)
- $(LOCALE_L10NFILES): $(MASTER_L10NFILES)
- translations: po $(LOCALE_L10NFILES)
- .PHONY: all $(SOURCES) pot po translations install ultraclean
|