-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
21 lines (17 loc) · 852 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8" ?>
<project name="gwt-distributed-compiler" default="build" basedir=".">
<target name="clean" description="Clean.">
<delete dir="{dist}"/>
</target>
<target name="init" description="Initialize.">
<mkdir dir="${dist}"/>
</target>
<target name="build" description="Run build target for each of the components.">
<ant antfile="${basedir}/compiler/build.xml" useNativeBasedir="true" target="build"/>
<ant antfile="${basedir}/agent/build.xml" useNativeBasedir="true" target="build"/>
</target>
<target name="dist" depends="build" description="Run dist target for each of the components.">
<ant antfile="${basedir}/compiler/build.xml" useNativeBasedir="true" target="dist"/>
<ant antfile="${basedir}/agent/build.xml" useNativeBasedir="true" target="dist"/>
</target>
</project>