X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=doc%2FMakefile;h=52934290777b14d59a070decf9d367398caf9eaa;hb=ae55a107f12546dc65f04618c7abc17beb920d73;hp=d3293900227cec06b490a8ebc6031d106cda2b86;hpb=20d4d410e0fc04fe192e309811eed6c0194fa5a8;p=fw%2Faltos diff --git a/doc/Makefile b/doc/Makefile index d3293900..52934290 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -2,24 +2,36 @@ # http://docbook.sourceforge.net/release/xsl/current/README # -all: telemetrum.html telemetrum.pdf +HTML=telemetrum-doc.html altosui-doc.html altos.html +PDF=telemetrum-doc.pdf altosui-doc.pdf altos.pdf +DOC=$(HTML) $(PDF) +HTMLSTYLE=/usr/share/xml/docbook/stylesheet/docbook-xsl/html/docbook.xsl +FOSTYLE=/usr/share/xml/docbook/stylesheet/docbook-xsl/fo/docbook.xsl +PDFSTYLE= -telemetrum.html: telemetrum.xsl - xsltproc -o telemetrum.html \ - /usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl \ - telemetrum.xsl +.SUFFIXES: .xsl .html .fo .pdf -telemetrum.fo: telemetrum.xsl - xsltproc -o telemetrum.fo \ - /usr/share/xml/docbook/stylesheet/nwalsh/fo/docbook.xsl \ - telemetrum.xsl +.xsl.html: + xsltproc -o $@ $(HTMLSTYLE) $*.xsl -telemetrum.pdf: telemetrum.fo - fop -fo telemetrum.fo -pdf telemetrum.pdf +.xsl.fo: + xsltproc -o $@ $(FOSTYLE) $*.xsl + +.fo.pdf: + fop -fo $*.fo -pdf $@ + +all: $(HTML) $(PDF) + +publish: $(DOC) + cp $(DOC)telemetrum-doc.html home/bdale/web/altusmetrum/TeleMetrum/doc/ + (cd /home/bdale/web/altusmetrum ; echo "update docs" | git commit -F - /home/bdale/web/altusmetrum/TeleMetrum/doc/* ; git push) clean: - rm -f telemetrum.html telemetrum.pdf telemetrum.fo + rm -f *.html *.pdf *.fo + +distclean: + rm -f *.html *.pdf *.fo -indent: telemetrum.xsl - xmlindent -i 2 < telemetrum.xsl > telemetrum.new +indent: telemetrum-doc.xsl + xmlindent -i 2 < telemetrum-doc.xsl > telemetrum-doc.new