-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
26 lines (21 loc) · 707 Bytes
/
build.xml
File metadata and controls
26 lines (21 loc) · 707 Bytes
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
<project default="compile">
<path id="classpath">
<pathelement location="lib/xstream-1.1.3.jar"/>
<pathelement location="lib/comm.jar"/>
</path>
<target name="compile" depends="clean">
<javac srcdir="com" classpathref="classpath" debug="on" debuglevel="lines,vars,source">
<!--> <compilerarg value="-Xlint:unchecked"/> <!-->
</javac>
<jar destfile="DDFv2.0.jar" basedir="." includes="com/** lib/**" manifest="manifest.mf"/>
<antcall target="clean"/>
</target>
<target name="clean">
<delete>
<fileset dir="com" includes="**/*.class"/>
</delete>
</target>
<target name="doc">
<javadoc sourcepath="." destdir="doc/javadoc" classpathref="classpath"/>
</target>
</project>