diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/make.gluegen.all.linux-x86.sh | 14 | ||||
-rw-r--r-- | make/make.gluegen.all.linux-x86_64.sh | 14 | ||||
-rw-r--r-- | make/make.gluegen.cdcfp.linux-x86.sh | 15 | ||||
-rw-r--r-- | make/make.gluegen.cdcfp.macosx.sh | 12 |
4 files changed, 55 insertions, 0 deletions
diff --git a/make/make.gluegen.all.linux-x86.sh b/make/make.gluegen.all.linux-x86.sh new file mode 100644 index 0000000..58c4215 --- /dev/null +++ b/make/make.gluegen.all.linux-x86.sh @@ -0,0 +1,14 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86.sh + +# -Dc.compiler.debug=true + +ant -v \ + -Drootrel.build=build-x86 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisLinux=true \ + -DisLinuxX86=true \ + -DisX11=true \ + $* 2>&1 | tee make.gluegen.all.linux-x86.log diff --git a/make/make.gluegen.all.linux-x86_64.sh b/make/make.gluegen.all.linux-x86_64.sh new file mode 100644 index 0000000..a787c57 --- /dev/null +++ b/make/make.gluegen.all.linux-x86_64.sh @@ -0,0 +1,14 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86_64.sh + +# -Dc.compiler.debug=true + +ant -v \ + -Drootrel.build=build-x86_64 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisLinux=true \ + -DisLinuxAMD64=true \ + -DisX11=true \ + $* 2>&1 | tee make.gluegen.all.linux-x86_64.log diff --git a/make/make.gluegen.cdcfp.linux-x86.sh b/make/make.gluegen.cdcfp.linux-x86.sh new file mode 100644 index 0000000..cc02d0f --- /dev/null +++ b/make/make.gluegen.cdcfp.linux-x86.sh @@ -0,0 +1,15 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86.sh + +# -Dc.compiler.debug=true + +ant -v \ + -DisCDCFP=true \ + -Drootrel.build=build-cdcfp-x86 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisLinux=true \ + -DisLinuxX86=true \ + -DisX11=true \ + $* 2>&1 | tee make.gluegen.cdcfp.linux-x86.log diff --git a/make/make.gluegen.cdcfp.macosx.sh b/make/make.gluegen.cdcfp.macosx.sh new file mode 100644 index 0000000..016cb8d --- /dev/null +++ b/make/make.gluegen.cdcfp.macosx.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +if [ -e /devtools/etc/profile.ant ] ; then + . /devtools/etc/profile.ant +fi + +# -Dc.compiler.debug=true + +ant -v \ + -DisCDCFP=true \ + -Drootrel.build=build-cdcfp-macosx \ + $* 2>&1 | tee make.gluegen.cdcfp.macosx-x86.log |