hi. I am trying to run a code from build file. is this right
Code:
<project default="compile">
<target name="compile" depends='prob1,prob2'/>
<target name="prob1" >
<javac srcdir='./' includes='prob1.java' includeantruntime="false"/>
</target>
<target name="run" depends='compile'>
<java classname='prob1'/>
</target> </project>