
(this is what caused the runtime errors on sun jvms but not on kaffe) ((aka i slacked and didn't test sufficiently. off with my head)) this now builds and runs fine in sun 1.3-1.5 jvms, as well as kaffe
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project basedir="." default="all" name="i2p_sdk">
|
|
<target name="all" depends="clean, build" />
|
|
<target name="build" depends="builddep, jar" />
|
|
<target name="builddep">
|
|
<!-- noop, since the core doesnt depend on anything -->
|
|
</target>
|
|
<target name="compile">
|
|
<mkdir dir="./build" />
|
|
<mkdir dir="./build/obj" />
|
|
<javac srcdir="./src:./test" debug="true" source="1.3" target="1.3" deprecation="on" destdir="./build/obj" />
|
|
</target>
|
|
<target name="jar" depends="compile">
|
|
<jar destfile="./build/i2p.jar" basedir="./build/obj" includes="**/*.class" />
|
|
</target>
|
|
<target name="javadoc">
|
|
<mkdir dir="./build" />
|
|
<mkdir dir="./build/javadoc" />
|
|
<javadoc sourcepath="./src:./test" destdir="./build/javadoc" packagenames="*" use="true" splitindex="true" windowtitle="I2P SDK" />
|
|
</target>
|
|
<target name="clean">
|
|
<delete dir="./build" />
|
|
</target>
|
|
<target name="cleandep" depends="clean">
|
|
<!-- noop, since the core doesn't depend on anything -->
|
|
</target>
|
|
<target name="distclean" depends="clean">
|
|
<!-- noop, since the core doesn't depend on anything -->
|
|
</target>
|
|
</project>
|