forked from AdoptOpenJDK/jitwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
30 lines (23 loc) · 830 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
<project name="jitwatch" default="all" basedir=".">
<target name="clean">
<ant inheritAll="false" dir="core" target="clean" />
<ant inheritAll="false" dir="ui" target="clean" />
</target>
<target name="compile">
<ant inheritAll="false" dir="core" target="compile" />
<ant inheritAll="false" dir="ui" target="compile" />
</target>
<target name="test">
<ant inheritAll="false" dir="core" target="test" />
<ant inheritAll="false" dir="ui" target="test" />
</target>
<target name="jar">
<ant inheritAll="false" dir="core" target="doJar" />
<ant inheritAll="false" dir="ui" target="doJar" />
</target>
<target name="run" depends="jar">
<ant inheritAll="false" dir="core" target="doRun" />
<ant inheritAll="false" dir="ui" target="doRun" />
</target>
<target name="all" depends="jar" />
</project>