X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=doc%2FMakefile;h=707a4428ad527c578dd66d956b7c457cb44f30d0;hb=HEAD;hp=ef3ef6d1b38a40aa44337374eaef11d6ee8e957e;hpb=f39698bbc12afdfadfac56c90030e16db93cf4fc;p=fw%2Faltos diff --git a/doc/Makefile b/doc/Makefile deleted file mode 100644 index ef3ef6d1..00000000 --- a/doc/Makefile +++ /dev/null @@ -1,41 +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) - -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 -