hello/Java/build.xml

27 lines
654 B
XML
Raw Permalink Normal View History

<project name="hello" default="compile" basedir=".">
<description>
Sieve of Eratosthenes in Java
</description>
<property name="src" location="src"/>
<property name="classes" location="classes"/>
<target name="clean">
<delete dir="classes"/>
</target>
<target name="init">
<tstamp/>
<mkdir dir="classes"/>
</target>
<target name="compile" depends="init">
<javac srcdir="src" destdir="classes" includeantruntime="false" />
</target>
<target name="jar" depends="compile">
<jar destfile="hello.jar" basedir="classes"
manifest="manifest.mf" />
</target>
</project>