]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/po/GNUmakefile
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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 TELY_FILES += $(shell ls $(depth)/input/lsr/*.ly)
15
16 messages: $(outdir)/messages
17
18 $(outdir)/messages: $(MO_FILES)
19         for i in $(CATALOGS); do \
20           mkdir -p $(doc-localedir)/$$i/LC_MESSAGES; \
21           cp $(outdir)/$$i.mo $(doc-localedir)/$$i/LC_MESSAGES/$(DOMAIN).mo; \
22         done
23         touch $@
24
25 po-update:
26         $(PYTHON) $(buildscript-dir)/texi-langutils.py -d $(outdir) -o texi.pot --gettext $(TELY_FILES:%.tely=../%.tely)
27         $(foreach i, $(DOC_PO_SOURCES), cp $(buildscript-dir)/$(i) $(outdir) &&) true
28         cd $(outdir) && sed -i -e s/_doc/_/g $(DOC_PO_SOURCES)
29         cd $(outdir) && xgettext -cjn -L Python -o buildscripts.pot $(DOC_PO_SOURCES)
30         msgcat -o $(outdir)/doc.pot $(outdir)/buildscripts.pot $(outdir)/texi.pot
31         msgmerge -U lilypond-doc.pot $(outdir)/doc.pot
32         for i in $(CATALOGS); do \
33           msgmerge -U $$i.po lilypond-doc.pot; \
34         done