blob: eb6222628c3791be75ebc9909579293be8143ca9 [file] [log] [blame]
<?xml version="1.0"?>
<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="1500" />
</target>
<target name="pre-call">
<echo>pre-call1</echo>
</target>
</project>