source: divers/xcode.sh

Last change on this file was 233, checked in by garnier, 18 years ago

ajout de fichiers

  • Property svn:executable set to *
File size: 496 bytes
Line 
1#!bin/sh
2source ${CMTROOT}/mgr/setup.sh;
3if [ -f xcode_tmpFile.tmp ]; then
4  rm xcode_tmpFile.tmp;
5fi
6
7echo "";
8echo "cmt config............";
9cmt config > xcode_tmpFile.tmp;
10more xcode_tmpFile.tmp;
11nb_warn=`grep "Warning:" xcode_tmpFile.tmp | wc -l`;
12
13if [ -f xcode_tmpFile.tmp ]; then
14  rm xcode_tmpFile.tmp;
15fi
16
17if [ $nb_warn -ne 0 ]; then
18  echo "cmt config failed..";
19else
20  echo "";
21  echo "setup.sh............";
22  source setup.sh;
23  echo "";
24  echo "cmt make............";
25  cmt make;
26fi
Note: See TracBrowser for help on using the repository browser.