summaryrefslogtreecommitdiff
blob: 3c056688129dae417569a763120ba34079da2be0 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0"?>

<project name="bfm" default="jar">
	<!-- some properties -->
	<property name="src.dir" value="net" />
	<property name="build.dir" value="build" />
	<property name="docs.dir" value="docs" />
	<property name="dist.dir" value="dist" />
	<property name="lib.dir" value="lib" />
	<property name="jarfile" value="${dist.dir}/${ant.project.name}.jar" />
	<property name="target.jdk" value="1.4" />

	<!-- init -->
	<target name="init">
		<mkdir dir="${dist.dir}" />
		<mkdir dir="${build.dir}" />
		<mkdir dir="${docs.dir}" />
	</target>	

	<!-- classpath -->
	<path id="refcp">
                <fileset dir="${lib.dir}">
                        <include name="**/*.jar" />
                </fileset>
        </path>
	
	<!-- compile everything -->
	<target name="compile" depends="init">
		<mkdir dir="${build.dir}" />
		<javac srcdir="${src.dir}" 
			destdir="${build.dir}"
			source="${target.jdk}"
			target="${target.jdk}"
			classpathref="refcp" />

		<copy todir="${build.dir}">
			<fileset file="${src.dir}/webhop/bfm/data" />
		</copy>
		<copy todir="${build.dir}/net/webhop/bfm/data">
			<fileset dir="${src.dir}/webhop/bfm/data" />
		</copy>
	</target>

	<!-- build the jar file -->
	<target name="jar" depends="compile">
		<jar jarfile="${jarfile}" basedir="${build.dir}"
			manifest="${src.dir}/webhop/bfm/data/manifest" />
	</target>
	
	<!-- generate javadocs -->
	<target name="docs" depends="init">
		<javadoc sourcepath="."
			packagenames="*"
       		destdir="${docs.dir}"
       		author="true"
       		version="true"
       		use="true"
       		windowtitle="${ant.project.name} API" />
	</target>
	
	<!-- clean up -->
	<target name="clean">
		<delete dir="${build.dir}" />
		<delete dir="${docs.dir}" />
		<delete dir="${dist.dir}" />
	</target>

        <!-- zip the sources -->
        <target name="sourcezip">
		<zip destfile="${dist.dir}/${ant.project.name}-src.zip">
                        <zipfileset dir="${src.dir}" />
                </zip>
        </target>

</project>