]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/po/GNUmakefile
Merge master into nested-bookparts
[lilypond.git] / Documentation / po / GNUmakefile
1 depth = ../..
2
3 STEPMAKE_TEMPLATES=podir
4 LOCALSTEPMAKE_TEMPLATES=lilypond
5
6 include $(depth)/make/stepmake.make
7
8 doc-localedir=$(outdir)
9 LANGS = $(shell $(PYTHON) $(top-src-dir)/python/langdefs.py)
10 DOMAIN=lilypond-doc
11 DOC_PO_SOURCES = postprocess_html.py texi-gettext.py translations-status.py
12 TELY_FILES = $(shell ls $(depth)/Documentation/user/lilypond*.tely)
13 TELY_FILES += $(foreach l, $(LANGS), $(shell ls $(depth)/Documentation/$(l)/user/lilypond*.tely))
14
15 messages: $(outdir)/messages
16
17 $(outdir)/messages: $(MO_FILES)
18         for i in $(CATALOGS); do \
19           mkdir -p $(doc-localedir)/$$i/LC_MESSAGES; \
20           cp $(outdir)/$$i.mo $(doc-localedir)/$$i/LC_MESSAGES/$(DOMAIN).mo; \
21         done
22         touch $@
23
24 po-update:
25         $(PYTHON) $(buildscript-dir)/texi-langutils.py -d $(outdir) -o texi.pot --gettext $(TELY_FILES:%.tely=../%.tely)
26         $(foreach i, $(DOC_PO_SOURCES), cp $(buildscript-dir)/$(i) $(outdir) &&) true
27         cd $(outdir) && sed -i -e s/_doc/_/g $(DOC_PO_SOURCES)
28         cd $(outdir) && xgettext -cjn -L Python -o buildscripts.pot $(DOC_PO_SOURCES)
29         msgcat -o $(outdir)/doc.pot $(outdir)/buildscripts.pot $(outdir)/texi.pot
30         msgmerge -U lilypond-doc.pot $(outdir)/doc.pot
31         for i in $(CATALOGS); do \
32           msgmerge -U $$i.po lilypond-doc.pot; \
33         done