2009-12-06 10:00:37 +08:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# External makefile Xcode project project uses this script to build and clean from the Xcode GUI
|
|
|
|
#
|
|
|
|
|
|
|
|
# force exit on error
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#
|
2010-12-01 07:38:40 +08:00
|
|
|
# Source the workspace and set up the environment variables we need
|
2009-12-06 10:00:37 +08:00
|
|
|
#
|
|
|
|
cd ../..
|
2010-09-17 02:39:06 +08:00
|
|
|
./build.sh $1 $2 $3 $4 $5 $6 $8
|