From: thatcher Date: Tue, 9 May 2006 00:13:01 +0000 (+0000) Subject: Adding a ARGS variable that can be used to pass arguments to xcodebuild. This is... X-Git-Url: https://git.webkit.org/?p=WebKit.git;a=commitdiff_plain;h=d7583b46cbc29360deac80f8f697e8a2a92995b7 Adding a ARGS variable that can be used to pass arguments to xcodebuild. This is handy when you want to temporary overide a build setting, like ARCHS. Use: make r ARGS='ARCHS=ppc64' git-svn-id: http://svn.webkit.org/repository/webkit/trunk@14245 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Makefile.shared b/Makefile.shared index 2fd9e7f..8b9421d 100644 --- a/Makefile.shared +++ b/Makefile.shared @@ -1,4 +1,4 @@ -XCODE_OPTIONS = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'` +XCODE_OPTIONS = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'` $(ARGS) all: xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS)