david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/contrib/t2hproxy/build.xml

20 lines
438 B
XML

<?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>