thatcher | d7583b4 | 2006-05-09 00:13:01 +0000 | [diff] [blame] | 1 | XCODE_OPTIONS = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'` $(ARGS) |
thatcher | fab2077 | 2006-01-08 04:14:06 +0000 | [diff] [blame] | 2 | |
| 3 | all: |
| 4 | xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) |
| 5 | |
thatcher | 8abc374 | 2006-03-07 23:35:12 +0000 | [diff] [blame] | 6 | debug d development dev develop: force |
thatcher | 407bf0f | 2006-02-03 23:34:55 +0000 | [diff] [blame] | 7 | ../WebKitTools/Scripts/set-webkit-configuration --debug |
thatcher | 6a131623 | 2006-02-20 20:20:31 +0000 | [diff] [blame] | 8 | xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) |
thatcher | fab2077 | 2006-01-08 04:14:06 +0000 | [diff] [blame] | 9 | |
thatcher | 8abc374 | 2006-03-07 23:35:12 +0000 | [diff] [blame] | 10 | release r deployment dep deploy: force |
thatcher | 407bf0f | 2006-02-03 23:34:55 +0000 | [diff] [blame] | 11 | ../WebKitTools/Scripts/set-webkit-configuration --release |
thatcher | 6a131623 | 2006-02-20 20:20:31 +0000 | [diff] [blame] | 12 | xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) |
thatcher | fab2077 | 2006-01-08 04:14:06 +0000 | [diff] [blame] | 13 | |
| 14 | clean: |
| 15 | xcodebuild -alltargets clean $(XCODE_OPTIONS) |
thatcher | 8abc374 | 2006-03-07 23:35:12 +0000 | [diff] [blame] | 16 | |
| 17 | force: ; |