X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=doc%2FMakefile;h=80c84409a0f459115de9d0905de22ecf7c667924;hp=d3293900227cec06b490a8ebc6031d106cda2b86;hb=4ae724fe1d2ca0d712321c4fdc2200ff46d77428;hpb=447c121fc1ceb878e45718ad1364a5349965a59a diff --git a/doc/Makefile b/doc/Makefile index d3293900..80c84409 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -2,24 +2,42 @@ # 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/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) + +install: all + +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