blob: 00ee9b31cd5828b55efe2f10ce7bc152f4db8dae [file] [log] [blame]
Brian Muramatsuf176eaf2010-07-27 14:27:01 -07001#!/bin/bash
2
3# Outputs a classpath file containing classpaths from development/ide/eclipse
4# and additional classpaths from cts/development/ide/eclipse.
5#
6# From your $ANDROID_BUILD_TOP directory:
7# ./cts/development/ide/eclipse/genclasspath.sh > .classpath
8
9if [[ -z $ANDROID_BUILD_TOP ]]; then
10 echo "Run 'lunch' to set \$ANDROID_BUILD_TOP" >&2
11 exit 1
12fi
13
14echo '<?xml version="1.0" encoding="UTF-8"?>'
15echo '<classpath>'
16cat $ANDROID_BUILD_TOP/cts/development/ide/eclipse/.classpath | grep classpathentry
17cat $ANDROID_BUILD_TOP/development/ide/eclipse/.classpath | grep classpathentry
18echo '</classpath>'