blob: 11752d4b00696dbe7a70bb778fb6cf076c427176 [file] [log] [blame]
The Android Open Source Project55a2c712009-03-03 19:29:09 -08001#!/bin/bash
2
The Android Open Source Project55a2c712009-03-03 19:29:09 -08003echo "### $0 executing"
4
5function die() {
6 echo "Error: $*"
7 exit 1
8}
9
10# CD to the top android directory
11D=`dirname "$0"`
Raphaelf1d64e22009-11-18 11:27:35 -080012cd "$D/../../../"
The Android Open Source Project55a2c712009-03-03 19:29:09 -080013
Raphaelf1d64e22009-11-18 11:27:35 -080014DEST="sdk/eclipse/scripts"
The Android Open Source Project55a2c712009-03-03 19:29:09 -080015
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 "$*"
Konstantin Lopyrev0f317512010-07-15 18:26:51 -070026echo ; echo "### HIERARCHYVIEWER ###" ; echo
27$DEST/create_hierarchyviewer_symlinks.sh "$*"
Pierre Zurek81f09882010-12-20 02:31:37 +010028echo ; echo "### TRACEVIEW ###" ; echo
29$DEST/create_traceview_symlinks.sh "$*"
Raphael Moll966081a2011-04-13 23:55:32 -070030echo ; echo "### SDKMANAGER ###" ; echo
31$DEST/create_sdkman_symlinks.sh "$*"
Siva Velusamye7810122011-09-06 09:41:06 -070032echo ; echo "### GL DEBUGGER ###" ; echo
33$DEST/create_gldebugger_symlinks.sh "$*"
The Android Open Source Project55a2c712009-03-03 19:29:09 -080034
35echo "### $0 done"