diff options
author | athomas <[email protected]> | 2003-07-08 21:14:25 +0000 |
---|---|---|
committer | athomas <[email protected]> | 2003-07-08 21:14:25 +0000 |
commit | ce70965ea04ae7d8bebd6aa44d872219670235c5 (patch) | |
tree | 1e20eea235ccdbe4ef3529dc922e1471a5d5d167 /build.xml | |
parent | 4805d819e5b99ed2dd5ca4c7be757900c4d6b429 (diff) |
added support for compiling under Linux
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@46 03bf7f67-59de-4072-a415-9a990d468a3f
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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> |