summaryrefslogtreecommitdiffstats
path: root/contrib/t2hproxy/build.xml
blob: 5494ab96e24c3b155520758a304087e71a26095e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>