JavaScriptCore:

        Reviewed by Justin.

        Renamed configuration names to Debug, Release and Production.

        * JavaScriptCore.xcodeproj/project.pbxproj:

JavaScriptGlue:

        Reviewed by Justin.

        Renamed configuration names to Debug, Release and Production.

        * JavaScriptGlue.xcodeproj/project.pbxproj:

WebCore:

        Reviewed by Justin.

        Renamed configuration names to Debug, Release and Production.

        * WebCore.xcodeproj/project.pbxproj:

WebKit:

        Reviewed by Justin.

        Renamed configuration names to Debug, Release and Production.

        * WebKit.xcodeproj/project.pbxproj:

WebKitTools:

        Reviewed by Justin.

        Renamed configuration names to Debug, Release and Production.

        * DrawTest/DrawTest.xcodeproj/project.pbxproj:
        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
        * Scripts/set-webkit-configuration:
        * Scripts/webkitdirs.pm:



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@12547 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Makefile.shared b/Makefile.shared
index 718439a..8cdb30b 100644
--- a/Makefile.shared
+++ b/Makefile.shared
@@ -5,12 +5,12 @@
 	xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS)
 
 debug d development dev develop:
-	../WebKitTools/Scripts/set-webkit-configuration --development
-	xcodebuild $(OTHER_OPTIONS) -configuration Development $(XCODE_OPTIONS_NO_CONFIG)
+	../WebKitTools/Scripts/set-webkit-configuration --debug
+	xcodebuild $(OTHER_OPTIONS) -configuration Debug $(XCODE_OPTIONS_NO_CONFIG)
 
 release r deployment dep deploy:
-	../WebKitTools/Scripts/set-webkit-configuration --deployment
-	xcodebuild $(OTHER_OPTIONS) -configuration Deployment $(XCODE_OPTIONS_NO_CONFIG)
+	../WebKitTools/Scripts/set-webkit-configuration --release
+	xcodebuild $(OTHER_OPTIONS) -configuration Release $(XCODE_OPTIONS_NO_CONFIG)
 
 clean:
 	xcodebuild -alltargets clean $(XCODE_OPTIONS)