<!-- compiling with Jet under ANT --> <!-- P R E J E T avoid JET compile if already done. --> <target name="prejet"> <uptodate property="jet.uptodate" srcfile="${jar.file}" targetfile="${exe.file}" /> </target> <!-- J E T --> <!-- Requires Excelsior Jet native Java compiler jc.exe on the path --> <!-- See http://mindprod.com/jgloss/jet.html for details --> <target name="jet" depends="prejet" unless="jet.uptodate"> <exec executable="jc.exe" dir="${package.dir}"> <arg value="-DECOR=" /> <arg value="${jar.name}" /> </exec> </target>