diff options
author | Jonas Smedegaard <dr@jones.dk> | 2008-08-04 02:19:28 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2008-08-04 02:19:28 +0200 |
commit | 52d3706fd4d7ba3425dac767d75db549fb499dc7 (patch) | |
tree | 7e71b8bcb0ae7cbcfb5e959e3813932150d3d59b /make | |
parent | b68f746ade49fff4ff4ba3c0adec95d26237a966 (diff) |
Extend make and po4a to support templates.
Diffstat (limited to 'make')
-rw-r--r-- | make/rules.mk | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/make/rules.mk b/make/rules.mk index 973af61..9961061 100644 --- a/make/rules.mk +++ b/make/rules.mk @@ -1,3 +1,6 @@ +# use markdown template for po4a, or some custom one? +HTMLTEMPLATE = text + # 1:source 2:locales define SOURCE_template $(1): $$($(1)_MODULES) $(dummy_MODULES) @@ -48,7 +51,7 @@ export PERL5LIB = $(CURDIR)/perl # 1:moduledir 2:locale 3:mastermodule 4:source define POT_template -fileformat = $(if $(filter templates,$(3)),htmltemplate,text) +fileformat = $(if $(filter templates,$(3)),$(HTMLTEMPLATE),text) filetype = $(if $(filter templates,$(3)),tmpl,mdwn) ALL_POTFILES += $(podir)/$(3).pot $(3)_L10NFILES = $$(patsubst $(1)/%,%,$$(shell find $(1) -type f -name '*.$$(filetype)' | LANG=C sort)) @@ -65,7 +68,7 @@ $(foreach source,$(SOURCES),$(foreach module,$($(source)_POMODULES),$(eval $(cal # 1:moduledir 2:locale 3:mastermodule 4:source 5:originmodule define INITPO_template -fileformat = $(if $(filter templates,$(3)),htmltemplate,text) +fileformat = $(if $(filter templates,$(3)),$(HTMLTEMPLATE),text) filetype = $(if $(filter templates,$(3)),tmpl,mdwn) ALL_POFILES += $(podir)/$(3).$(2).po LOCALE_L10NFILES += $$(patsubst %,$(1)/%,$$($(3)_L10NFILES)) @@ -89,7 +92,7 @@ $(foreach source,$(SOURCES),$(foreach module,$(po-init-modules),$(foreach locale # 1:moduledir 2:locale 3:mastermodule 4:source define PO_template -fileformat = $(if $(filter templates,$(3)),htmltemplate,text) +fileformat = $(if $(filter templates,$(3)),$(HTMLTEMPLATE),text) filetype = $(if $(filter templates,$(3)),tmpl,mdwn) ALL_POFILES += $(podir)/$(3).$(2).po LOCALE_L10NFILES += $$(patsubst %,$(1)/%,$$($(3)_L10NFILES)) |