X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=Makefile.shared;h=325a398dc62f3ff86e58d872e93559ad711f3679;hp=8cdb30b1f38a5ae5895a5bb6c73e4a8f93b3133c;hb=ae68b7c151fec1ac7079294f5a4440727e882344;hpb=16930c5fbac3e144fea0b47562aca95eb399d32f;ds=sidebyside diff --git a/Makefile.shared b/Makefile.shared index 8cdb30b1f38a..325a398dc62f 100644 --- a/Makefile.shared +++ b/Makefile.shared @@ -1,16 +1,20 @@ -XCODE_OPTIONS = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'` -XCODE_OPTIONS_NO_CONFIG = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionStringNoConfig()'` +XCODE_OPTIONS = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'` $(ARGS) all: xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) -debug d development dev develop: +debug d development dev develop: force ../WebKitTools/Scripts/set-webkit-configuration --debug - xcodebuild $(OTHER_OPTIONS) -configuration Debug $(XCODE_OPTIONS_NO_CONFIG) + xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) -release r deployment dep deploy: +release r deployment dep deploy: force ../WebKitTools/Scripts/set-webkit-configuration --release - xcodebuild $(OTHER_OPTIONS) -configuration Release $(XCODE_OPTIONS_NO_CONFIG) + xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) + +universal u: force + xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) 'ARCHS=ppc i386' clean: xcodebuild -alltargets clean $(XCODE_OPTIONS) + +force: ;