X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=manpages%2FMakefile;h=e488b6828f2b97bf6e547a8d275d904398b5626c;hb=d83d3309c0a7f94d6d946564bbd933bbaa5ce02b;hp=5d292638ff34d643f2ee1666eace0cb61a36efe4;hpb=6ee6bc6eea2b2e28ff801bd2f70b61dae9ff6c1a;p=live-boot-grml.git diff --git a/manpages/Makefile b/manpages/Makefile index 5d29263..e488b68 100644 --- a/manpages/Makefile +++ b/manpages/Makefile @@ -1,21 +1,41 @@ -all: doc +# Makefile -doc: doc_man doc_html +SHELL := sh -e -doc_html: html-stamp +LANGUAGES = $(shell cd po && ls) -html-stamp: live-initramfs.en.7.txt - asciidoc -b xhtml11 -a icons live-initramfs.en.7.txt - touch html-stamp +all: build -doc_man: man-stamp +po4a.cfg: + echo "[po4a_langs] $(LANGUAGES)" > po4a.cfg + echo "[po4a_paths] pot/\$$master.pot \$$lang:po/\$$lang/\$$master.po" >> po4a.cfg -man-stamp: live-initramfs.en.7.txt + for MANPAGE in en/*; \ + do \ + SECTION="$$(basename $${MANPAGE} | sed -e 's|\.|\n|g' | tail -n1)"; \ + echo "[type: man] $${MANPAGE} \$$lang:\$$lang/$$(basename $${MANPAGE} .$${SECTION}).\$$lang.$${SECTION}" >> po4a.cfg; \ + done - asciidoc -d manpage -b docbook live-initramfs.en.7.txt - xsltproc /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl live-initramfs.en.7.xml - mv live-initramfs.7 live-initramfs.en.7 - touch man-stamp +update: + ./bin/update-version.sh + +build: po4a.cfg + @if [ ! -x "$$(which po4a 2>/dev/null)" ]; \ + then \ + echo "E: po4a - command not found"; \ + echo "I: po4a can be obtained from:"; \ + echo "I: http://po4a.alioth.debian.org/"; \ + echo "I: On Debian based systems, po4a can be installed with:"; \ + echo "I: apt-get install po4a"; \ + exit 1; \ + fi + + po4a --keep 0 --no-backups --package-name live-boot po4a.cfg clean: - rm -f live-initramfs.en.7.html live-initramfs.en.7.xml live-initramfs.en.7 html-stamp man-stamp + rm -rf $(LANGUAGES) + +distclean: clean + rm -f po4a.cfg + +rebuild: distclean update build