blob: 8508343756456083635c595f91c80fa7935fe065 [file] [log] [blame]
The Android Open Source Project55a2c712009-03-03 19:29:09 -08001#!/bin/bash
2
3echo "### $0 executing"
4
5function die() {
6 echo "Error: $*"
7 exit 1
8}
9
10# CD to the top android directory
11D=`dirname "$0"`
12cd "$D/../../../../"
13
14DEST="development/tools/eclipse/scripts"
15
16set -e # fail early
17
18echo ; echo "### ADT ###" ; echo
19$DEST/create_adt_symlinks.sh "$*"
20echo ; echo "### DDMS ###" ; echo
21$DEST/create_ddms_symlinks.sh "$*"
22echo ; echo "### TEST ###" ; echo
23$DEST/create_test_symlinks.sh "$*"
24echo ; echo "### BRIDGE ###" ; echo
25$DEST/create_bridge_symlinks.sh "$*"
26
27echo "### $0 done"