blob: 868a486ecb1662dbea315f59a23ed07ae5bf4bec [file] [log] [blame]
<project name="debugAntCall"
default="default">
<target name="default">
<antcall target="call">
</antcall>
<echo>default</echo>
</target>
<target name="call" depends="pre-call">
<echo>call1</echo>
<sleep milliseconds="30" />
</target>
<target name="pre-call">
<echo>pre-call1</echo>
</target>
</project>