summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2008-06-23 02:28:48 +0200
committerHans Ulrich Niedermann <hun@n-dimensional.de>2008-07-15 12:28:52 +0200
commit2d05235f9d967c4efc3581d278cd367431c73353 (patch)
tree17803557026f807772180734731365ae1d70ae1e /build.xml
parent41a34022fc7ee1831d20d5e13c459c33fc001732 (diff)
downloadnbb-2d05235f9d967c4efc3581d278cd367431c73353.tar.gz
nbb-2d05235f9d967c4efc3581d278cd367431c73353.tar.xz
nbb-2d05235f9d967c4efc3581d278cd367431c73353.zip
Add eclipse/ant glue stuff
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000..3f42ae7
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+<project name="unzip" default="make">
+ <description>
+ Ant adaptor for the nbb Automake/Makefile based build system.
+ </description>
+
+ <target name="check" description="run nbb checks">
+ <exec executable="git-amb">
+ <arg value="make"/>
+ <arg value="check"/>
+ </exec>
+ </target>
+ <target name="make" description="build nbb">
+ <exec executable="git-amb">
+ <arg value="make"/>
+ </exec>
+ </target>
+ <target name="install" description="build and install nbb">
+ <exec executable="git-amb">
+ <arg value="make"/>
+ <arg value="install"/>
+ </exec>
+ </target>
+ <target name="distcheck" description="run nbb distcheck">
+ <exec executable="git-amb">
+ <arg value="make"/>
+ <arg value="distcheck"/>
+ </exec>
+ </target>
+</project>