From ea1947ffcc606d757357398b24e74a3f4ecefa07 Mon Sep 17 00:00:00 2001 From: neonloop Date: Wed, 20 Oct 2021 14:54:27 +0000 Subject: Initial commit from steward-fu release --- build-all.sh | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 build-all.sh (limited to 'build-all.sh') diff --git a/build-all.sh b/build-all.sh new file mode 100644 index 0000000..0176981 --- /dev/null +++ b/build-all.sh @@ -0,0 +1,67 @@ +#!/bin/sh + +rm -Rf bin/* + +#./build-android.sh +#if [ $? -ne 0 ]; then +# echo "*** ABORT ***" +# exit 1 +#fi + +./build-caanoo.sh release +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi + +./build-dingux-a320.sh release +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi + +./build-openwiz.sh release +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi + +#./build-pandora.sh +#if [ $? -ne 0 ]; then +# echo "*** ABORT ***" +# exit 1 +#fi + +#./build-static.sh +#if [ $? -ne 0 ]; then +# echo "*** ABORT ***" +# exit 1 +#fi + +./build-win32-cross-opensuse.sh release +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi + +#./build-win32-cross.sh +#if [ $? -ne 0 ]; then +# echo "*** ABORT ***" +# exit 1 +#fi + +#./build-win32.sh +#if [ $? -ne 0 ]; then +# echo "*** ABORT ***" +# exit 1 +#fi + +./build-linux.sh release +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi + +cd installer +./make-installers.sh +cd - -- cgit v1.2.3