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