2010-07-15 07:22:43 +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
|
2010-07-15 07:22:43 +08:00
|
|
|
#
|
|
|
|
cd ../..
|
|
|
|
echo `pwd`
|
2010-10-12 23:47:11 +08:00
|
|
|
./build64.sh $1 $2 $3 $4 $5 $6 $8
|