mitz@apple.com | 10955a5a | 2010-12-18 00:02:12 +0000 | [diff] [blame] | 1 | SCRIPTS_PATH ?= ../Tools/Scripts |
thatcher | b0cc075 | 2007-07-18 13:55:11 +0000 | [diff] [blame] | 2 | XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()'` $(ARGS) |
thatcher | fab2077 | 2006-01-08 04:14:06 +0000 | [diff] [blame] | 3 | |
| 4 | all: |
thatcher | a3c1ab1 | 2006-12-14 19:30:36 +0000 | [diff] [blame] | 5 | ( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} ) |
thatcher | fab2077 | 2006-01-08 04:14:06 +0000 | [diff] [blame] | 6 | |
thatcher | 8abc374 | 2006-03-07 23:35:12 +0000 | [diff] [blame] | 7 | debug d development dev develop: force |
thatcher | b0cc075 | 2007-07-18 13:55:11 +0000 | [diff] [blame] | 8 | $(SCRIPTS_PATH)/set-webkit-configuration --debug |
thatcher | a3c1ab1 | 2006-12-14 19:30:36 +0000 | [diff] [blame] | 9 | ( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} ) |
thatcher | fab2077 | 2006-01-08 04:14:06 +0000 | [diff] [blame] | 10 | |
thatcher | 8abc374 | 2006-03-07 23:35:12 +0000 | [diff] [blame] | 11 | release r deployment dep deploy: force |
thatcher | b0cc075 | 2007-07-18 13:55:11 +0000 | [diff] [blame] | 12 | $(SCRIPTS_PATH)/set-webkit-configuration --release |
slewis@apple.com | 8792048 | 2010-04-27 23:19:44 +0000 | [diff] [blame] | 13 | ( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} ) |
thatcher | fab2077 | 2006-01-08 04:14:06 +0000 | [diff] [blame] | 14 | |
| 15 | clean: |
thatcher | b0cc075 | 2007-07-18 13:55:11 +0000 | [diff] [blame] | 16 | ( xcodebuild $(OTHER_OPTIONS) -alltargets clean $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} ) |
thatcher | 8abc374 | 2006-03-07 23:35:12 +0000 | [diff] [blame] | 17 | |
| 18 | force: ; |