<?xml version="1.0"?>

<!-- This is an attempt at creating an ant build file for the project, work in progress -->

<project name="lilian" default="compile" basedir=".">


	<property name="src"    value="."/>
	<property name="build"  value="bin"/>
	<property name="lib"    value="lib"/>
	
	<property name="clargs" value=""/>
	<property name="maxmem" value="512m"/>
	
    <path id="classpath">
        <fileset dir="${lib}" includes="**/*.jar"/>
    </path>
  
	<target name="compile" description="Compile the source">
		<mkdir dir="${build}"/>
		
		<!-- Compile the code -->
		<javac 
			srcdir="${src}" 
			destdir="${build}"
			classpathref="classpath"
		>
		</javac>
	</target>

</project>