tmiller 02/04/23 11:08:08
Modified: java Tag: jaxp-ri-1_2_0-fcs-branch build.xml
Log:
Added new target 'xsltc.fcompile' for fast compile- will not recompile
JLex JCUP stuff. For complete recompilations, use xsltc.compile.
Revision Changes Path
No revision
No revision
1.167.2.2 +14 -2 xml-xalan/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/build.xml,v
retrieving revision 1.167.2.1
retrieving revision 1.167.2.2
diff -u -r1.167.2.1 -r1.167.2.2
--- build.xml 3 Apr 2002 15:05:10 -0000 1.167.2.1
+++ build.xml 23 Apr 2002 18:08:07 -0000 1.167.2.2
@@ -41,7 +41,7 @@
Copyright:
Copyright (c) 1999-2001 The Apache Software Foundation.
- $Id: build.xml,v 1.167.2.1 2002/04/03 15:05:10 tmiller Exp $
+ $Id: build.xml,v 1.167.2.2 2002/04/23 18:08:07 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.167.2.1 $"/>
+ <echo message="Project:${Name-in-docs} version:${version} build.xml
$Revision: 1.167.2.2 $"/>
<mkdir dir="${build.dir}"/>
<mkdir dir="${build.classes}"/>
<!-- Note that all testing-related targets *must* depend on
@@ -351,6 +351,18 @@
(which forces all later steps to re-run as well) -->
<target name="xsltc.compile" depends="xsltc.java_cup,xsltc.jlex"
description="Compile just the XSLTC classes" >
+ <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.fcompile"
+ description="Compile just the XSLTC classes w/o JLex, JCUP" >
<echo message="Compiling remaining XSLTC classes"/>
<javac srcdir="${src.dir}"
destdir="${build.classes}"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]