forked from loonwerks/jkind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
30 lines (21 loc) · 806 Bytes
/
build.xml
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
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project name="JKind Creator" basedir="." default="all" >
<target name="clean" >
<delete dir="./jkind/bin" />
<delete dir="./jkind-api/bin" />
<delete dir="./jkind-common/bin" />
<delete file="./build/jkind.jar" />
</target>
<target name="all" >
<!-- Build the JKind sources. Depends on the individual build.xml files
within each of the project subfolders. Only need to call the top level
from here, but this will build any dependencies.
-->
<ant antfile="build.xml" dir="./jkind" />
<!-- Build the jar -->
<ant antfile="build.xml" dir="./build" />
</target>
<target name="jar" >
<ant antfile="build.xml" dir="./build" />
</target>
</project>