Browse Source

Added 'recompile' target, to force recompile of Java classes.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271302 13f79535-47bb-0310-9956-ffa450edef68
master
adammurdoch 23 years ago
parent
commit
6cade52b36
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      proposal/myrmidon/build.xml

+ 11
- 0
proposal/myrmidon/build.xml View File

@@ -524,10 +524,21 @@ Legal:
</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>

</project>

Loading…
Cancel
Save