blob: db4651a722caf82c6309e7f7fd72da2c554d41ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<project>
<target name="clean">
<delete dir="build"/>
</target>
<target name="compile">
<mkdir dir="build/classes"/>
<javac srcdir="src" destdir="build/classes"/>
</target>
<target name="jar">
<mkdir dir="build/jar"/>
<jar destfile="build/jar/Jttt.jar" basedir="build/classes">
<manifest>
<attribute name="Main-Class" value="Jttt"/>
</manifest>
</jar>
</target>
<target name="run">
<java jar="build/jar/Jttt.jar" fork="true"/>
</target>
</project>
|