forked from nogy/jsoundmodem
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.xml
31 lines (26 loc) · 815 Bytes
/
build.xml
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
<?xml version="1.0"?>
<project name="jsoundmodem" basedir="." default="compile-library" >
<description>
Build file for AVRS' APRS parser library
</description>
<path id="project.classpath">
<pathelement location="/usr/share/java/ant.jar" />
</path>
<target name="compile-library" >
<mkdir dir="bin" />
<mkdir dir="bin/classes" />
<javac destdir="bin/classes"
deprecation="false"
optimize="true"
classpath="/usr/src/G1/android-sdk/platforms/android-3/android.jar"
debug="true" >
<src path="src/" />
<include name="com/nogy/afu/soundmodem/A*.java" />
<include name="com/nogy/afu/soundmodem/M*.java" />
</javac>
<jar jarfile="bin/jsoundmodem.jar" basedir="bin/classes" />
</target>
<target name="clean">
<delete dir="bin" failonerror="false" />
</target>
</project>