diff options
author | Sven Gothel <[email protected]> | 2020-01-02 00:51:37 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-01-02 00:51:37 +0100 |
commit | ef2600134f07902dd32cf6524d9c947bdc915b45 (patch) | |
tree | 86c656c078030f1bd3948cddc9c0b7142f6a7ac3 /make/scripts/make.jogl.all-host-linux.sh | |
parent | 4d070e6be4f6f5b2eeb4f29e5d3fe7d0fdc4c7ad (diff) |
all build scripts: make.jogl.all-host-macos.sh make.jogl.all-host-linux.sh
Diffstat (limited to 'make/scripts/make.jogl.all-host-linux.sh')
-rwxr-xr-x | make/scripts/make.jogl.all-host-linux.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/make/scripts/make.jogl.all-host-linux.sh b/make/scripts/make.jogl.all-host-linux.sh new file mode 100755 index 000000000..323d5ad52 --- /dev/null +++ b/make/scripts/make.jogl.all-host-linux.sh @@ -0,0 +1,20 @@ +#! /bin/sh + +SDIR=`dirname $0` + +$SDIR/make.jogl.all.android-aarch64-cross.sh && \ +$SDIR/make.jogl.all.android-armv6-cross.sh && \ +$SDIR/make.jogl.all.android-x86-cross.sh && \ +$SDIR/make.jogl.all.linux-aarch64-cross.sh && \ +$SDIR/make.jogl.all.linux-armv6hf-cross.sh && \ +$SDIR/make.jogl.all.linux-x86.sh && \ +$SDIR/make.jogl.all.linux-x86_64.sh + +# $SDIR/make.jogl.all.macosx.sh +# $SDIR/make.jogl.all.ios.amd64.sh +# $SDIR/make.jogl.all.ios.arm64.sh +# $SDIR/make.jogl.all.win32.bat +# $SDIR/make.jogl.all.win64.bat +# $SDIR/make.jogl.all.linux-armv6hf.sh +# $SDIR/make.jogl.all.linux-aarch64.sh + |