1 <?xml version="1.0" encoding="UTF-8"?>
4 <!ENTITY common SYSTEM "../common.xml">
7 <project basedir="." default="build" name="Asunder" xmlns:ivy="antlib:org.apache.ivy.ant">
11 <path id="Asunder.classpath">
12 <pathelement location="bin"/>
13 <fileset dir="${lib.dir}">
14 <include name="**/*.jar"/>
18 <target name="init" depends="resolve">
20 <copy includeemptydirs="false" todir="bin">
21 <fileset dir="src" excludes="**/*.java"/>
25 <target name="build-subprojects"/>
27 <target depends="init" name="build-project">
28 <echo message="${ant.project.name}: ${ant.file}"/>
29 <javac debug="true" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}">
31 <classpath refid="Asunder.classpath"/>