From db246c602edae5523109f0610dbec6db14bbd76e Mon Sep 17 00:00:00 2001
From: Herwin van Welbergen <hvanwelbergen@TechFak.Uni-Bielefeld.DE>
Date: Thu, 15 Dec 2011 14:51:16 +0100
Subject: [PATCH] root build file

---
 build.xml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 build.xml

diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000..1234e58
--- /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>
-- 
GitLab