X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=doc%2FMakefile;h=efa7f9d37c75e56534ebf788803336e5fcc12375;hb=HEAD;hp=80c84409a0f459115de9d0905de22ecf7c667924;hpb=4ae724fe1d2ca0d712321c4fdc2200ff46d77428;p=fw%2Faltos diff --git a/doc/Makefile b/doc/Makefile deleted file mode 100644 index 80c84409..00000000 --- a/doc/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# -# http://docbook.sourceforge.net/release/xsl/current/README -# - -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= - -.SUFFIXES: .xsl .html .fo .pdf - -.xsl.html: - xsltproc -o $@ $(HTMLSTYLE) $*.xsl - -.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 $(HTML) $(PDF) *.fo - -distclean: - rm -f $(HTML) $(PDF) *.fo - -indent: altusmetrum.xsl - xmlindent -i 2 < altusmetrum.xsl > altusmetrum.new -