blob: d7e6986d89070d9083bc6593e3cb72edc14742ba [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001#!/bin/bash
2
3if [ ! -d development ]; then
4 echo "Error: Run from the root of the tree."
5 exit 1
6fi
7
8idegenjar=`find out -name idegen.jar -follow | grep -v intermediates`
9if [ "" = "$idegenjar" ]; then
10 echo "Couldn't find idegen.jar. Please run make first."
11else
12 java -cp $idegenjar Main
13fi