aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 22068b7..86670b3 100644
--- a/build.xml
+++ b/build.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="iso-8859-1"?>
<!--
* Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved.
@@ -45,8 +45,11 @@
<mkdir dir="lib"/>
</target>
- <target name="compile" depends="init">
+ <target name="native-compile" depends="init">
<ant dir="src/native" target="compile"/>
+ </target>
+
+ <target name="compile" depends="native-compile">
<ant dir="src/java" target="compile"/>
<ant dir="unit_tests" target="compile"/>
</target>