aboutsummaryrefslogtreecommitdiffstats
path: root/tools/domctl/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tools/domctl/build.xml')
-rw-r--r--tools/domctl/build.xml45
1 files changed, 45 insertions, 0 deletions
diff --git a/tools/domctl/build.xml b/tools/domctl/build.xml
new file mode 100644
index 0000000000..88d5ffb5b5
--- /dev/null
+++ b/tools/domctl/build.xml
@@ -0,0 +1,45 @@
+<project name="domctl project" default="compile">
+ <property name="src" location="src"/>
+ <property name="build" location="build"/>
+ <property name="dist" location="dist"/>
+ <property name="lib" location="lib"/>
+
+ <target name="init">
+ <tstamp/>
+ <mkdir dir="${build}"/>
+ </target>
+
+ <target name="compile" depends="init">
+ <javac srcdir="${src}" destdir="${build}" debug="on"/>
+ </target>
+
+ <target name="dist" depends="compile">
+ <jar jarfile="domctl.jar"
+ excludes="*~"
+ basedir="${build}">
+ <fileset dir="${src}" />
+ <fileset dir=".">
+ <include name="build.xml"/>
+ <include name="domctl"/>
+ </fileset>
+ <manifest>
+ <attribute name="Built-By" value="${user.name}"/>
+ <attribute name="Main-Class" value="uk.ac.cam.cl.xeno.domctl.Main"/>
+ <attribute name="Sealed" value="true"/>
+ </manifest>
+ </jar>
+ </target>
+
+ <target name="test" depends="compile">
+ <java fork="true" classname="uk.ac.cam.cl.xeno.domctl.Main">
+ <classpath>
+ <pathelement path="${build}"/>
+ </classpath>
+ </java>
+ </target>
+
+ <target name="clean">
+ <delete dir="${build}"/>
+ <delete dir="${lib}"/>
+ </target>
+</project> \ No newline at end of file