X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=doc%2FMakefile;h=ef3ef6d1b38a40aa44337374eaef11d6ee8e957e;hp=55b7a548229874fb287e0d9f2b99ec74b86472bc;hb=52ac83fedbfd380d14d4df2e79992bbdfba3552a;hpb=01e524f11a67390a8ea1f20aa2d611909b4da363 diff --git a/doc/Makefile b/doc/Makefile index 55b7a548..ef3ef6d1 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -2,24 +2,40 @@ # http://docbook.sourceforge.net/release/xsl/current/README # -all: telemetrum.html telemetrum.pdf +HTML=altusmetrum.html altos.html +PDF=altusmetrum.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/docbook-xsl/html/docbook.xsl \ - telemetrum.xsl +.SUFFIXES: .xsl .html .fo .pdf -telemetrum.fo: telemetrum.xsl - xsltproc -o telemetrum.fo \ - /usr/share/xml/docbook/stylesheet/docbook-xsl/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) /home/bdale/web/altusmetrum/AltOS/doc/ + (cd /home/bdale/web/altusmetrum ; \ + git add /home/bdale/web/altusmetrum/AltOS/doc/* ; \ + echo "update docs" | \ + git commit -F - /home/bdale/web/altusmetrum/AltOS/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: altusmetrum.xsl + xmlindent -i 2 < altusmetrum.xsl > altusmetrum.new