diff options
author | Alessio Treglia <alessio@debian.org> | 2010-10-26 17:12:57 +0200 |
---|---|---|
committer | Alessio Treglia <alessio@debian.org> | 2010-10-26 17:12:57 +0200 |
commit | 4464130722661bc4c06da3ac447f16f3171711b2 (patch) | |
tree | 1e0d470ab19bb9e47c535c63618015dd1a6bb3a0 /help/Makefile.am | |
parent | 24e91aad73752189398ad589362a12408ff3bdbc (diff) | |
parent | fafc0daa6bd26ad254943315f253b1b218e71080 (diff) |
Merge commit 'upstream/2.32.0.1'
Diffstat (limited to 'help/Makefile.am')
-rw-r--r-- | help/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/help/Makefile.am b/help/Makefile.am index a901f88..135913d 100644 --- a/help/Makefile.am +++ b/help/Makefile.am @@ -21,3 +21,27 @@ DOC_LINGUAS = DISTCLEANFILES = \ Makefile.in + +REAL_LINGUAS = de + +DOC_LINGUAS = POT $(REAL_LINGUAS) + +$(_DOC_LC_DOCS) : po.stamp + +po.stamp: $(wildcard translations/*.po) + for p in $?; do $(mkdir_p) $$(basename $$p .po)/; \ + cp -a $$p $$(basename $$p .po)/; done + touch $@ + +update-pot: translations/simple-scan-help.pot +POT/POT.po: $(foreach page,$(DOC_PAGES),C/$(page)) +translations/simple-scan-help.pot: POT/POT.po + $(mkdir_p) $(dir $@) + sed 's|^#: /.*/\(.*\)|#: \1|g' $^ > $@ + +dist-hook: doc-dist-hook + +EXTRA_DIST = translations po.stamp +DISTCLEANFILES = translations/simple-scan-help.pot + +.PHONY: update-pot |