aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--trunk/GameController/build.xml38
1 files changed, 0 insertions, 38 deletions
diff --git a/trunk/GameController/build.xml b/trunk/GameController/build.xml
deleted file mode 100644
index 31b3d59..0000000
--- a/trunk/GameController/build.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<project name="GameController" default="dist" basedir=".">
- <description>
- Controls a Botleagues game
- </description>
- <!-- set global properties for this build -->
- <property name="src" location="src"/>
- <property name="build" location="bin"/>
- <property name="dist" location="dist"/>
-
- <target name="init">
- <!-- Create the time stamp -->
- <tstamp/>
- <!-- Create the build directory structure used by compile -->
- <mkdir dir="${build}"/>
- </target>
-
- <target name="compile" depends="init"
- description="compile the source " >
- <!-- Compile the java code from ${src} into ${build} -->
- <javac srcdir="${src}" destdir="${build}"/>
- </target>
-
- <target name="dist" depends="compile"
- description="generate the distribution" >
- <!-- Create the distribution directory -->
- <mkdir dir="${dist}/lib"/>
-
- <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
- <jar jarfile="${dist}/lib/MyProject-${DSTAMP}.jar" basedir="${build}"/>
- </target>
-
- <target name="clean"
- description="clean up" >
- <!-- Delete the ${build} and ${dist} directory trees -->
- <delete dir="${build}"/>
- <delete dir="${dist}"/>
- </target>
-</project>