summaryrefslogtreecommitdiff
path: root/TODO
blob: 0ba1699510c08dba802faab51ba9cd5a9949720c (
  • SOURCES = ikiwiki
  • # Git ori
    1. Stuff that ought to be changed
    2. ==============================
    3. Restructure l10n directories
    4. ----------------------------
    5. Current l10n directory structure was made to mimic that of the 3rd party lang
    6. plugin.
    7. Some plugins, notably the smiley plugin, however, expect to find its add-on
    8. underlay beside the core underlay directory, which breaks currently.
  • "n_12" class="hl"># locales used. Expands Git BRANCHes
  • #ikiwiki_LOCALES = da nb
  • # gettext-based modules and locales used
  • #ikiwiki_POMODULES = basewiki smiley
  • #ikiwiki_POLOCALES = da
  • dummy_MODULES = content_dummy
  • # uncomment this when ikiwiki.setup is configured for the local environment
  • #CONFIGS = ikiwiki.setup ikiwiki_admin.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