<project name="hello" default="build">

	<target name="test">
  		<echo message="Hello!"/>
	</target>

	<target name="build">
		<javac compiler="jikes" listfiles="yes" srcdir="."/>
	</target>

	<target name="run">
		<java classname="hello.Sample"/>
	</target>

</project>

