adammurdoch 02/02/12 18:31:54
Modified: proposal/myrmidon build.xml
Log:
Added 'recompile' target, to force recompile of Java classes.
Revision Changes Path
1.56 +11 -0 jakarta-ant/proposal/myrmidon/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/build.xml,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- build.xml 12 Feb 2002 10:45:19 -0000 1.55
+++ build.xml 13 Feb 2002 02:31:54 -0000 1.56
@@ -524,9 +524,20 @@
</delete>
</target>
+ <!-- Cleans up the compiled classes -->
+ <target name="clean-classes">
+ <delete dir="${build.classes}"/>
+ </target>
+
<!-- Rebuilds the distribution -->
<target name="rebuild" description="Rebuilds the distribution">
<antcall target="clean"/>
+ <antcall target="main"/>
+ </target>
+
+ <!-- Recompiles the classes, and builds the distribution -->
+ <target name="recompile" description="Recompiles and builds the the
distribution">
+ <antcall target="clean-classes"/>
<antcall target="main"/>
</target>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>