diff options
author | Sven Gothel <[email protected]> | 2014-05-09 09:45:58 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-05-09 09:45:58 +0200 |
commit | 38277fff31277fe67024db9c2e363d9244863d17 (patch) | |
tree | ab629ddf94a20064788f6ec7330b69a08a3893cb /make | |
parent | 0b87042014721a7177998c1e9809e088f01d59a4 (diff) |
Add generic manual build script to test against distribution's default openjdk + ant
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/make.joal.all.generic.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/make/scripts/make.joal.all.generic.sh b/make/scripts/make.joal.all.generic.sh new file mode 100755 index 0000000..5e463fd --- /dev/null +++ b/make/scripts/make.joal.all.generic.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export SOURCE_LEVEL=1.6 +export TARGET_LEVEL=1.6 +export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar + +#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" +export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" + +#BUILD_ARCHIVE=true \ +ant \ + $* 2>&1 | tee make.joal.all.generic.log |