X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=doc%2FMakefile;h=6a04a591dd57e458d2e62a7e6838df52b13c26ac;hb=HEAD;hp=ea0301894905e2fc6c0bba223d50e993b6fc2c2c;hpb=92d7841edcfc8a841f71f7f97cc541f8e55c4627;p=fw%2Faltos diff --git a/doc/Makefile b/doc/Makefile deleted file mode 100644 index ea030189..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 -