techtonik Tue Oct 5 07:16:55 2004 EDT
Modified files:
/phpdoc Makefile.in
Log:
[ADD] commands to build howto with XSL
http://cvs.php.net/diff.php/phpdoc/Makefile.in?r1=1.153&r2=1.154&ty=u
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.153 phpdoc/Makefile.in:1.154
--- phpdoc/Makefile.in:1.153 Wed Sep 8 17:38:52 2004
+++ phpdoc/Makefile.in Tue Oct 5 07:16:52 2004
@@ -16,7 +16,7 @@
#
#
-# $Id: Makefile.in,v 1.153 2004/09/08 21:38:52 betz Exp $
+# $Id: Makefile.in,v 1.154 2004/10/05 11:16:52 techtonik Exp $
#
all: html
@@ -49,6 +49,7 @@
XMLDCL=$(srcdir)/dtds/dbxml-4.1.2/phpdocxml.dcl
CHM_XSL_SHEET=xsl/htmlhelp.xsl
+HOWTO_XSL_SHEET=xsl/howto.xsl
BIGHTML_DEPS=$(HTML_STYLESHEET) dsssl/html-common.dsl dsssl/html-locale.dsl.in
dsssl/common.dsl.in zendapi
HTML_DEPS=$(HTML_STYLESHEET) dsssl/html-common.dsl dsssl/html-locale.dsl.in
dsssl/common.dsl.in zendapihtml
@@ -184,6 +185,10 @@
fo: manual.xml zendapi
${XSLTPROC} -o manual.fo xsl/fo.xsl manual.xml
+howto_xsl:
+ rm -rf ./howto/html && mkdir ./howto/html
+ ${XSLTPROC} $(HOWTO_XSL_SHEET) ./howto/howto.xml
+
chm_xsl: manual.xml
rm -rf ./htmlhelp/html && mkdir ./htmlhelp/html
${XSLTPROC} $(CHM_XSL_SHEET) manual.xml
@@ -302,6 +307,9 @@
@if test ! -e entities/missing-entities.ent; then touch
entities/missing-entities.ent; fi
@if test ! -e @LANGDIR@/missing-ids.xml; then touch @LANGDIR@/missing-ids.xml;
fi
$(XMLLINT) --noent --noout --valid manual.xml
+
+test_howto:
+ $(XMLLINT) --noent --noout --valid ./howto/howto.xml
# }}}