forked from jgillham/Lab-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
39 lines (33 loc) · 1.01 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<project name="Laborinth">
<property name="src" location="src"/>
<property name="res" location="res"/>
<property name="test" location="test"/>
<property name="doc.bluej.dir" location="src/doc"/>
<property name="target.dir" location="build"/>
<property name="target.out.dir" location="${target.dir}/classes"/>
<target name="clean">
<delete dir="${target.dir}"/>
<delete dir="${doc.bluej.dir}"/>
<delete>
<fileset dir="${src}" includes="**/*.zip"/>
<fileset dir="${src}" includes="**/*.class"/>
<fileset dir="${src}" includes="**/*.ctxt"/>
</delete>
</target>
<target name="dirs">
<mkdir dir="${src}"/>
<mkdir dir="${res}"/>
<mkdir dir="${test}"/>
</target>
<target name="build" depends="dirs">
<mkdir dir="${target.out.dir}"/>
<javac srcdir="${src}" destdir="${target.out.dir}">
</javac>
</target>
<target name="run" depends="build">
</target>
<target name="doc" >
</target>
<target name="test" depends="build">
</target>
</project>