mirror of
https://github.com/ipxe/ipxe
synced 2025-12-15 17:12:54 +03:00
Initial revision
This commit is contained in:
19
contrib/t2hproxy/build.xml
Normal file
19
contrib/t2hproxy/build.xml
Normal file
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user