chiark / gitweb /
Revert "Switch to using Halibut's new direct .CHM generation."
[sgt-puzzles.git] / Makefile.doc
index c7d6946cf1ab43f33f33a07844ff6bf822f0ee85..00436a56ab6b3f4ef60ecee7a233182541e2d8a3 100644 (file)
@@ -13,5 +13,77 @@ chm: puzzles.hhp
 puzzles.hhp: puzzles.but chm.but
        halibut --html puzzles.but chm.but
 
+TRANSLATIONS := $(patsubst po/%.po,%,$(wildcard po/*.po))
+LANGUAGES := en $(TRANSLATIONS)
+
+update-po:
+# Please tell me there is an easier way to preserve the POT file header.
+       test -f po/puzzles-doc.pot
+       po4a-gettextize -f halibut -m puzzles.but --package-name puzzles \
+               -p po/puzzles-doc.tmp1.pot
+       awk -F: '{ print ""; \
+                  print "#: " $$1 ".R"; \
+                  print "msgid \"" $$4 "\""; \
+                  print "msgstr \"\""; }' \
+               < gamedesc.txt >> po/puzzles-doc.tmp1.pot
+       xgettext -j -cTranslator: --package-name puzzles \
+               -o po/puzzles-doc.tmp1.pot mkmanpages.pl
+       sed -i '1,/^#$$/d' po/puzzles-doc.tmp1.pot
+       cat po/puzzles-doc.pot.head po/puzzles-doc.tmp1.pot \
+               > po/puzzles-doc.tmp2.pot
+       diff -q -I Project-Id-Version: -I POT-Creation-Date: \
+               po/puzzles-doc.pot po/puzzles-doc.tmp2.pot || \
+               mv po/puzzles-doc.tmp2.pot po/puzzles-doc.pot
+       rm -f po/puzzles-doc.tmp*.pot
+       for lang in $(TRANSLATIONS); do \
+               msgmerge --previous -U po/$$lang.po po/puzzles-doc.pot || exit; \
+       done
+.PHONY: update-po
+
+doc/puzzles.but.%: puzzles.but po/%.po
+       mkdir -p doc
+       po4a-translate -k 0 -f halibut -m puzzles.but -p po/$*.po -l $@
+.PRECIOUS: $(addprefix doc/puzzles.but.,$(TRANSLATIONS))
+
+doc/preprocessed.but.%: doc/puzzles.but.%
+       sed 's/PREFIX-/$(BINPREFIX)/g' $< > $@
+
+doc/puzzles.txt.%: doc/preprocessed.but.%
+       halibut --text=$@ --input-charset=UTF-8 $<
+all: $(addprefix doc/puzzles.txt.,$(TRANSLATIONS))
+
+doc/man-en-stamp: preprocessed.but
+       mkdir -p doc
+       rm -rf doc/man-en
+       mkdir doc/man-en
+       perl mkmanpages.pl en
+       touch $@
+doc/man-%-stamp: doc/preprocessed.but.%
+       mkdir -p doc
+       rm -rf doc/man-$*
+       mkdir doc/man-$*
+       perl mkmanpages.pl $*
+       touch $@
+man: $(patsubst %,doc/man-%-stamp,$(LANGUAGES))
+
+doc/html-en-stamp: preprocessed.but
+       mkdir -p doc
+       rm -rf doc/html-en
+       mkdir doc/html-en
+       cd doc/html-en && halibut --html ../../preprocessed.but
+       touch $@
+doc/html-%-stamp: doc/preprocessed.but.%
+       mkdir -p doc
+       rm -rf doc/html-$*
+       mkdir doc/html-$*
+       cd doc/html-$* && halibut --html --input-charset=UTF-8 ../preprocessed.but.$*
+       touch $@
+html: $(patsubst %,doc/html-%-stamp,$(LANGUAGES))
+
+.PHONY: man html
+all: man html
+
 clean:
        rm -f puzzles.hlp puzzles.txt preprocessed.but HACKING *.html *.hh[pck]
+       rm -f puzzles.cnt
+       rm -rf doc