summaryrefslogtreecommitdiff
blob: aeee07f2998501ddeb138ebd58bd3b642093f9b2 (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
76
77
78
79
80
81
82
83
<?xml version="1.0"?>

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

	<!-- classpath -->
	<path id="refcp">
		<fileset dir="${lib.dir}">
			<include name="**/*.jar" />
		</fileset>
	</path>
	
	<!-- init -->
	<target name="init">
		<mkdir dir="${dist.dir}" />
		<mkdir dir="${build.dir}" />
		<mkdir dir="${docs.dir}" />
	</target>	

	<!-- 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 dir="${resources.dir}" />
			<fileset file="${htmls.dir}" />
		</copy>

		<copy todir="${build.dir}/${htmls.dir}">
			<fileset dir="${htmls.dir}" />
		</copy>
	</target>

	<!-- build the jar file -->
	<target name="jar" depends="compile">
		<jar jarfile="${jarfile}" basedir="${build.dir}">
			<manifest>
				<attribute name="Main-Class" value="net.sourceforge.dvb.projectx.common.X" />
			</manifest>
		</jar>
	</target>
	
	<!-- generate javadocs -->
	<target name="docs" depends="init">
		<javadoc sourcepath="${src.dir}"
			packagenames="net.*, edu.*"
           		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}" />
		<delete dir="${lib.dir}" />
	</target>

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

</project>