blob: 53addd62922cd483d74148500976389875d6e3b1 [file] [log] [blame]
gwt.team.bruce170f46f2006-12-07 22:42:03 +00001<project name="doctool" default="build" basedir=".">
2 <property name="gwt.root" location="../.." />
3 <property name="project.tail" value="build-tools/doctool" />
4 <import file="${gwt.root}/common.ant.xml" />
5
gwt.team.bruce672efb52006-12-08 15:38:58 +00006 <target name="compile" description="Compiles this project">
gwt.team.bruce170f46f2006-12-07 22:42:03 +00007 <mkdir dir="${javac.out}" />
8 <gwt.javac>
9 <classpath>
10 <pathelement location="${gwt.tools.lib}/jdk/tools-1.4.2_09.jar" />
11 </classpath>
12 </gwt.javac>
13 </target>
14
gwt.team.bruce672efb52006-12-08 15:38:58 +000015 <target name="build" depends="compile" description="Packages this project into a jar">
gwt.team.bruce170f46f2006-12-07 22:42:03 +000016 <mkdir dir="${gwt.build.lib}" />
17 <gwt.jar>
18 <fileset dir="src" />
19 <fileset dir="${javac.out}" />
20 </gwt.jar>
21 </target>
22
23 <target name="checkstyle" description="Static analysis of source">
gwt.team.bruce672efb52006-12-08 15:38:58 +000024 <gwt.checkstyle>
25 <fileset dir="src" />
26 </gwt.checkstyle>
gwt.team.bruce170f46f2006-12-07 22:42:03 +000027 </target>
28
29 <target name="clean" description="Cleans this project's intermediate and output files">
30 <delete dir="${project.build}" />
31 <delete file="${project.lib}" />
32 </target>
33
34</project>