1 #!/bin/bash 2 3 if [ ! -f buildspec.mk.default ]; then 4 echo "Error: Please run from the root of the tree." 5 exit 1 6 fi 7 8 . envsetup.sh 9 lunch 6 10 11 if make -j4; then 12 tools/javabuild/intelligen.sh 13 fi 14