Update of /cvsroot/nice/Nice/web
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6228/web
Modified Files:
Makefile
Log Message:
Create the PDF version of the manual using fop, since xmlto is broken at the
moment.
Index: Makefile
===================================================================
RCS file: /cvsroot/nice/Nice/web/Makefile,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Makefile 9 Dec 2003 17:26:03 -0000 1.14
--- Makefile 2 Sep 2004 19:13:07 -0000 1.15
***************
*** 35,38 ****
--- 35,43 ----
xmlto $(shell expr match $@ 'manual\.\(.*\)') manual.xml
+ manual.pdf: manual.xml
+ xsltproc --stringparam fop.extensions 1 -o manual.fo /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/fo/docbook.xsl manual.xml
+ fop manual.fo -pdf manual.pdf
+ rm manual.fo
+
%.html: %.xml new.xsl
if ! $(PROC) new.xsl $*.xml > $@; then rm $@; fi
|