<?xml version="1.0"?>
<project default="build">
<description>Build file for MinorThird</description>
<property name="src" location="src"/> <property name="testDir" location="test"/> <property name="javadoc" location="javadoc"/> <property name="classDir" location="class"/> <property name="jarsDir" location="lib"/> <property name="reportsDir" location="testReports"/> <property name="testRootDir" location="testRoot"/>
<path id="classpath">
<fileset dir="${jarsDir}">
<include name="**/*.jar"/>
</fileset>
<pathelement path="${classDir}"/>
</path><target name="init">
<tstamp/>
<mkdir dir="${classDir}"/>
</target><target name="clean" description="clean up">
<delete dir="${classDir}"/>
<delete dir="${reportsDir}"/>
<delete dir="${testRootDir}"/>
</target><target name="build" depends="init"
description="build the source ">
<!-- Compile the java code from ${src} into ${classDir} -->
<javac srcdir="${src}" destdir="${classDir}" debug="on" classpathref="classpath" deprecation="on"/>
</target>
<target name="build-test" depends="init, build">
<javac srcdir="${testDir}" destdir="${classDir}" debug="on" classpathref="classpath" deprecation="on"/>
</target>
</project>
Thanks, Kevin
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
