diff --git a/build.xml b/build.xml new file mode 100644 index 0000000000000000000000000000000000000000..1234e58bd8fde339abb5c544bc21e914356be621 --- /dev/null +++ b/build.xml @@ -0,0 +1,26 @@ +<project name="ipaaca" default="build" basedir="."> + <target name="build"> + <subant target="build" genericantfile="build.xml"> + <fileset dir="." includes="*/build.xml"/> + </subant> + </target> + + <target name="clean"> + <subant target="clean" genericantfile="build.xml"> + <fileset dir="." includes="*/build.xml"/> + </subant> + </target> + + <target name="compile"> + <subant target="compile" genericantfile="build.xml"> + <fileset dir="." includes="*/build.xml"/> + </subant> + </target> + + <target name="minorrelease"> + <subant target="compile" genericantfile="build.xml"> + <fileset dir="." includes="*/build.xml"/> + </subant> + </target> + +</project>