root / tmp / org.txm.setups / BuildAll.sh @ 1627
History | View | Annotate | Download (437 Bytes)
1 |
#echo "get scripts" |
---|---|
2 |
sh getSharedFiles.sh |
3 |
if [ $? != 0 ]; then |
4 |
echo "** Failed to get shared files" |
5 |
exit 1; |
6 |
fi |
7 |
|
8 |
echo "Linux64" |
9 |
sh Linux64bit.sh |
10 |
if [ $? != 0 ]; then |
11 |
echo "** Failed to get build Linux64" |
12 |
exit 1; |
13 |
fi |
14 |
|
15 |
echo "MacOSX" |
16 |
sh MacOSXIntel.sh |
17 |
if [ $? != 0 ]; then |
18 |
echo "** Failed to get build Mac OS X" |
19 |
exit 1; |
20 |
fi |
21 |
|
22 |
echo "Win64" |
23 |
sh Win64bit.sh |
24 |
if [ $? != 0 ]; then |
25 |
echo "** Failed to get build Win64" |
26 |
exit 1; |
27 |
fi |
28 |
|
29 |
#play end.wav |