Update of /cvsroot/fxpy/FXPy/doc
In directory sc8-pr-cvs1:/tmp/cvs-serv23814
Modified Files:
Makefile
Log Message:
added Linux target
Index: Makefile
===================================================================
RCS file: /cvsroot/fxpy/FXPy/doc/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile 2 Apr 2002 17:13:45 -0000 1.2
+++ Makefile 25 Jan 2003 15:54:01 -0000 1.3
@@ -6,11 +6,17 @@
SAXON = saxon
DOCBOOK_XSL = C:\docbook\docbook-xsl-customized\html\chunk.xsl
+XSL_LINUX = /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/html/chunk.xsl
all: xml
xml:
$(SAXON) book.xml $(DOCBOOK_XSL)
+
+# this works on a Debian Linux system, you need to
+# apt-get install xsltproc docbook-xsl
+xml-unix:
+ xsltproc $(XSL_LINUX) book.xml
clean:
@rm -f *.html
|