blob: 7ec33a58b0cdf0672879b5c2fc67fe26682f6410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
SDIR=`dirname $0`
$SDIR/make.gluegen.all.android-aarch64-cross.sh && \
$SDIR/make.gluegen.all.android-armv6-cross.sh && \
$SDIR/make.gluegen.all.android-x86-cross.sh && \
$SDIR/make.gluegen.all.linux-aarch64-cross.sh && \
$SDIR/make.gluegen.all.linux-armv6hf-cross.sh && \
$SDIR/make.gluegen.all.linux-x86.sh && \
$SDIR/make.gluegen.all.linux-x86_64.sh
# $SDIR/make.gluegen.all.macosx.sh
# $SDIR/make.gluegen.all.ios.amd64.sh
# $SDIR/make.gluegen.all.ios.arm64.sh
# $SDIR/make.gluegen.all.win32.bat
# $SDIR/make.gluegen.all.win64.bat
# $SDIR/make.gluegen.all.linux-ppc64le.sh
# $SDIR/make.gluegen.all.linux-armv6hf.sh
# $SDIR/make.gluegen.all.linux-aarch64.sh
|