blob: 8b9421d883ff8c098be747044c78cebf396c1531 [file] [log] [blame]
thatcherd7583b42006-05-09 00:13:01 +00001XCODE_OPTIONS = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'` $(ARGS)
thatcherfab20772006-01-08 04:14:06 +00002
3all:
4 xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS)
5
thatcher8abc3742006-03-07 23:35:12 +00006debug d development dev develop: force
thatcher407bf0f2006-02-03 23:34:55 +00007 ../WebKitTools/Scripts/set-webkit-configuration --debug
thatcher6a1316232006-02-20 20:20:31 +00008 xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS)
thatcherfab20772006-01-08 04:14:06 +00009
thatcher8abc3742006-03-07 23:35:12 +000010release r deployment dep deploy: force
thatcher407bf0f2006-02-03 23:34:55 +000011 ../WebKitTools/Scripts/set-webkit-configuration --release
thatcher6a1316232006-02-20 20:20:31 +000012 xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS)
thatcherfab20772006-01-08 04:14:06 +000013
14clean:
15 xcodebuild -alltargets clean $(XCODE_OPTIONS)
thatcher8abc3742006-03-07 23:35:12 +000016
17force: ;