1 XCODE_OPTIONS = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'`
2 XCODE_OPTIONS_NO_CONFIG = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionStringNoConfig()'`
5 xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS)
7 debug d development dev develop:
8 ../WebKitTools/Scripts/set-webkit-configuration --development
9 xcodebuild $(OTHER_OPTIONS) -configuration Development $(XCODE_OPTIONS_NO_CONFIG)
11 release r deployment dep deploy:
12 ../WebKitTools/Scripts/set-webkit-configuration --deployment
13 xcodebuild $(OTHER_OPTIONS) -configuration Deployment $(XCODE_OPTIONS_NO_CONFIG)
16 xcodebuild -alltargets clean $(XCODE_OPTIONS)