diff options
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile new file mode 100644 index 0000000..10793bf --- /dev/null +++ b/Documentation/Makefile @@ -0,0 +1,15 @@ +# makefile for documentation for pbuilder. + +#required packages: +# docbook-xsl +# ldp-docbook-xsl +# xsltproc + +all: pbuilder-doc.html + +%.html: %.xml + xsltproc /usr/share/sgml/docbook/stylesheet/xsl/ldp/ldp-html.xsl $< > $@ + +# for my homepage-publishing. +release-netfort: pbuilder-doc.html pbuilder-doc.xml + cp $^ ~/public_html/netfort/software/pbuilder-doc/ |