Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Ant file
  • Loading branch information
zetaben committed Jun 27, 2011
1 parent a3ce09c commit 31c2bfc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions build.xml
@@ -0,0 +1,16 @@
<project name="OPDSValidator" default="all">
<target name="build" >
<mkdir dir="classes"/>
<javac includeantruntime="false" classpath="classes:/usr/share/jing/lib/jing.jar:/usr/share/relaxng-datatype/lib/relaxngDatatype.jar" srcdir="src" destdir="classes">
</javac>
</target>

<target name="clean">
<delete>
<fileset dir="classes" includes="*.class" />
</delete>

</target>
<target name="all" depends="build"/>

</project>

0 comments on commit 31c2bfc

Please sign in to comment.