hi,
I'm new to using
ant.
I'm trying this code
<project name="trial" default="about" basedir=".">
<target name="init">
<property name="build" value="build" />
</target>
<target name="prepare" depends="init">
<mkdir dir="${build}" />
</target>
<target name="about">
<echo message="A trial script" />
<echo message=" " />
</target>
</project>
But this is not working, how can i create directory for destination of compiled files?
Wot is wrong in this code?