blob: 2dbff37b1dd80888272e988116d77c67ccb056ea [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
Mete Polat171957c2016-02-26 16:42:51 +01008if [ -z "$ANDROID_HOST_OUT" ]; then
9 echo "Couldn't find host out directory. Make sure ANDROID_HOST_OUT is in your environment."
10 exit 127
11fi
12
Khalid Zubair23936f42015-12-08 17:47:41 -080013idegenjar=`find $ANDROID_HOST_OUT -name idegen.jar -follow | grep -v intermediates`
Mete Polat171957c2016-02-26 16:42:51 +010014if [ -z "$idegenjar" ]; then
15 echo "Couldn't find idegen.jar. Please run 'make idegen' first."
16else
The Android Open Source Project52d4c302009-03-03 19:29:09 -080017 java -cp $idegenjar Main
18fi