tmiller 02/04/24 12:29:43
Modified: java build.xml
Log:
added xsltc compilation target, xsltc.fcompile, for
fast compile- this target does not recompile JLex, JCUP stuff
Revision Changes Path
1.171 +18 -4 xml-xalan/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/build.xml,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- build.xml 24 Mar 2002 14:58:31 -0000 1.170
+++ build.xml 24 Apr 2002 19:29:43 -0000 1.171
@@ -41,7 +41,7 @@
Copyright:
Copyright (c) 1999-2001 The Apache Software Foundation.
- $Id: build.xml,v 1.170 2002/03/24 14:58:31 sboag Exp $
+ $Id: build.xml,v 1.171 2002/04/24 19:29:43 tmiller Exp $
==================================================================== -->
<project name="Xalan" default="jar" basedir=".">
@@ -183,7 +183,7 @@
<!-- Creates output build directories and doc prerequistes
-->
<!-- ===================================================================
-->
<target name="prepare">
- <echo message="Project:${Name-in-docs} version:${version} build.xml
$Revision: 1.170 $"/>
+ <echo message="Project:${Name-in-docs} version:${version} build.xml
$Revision: 1.171 $"/>
<mkdir dir="${build.dir}"/>
<mkdir dir="${build.classes}"/>
<!-- Note that all testing-related targets *must* depend on
@@ -361,6 +361,18 @@
</javac>
</target>
+ <target name="xsltc.fcompile"
+ description="Compile just the XSLTC classes w/o JLex, JCup
recompilation" >
+ <echo message="Compiling remaining XSLTC classes"/>
+ <javac srcdir="${src.dir}"
+ destdir="${build.classes}"
+ includes="${xsltc.reldir}/**/*.java"
+ debug="${build.debug}">
+ <classpath refid="xsltc.class.path" />
+ <bootclasspath refid="xslt.boot.class.path" />
+ </javac>
+ </target>
+
<target name="xsltc.unbundledjar" depends="xsltc.compile"
description="Jar just the xsltc.jar file" >
<!-- Copy over the manifest, with filtering (for version number) -->
@@ -521,7 +533,8 @@
unless="skipcompat" >
<mkdir dir="${build.compat.apidocs}"/>
<javadoc
- public="true"
+ private="true"
+ maxmemory="128m"
sourcepath="${compat.src.dir}"
overview="${compat.src.dir}/compatOverview.html"
packagenames="org.apache.xalan.xslt,org.apache.xalan.xpath,org.apache.xalan.xpath.xml"
@@ -686,7 +699,8 @@
<!-- Ant ignores destdir arg if doclet is set, so must send to doclet in
doclet subelement-->
<javadoc
- public="true"
+ private="true"
+ maxmemory="128m"
sourcepath="${src.dir}"
overview="${src.dir}/javadocOverview.html"
packagenames="org.apache.*,org.xml.*,org.w3c.*,javax.xml.*"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]