]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/po/GNUmakefile
Split user manual by creating "program-usage" manual
[lilypond.git] / Documentation / po / GNUmakefile
1 depth = ../..
2
3 STEPMAKE_TEMPLATES=podir
4
5 include $(depth)/make/stepmake.make
6
7 doc-localedir=$(outdir)
8 DOMAIN=lilypond-doc
9 DOC_PO_SOURCES = add_html_footer.py texi-gettext.py
10 TELY_FILES = $(shell ls $(depth)/Documentation/user/lilypond*.tely)
11
12 messages: $(MO_FILES)
13         for i in $(CATALOGS); do \
14           mkdir -p $(doc-localedir)/$$i/LC_MESSAGES; \
15           cp $(outdir)/$$i.mo $(doc-localedir)/$$i/LC_MESSAGES/$(DOMAIN).mo; \
16         done
17
18 po-update:
19         $(PYTHON) $(buildscript-dir)/texi-langutils.py -d $(outdir) -o texi.pot --gettext $(TELY_FILES:%.tely=../%.tely)
20         $(foreach i, $(DOC_PO_SOURCES), cp $(buildscript-dir)/$(i) $(outdir) &&) true
21         cd $(outdir) && sed -i -e s/_doc/_/g $(DOC_PO_SOURCES)
22         cd $(outdir) && xgettext -cjn -L Python -o buildscripts.pot $(DOC_PO_SOURCES)
23         msgcat -o $(outdir)/doc.pot $(outdir)/buildscripts.pot $(outdir)/texi.pot
24         msgmerge -U lilypond-doc.pot $(outdir)/doc.pot
25         for i in $(CATALOGS); do \
26           msgmerge -U $$i.po lilypond-doc.pot; \
27         done