summaryrefslogtreecommitdiffstats
path: root/contrib/t2hproxy/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/t2hproxy/build.xml')
-rw-r--r--contrib/t2hproxy/build.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/t2hproxy/build.xml b/contrib/t2hproxy/build.xml
new file mode 100644
index 00000000..5494ab96
--- /dev/null
+++ b/contrib/t2hproxy/build.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0"?>
+<!--
+ Build file for T2hproxy
+-->
+<project name="T2hproxy" default="jar" basedir=".">
+ <target name="compile">
+ <javac fork="true" srcdir="." destdir="." />
+ </target>
+
+ <target name="jar" depends="compile">
+ <jar jarfile="T2hproxy.jar" basedir="."
+ includes="T2hproxy.class">
+ <manifest>
+ <attribute name="Main-Class" value="T2hproxy" />
+ </manifest>
+ </jar>
+ </target>
+</project>
+