2011-06-18 20:40:45 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# External makefile Xcode project project uses this script to build and clean from the Xcode GUI
|
|
|
|
#
|
|
|
|
# Copyright (c) 2008 - 2011, Apple Inc. All rights reserved.<BR>
|
|
|
|
#
|
2019-04-04 01:03:44 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-06-18 20:40:45 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
# force exit on error
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#
|
|
|
|
# Source the workspace and set up the environment variables we need
|
|
|
|
#
|
2011-06-29 19:27:55 +02:00
|
|
|
cd ../../..
|
|
|
|
./build.sh -a IA32 $1 $2 $3 $4 $5 $6 $8
|