You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
misp/misphelper/build.xml

30 lines
631 B

<?xml version="1.0" ?>
<project name="misphelper" basedir="." default="dist">
<!-- DEFINE SOME VARS -->
<property name="appname" value="misphelper" />
<!-- INIT -->
<target name="init">
<mkdir dir="build/classes"/>
</target>
<!-- COMPILE -->
<target name="compile" depends="init" >
<javac destdir="build/classes" debug="true" srcdir="src"/>
</target>
<!-- DIST -->
<target name="dist" depends="compile">
<jar destfile="${appname}A.jar" basedir="build/classes"/>
</target>
<target name="clean">
<delete dir="build" />
</target>
</project>