Statistiques
| Révision :

root / TXM / trunk / org.txm.setups / BuildAll.sh @ 3628

Historique | Voir | Annoter | Télécharger (405 octet)

1
#echo "get scripts"
2
DIRNAME=`dirname $0`
3

    
4
echo "LINUX !!"
5
sh $DIRNAME/BuildLinux64bit.sh
6
if [ $? != 0 ]; then
7
	echo "** Failed to get build Linux64"
8
fi
9

    
10
echo "MacOSX :("
11
sh $DIRNAME/BuildMacOSXIntel.sh
12
if [ $? != 0 ]; then
13
	echo "** Failed to get build Mac OS X"
14
fi
15

    
16
echo "WINDOWS !!"
17
sh $DIRNAME/BuildWin64bit.sh
18
if [ $? != 0 ]; then
19
	echo "** Failed to get build Win64"
20
fi
21

    
22
#play end.wav
23
echo "DONE !!"