<?xml version="1.0"?>
<!--
 === 2006 Utah High School Programming Contest, University of Utah
 === Take-Home Problem
 ===
 === build.xml
 ===
 === If you have the `Ant' build tool for Java, you can use this file to
 === compile the skeleton program.  You may need to change some of the
 === definitions below to fit your environment.
 ===
 === In a terminal window, type "ant" to compile the skeleton program.  To
 === delete the compiled versions of the program files, type "ant clean".
 -->

<project name="sudoku" default="all">

    <!-- The pattern describing all the Java source files. -->
    <patternset id="java.files.pattern" includes="**/*.java"/>

    <!--====================================================================-->

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

    <target name="sudoku">
        <javac srcdir="." destdir=".">
            <patternset refid="java.files.pattern"/>
        </javac>
    </target>

    <!--====================================================================-->

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

</project>

