Browse Source

Rename dist target to dist-lite and create a new target dist that also runs the tests.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271102 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
010630d10d
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      proposal/myrmidon/build.xml

+ 6
- 2
proposal/myrmidon/build.xml View File

@@ -76,7 +76,7 @@ Legal:
</path>

<!-- Main target -->
<target name="main" depends="dist" />
<target name="main" depends="dist-lite" />

<!-- lets see what is available -->
<target name="check_for_optional_packages">
@@ -448,7 +448,7 @@ Legal:
</target>

<!-- Creates the distribution -->
<target name="dist" depends="jars">
<target name="dist-lite" depends="jars">

<mkdir dir="${dist.bin}"/>
<mkdir dir="${dist.lib}"/>
@@ -490,6 +490,10 @@ Legal:

</target>

<!-- Creates the distribution -->
<target name="dist" depends="dist-lite,test"/>


<!-- Cleans up build and distribution directories -->
<target name="clean">
<delete dir="${build.dir}"/>


Loading…
Cancel
Save