curcuru 01/01/31 13:02:04
Modified: java build.xml
Log:
Add 'jar' to depends of docs and dist targets; required to build
cleanly/automatically
Revision Changes Path
1.84 +3 -3 xml-xalan/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/build.xml,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- build.xml 2001/01/30 17:16:57 1.83
+++ build.xml 2001/01/31 21:02:02 1.84
@@ -46,7 +46,7 @@
- Much of this file stolen from Stefano's xml-xerces build.xml
- $Id: build.xml,v 1.83 2001/01/30 17:16:57 dleslie Exp $
+ $Id: build.xml,v 1.84 2001/01/31 21:02:02 curcuru Exp $
==================================================================== -->
@@ -348,7 +348,7 @@
<!-- ===================================================================
-->
<!-- Generate HTML docs
-->
<!-- ===================================================================
-->
- <target name="docs" depends="prepare.docs,autodocs"
+ <target name="docs" depends="jar,prepare.docs,autodocs"
description="Build the framework documentation (overview, readme, etc.)"
>
<echo message="docs is human-usable target with dependencies"/>
</target>
@@ -435,7 +435,7 @@
<!-- ===================================================================
-->
<!-- Creates the distribution
-->
<!-- ===================================================================
-->
- <target name="dist"
depends="docs,javadocs,samples,servlet,compat.jar,compat.javadocs,autodist"
+ <target name="dist"
depends="jar,docs,javadocs,samples,servlet,compat.jar,compat.javadocs,autodist"
description="Create a .zip/.tar.gz distribution module" >
<echo message="dist is human-useable target for distribution, with all
dependencies"/>
</target>