we need an install target to prevent parent dir make from failing
[fw/altos] / doc / Makefile
index d3293900227cec06b490a8ebc6031d106cda2b86..80c84409a0f459115de9d0905de22ecf7c667924 100644 (file)
@@ -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