Merge pull request #2 from danielt3/master
[BennuGD.git] / build-all.sh
blob0e797d27391e8369b8ed4ae3f6428820ebbadc30
1 #!/bin/sh
3 rm -Rf bin/*
5 #./build-android.sh
6 #if [ $? -ne 0 ]; then
7 # echo "*** ABORT ***"
8 # exit 1
9 #fi
11 ./build-caanoo.sh release
12 if [ $? -ne 0 ]; then
13 echo "*** ABORT ***"
14 exit 1
17 ./build-dingux-a320.sh release
18 if [ $? -ne 0 ]; then
19 echo "*** ABORT ***"
20 exit 1
23 ./build-openwiz.sh release
24 if [ $? -ne 0 ]; then
25 echo "*** ABORT ***"
26 exit 1
29 #./build-pandora.sh
30 #if [ $? -ne 0 ]; then
31 # echo "*** ABORT ***"
32 # exit 1
33 #fi
35 #./build-static.sh
36 #if [ $? -ne 0 ]; then
37 # echo "*** ABORT ***"
38 # exit 1
39 #fi
41 #./build-win32-cross-opensuse.sh release
42 #if [ $? -ne 0 ]; then
43 # echo "*** ABORT ***"
44 # exit 1
45 #fi
47 ./build-win32-cross.sh release
48 if [ $? -ne 0 ]; then
49 echo "*** ABORT ***"
50 exit 1
53 #./build-win32.sh
54 #if [ $? -ne 0 ]; then
55 # echo "*** ABORT ***"
56 # exit 1
57 #fi
59 ./build-linux.sh release
60 if [ $? -ne 0 ]; then
61 echo "*** ABORT ***"
62 exit 1
65 cd installer
66 ./make-installers.sh
67 cd -