1!IF "$(BUILDSTYLE)"=="DEBUG" 2BUILDSTYLE=Debug_All 3!ELSE 4BUILDSTYLE=Production 5!ENDIF 6 7install: 8 set WebKitLibrariesDir=$(SRCROOT)\AppleInternal 9 set WebKitOutputDir=$(OBJROOT) 10 set ConfigurationBuildDir=$(OBJROOT)\$(BUILDSTYLE) 11 set WebKitVSPropsRedirectionDir=$(SRCROOT)\AppleInternal\tools\vsprops\OpenSource\1\2\3\ 12 -mkdir 2>NUL "%ConfigurationBuildDir%\include\private\JavaScriptCore" 13 xcopy "%WebKitLibrariesDir%\include\private\JavaScriptCore\*" "%ConfigurationBuildDir%\include\private\JavaScriptCore" /e/v/i/h/y 14 devenv "WebCore.submit.sln" /rebuild $(BUILDSTYLE) 15 xcopy "%ConfigurationBuildDir%\include\*" "$(DSTROOT)\AppleInternal\include\" /e/v/i/h/y 16 xcopy "%ConfigurationBuildDir%\lib\*" "$(DSTROOT)\AppleInternal\lib\" /e/v/i/h/y 17 xcopy "%ConfigurationBuildDir%\bin\WebKit.resources\*" "$(DSTROOT)\AppleInternal\bin\WebKit.resources" /e/v/i/h/y 18 xcopy "%ConfigurationBuildDir%\obj\WebCore\scripts\*" "$(DSTROOT)\AppleInternal\tools\scripts" /e/v/i/h/y 19 xcopy "%ConfigurationBuildDir%\bin\*.pdb" "$(DSTROOT)\AppleInternal\bin\" /e/v/i/h/y 20 xcopy "%ConfigurationBuildDir%\bin\*.dll" "$(DSTROOT)\AppleInternal\bin\" /e/v/i/h/y 21 -mkdir "$(DSTROOT)\AppleInternal\Sources\WebCore" 22 xcopy "%ConfigurationBuildDir%\obj\WebCore\DerivedSources\*" "$(DSTROOT)\AppleInternal\Sources\WebCore" /e/v/i/h/y 23