diff options
| author | Tammy Fox <tfox@redhat.com> | 2003-09-22 16:34:23 +0000 |
|---|---|---|
| committer | Tammy Fox <tfox@redhat.com> | 2003-09-22 16:34:23 +0000 |
| commit | 8e6d5fdfdbfe0310c80fbc5ef4c7697e9b55e214 (patch) | |
| tree | 582d382f596e27b1264ab976a0f04138fa96ca5f /Makefile | |
add docs guide
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad86a22 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +############################################################################### +# Makefile for community charter +# Created by: Tammy Fox <tfox@redhat.com> +# Last edited by: Tammy Fox <tfox@redhat.com> +# WARNING: need passivetex 1.24 for pdf generation to work +############################################################################### + +XSLPDF = ../xsl/main-pdf.xsl +XSLHTML = ../xsl/main-html.xsl + +all: html pdf + +html: documentation-guide.xml + @xmlto html -x $(XSLHTML) -o documentation-guide $< + +pdf: documentation-guide.xml + @xmlto pdf -x $(XSLPDF) $< + +clean: + @rm -rfv *.html *.pdf *.tex documentation-guide/ |
