forked from CBCJVM/CBCJVM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
32 lines (27 loc) · 1.17 KB
/
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
31
32
<project name="build-all" default="dist">
<description>
Initializes, compiles (runs dist), or cleans all subscripts
</description>
<property name="install-antfile" location="installer/"/>
<property name="libraries-antfile" location="cbc/CBCJVM/"/>
<!-- Note how there is no dependency chain. This is intentional,
each subscript will handle it's own dependencies -->
<target name="init" description="initialize all subscripts">
<ant antfile="build.xml" dir="${libraries-antfile}" target="init"
inheritAll="false"/>
<ant antfile="build.xml" dir="${install-antfile}" target="init"
inheritAll="false"/>
</target>
<target name="dist" description="compile (run dist on) all subscripts">
<ant antfile="build.xml" dir="${libraries-antfile}" target="dist"
inheritAll="false"/>
<ant antfile="build.xml" dir="${install-antfile}" target="dist"
inheritAll="false"/>
</target>
<target name="clean" description="clean all subscripts">
<ant antfile="build.xml" dir="${libraries-antfile}" target="clean"
inheritAll="false"/>
<ant antfile="build.xml" dir="${install-antfile}" target="clean"
inheritAll="false"/>
</target>
</project>