Browse Source

Update sample build file.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269129 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
3808ad11fb
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      proposal/myrmidon/src/make/sample.ant

+ 6
- 2
proposal/myrmidon/src/make/sample.ant View File

@@ -20,11 +20,11 @@ Legal:

<target name="main" depends="property-test" />

<target name="no-test-target" if="no-do-tests">
<target name="no-test-target" unless="no-do-tests">
<echo message="No tests done here"/>
</target>

<target name="test-target" depends="no-test-target" unless="no-do-tests">
<target name="test-target" depends="no-test-target" if="no-do-tests">

<echo message="Tests away"/>

@@ -96,6 +96,10 @@ Legal:

<echo message="foo2=${foo2}" />

<pattern id="foo3" name="*.java" if="foo" />

<echo message="foo3=${foo3}" />

</target>

<target name="property-test2">


Loading…
Cancel
Save