• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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	devenv "WebKit2.submit.sln" /rebuild $(BUILDSTYLE)
13	-xcopy "%ConfigurationBuildDir%\bin\*.exe" "$(DSTROOT)\AppleInternal\bin\" /e/v/i/h/y
14	xcopy "%ConfigurationBuildDir%\bin\*.pdb" "$(DSTROOT)\AppleInternal\bin\" /e/v/i/h/y
15	xcopy "%ConfigurationBuildDir%\bin\*.dll" "$(DSTROOT)\AppleInternal\bin\" /e/v/i/h/y
16	xcopy "%ConfigurationBuildDir%\include\*" "$(DSTROOT)\AppleInternal\include\" /e/v/i/h/y
17	xcopy "%ConfigurationBuildDir%\lib\*" "$(DSTROOT)\AppleInternal\lib\" /e/v/i/h/y
18	-xcopy "%ConfigurationBuildDir%\bin\WebKit2.resources\*" "$(DSTROOT)\AppleInternal\bin\WebKit2.resources" /e/v/i/h/y
19	-xcopy "%ConfigurationBuildDir%\bin\WebKit2WebProcess.resources\*" "$(DSTROOT)\AppleInternal\bin\WebKit2WebProcess.resources" /e/v/i/h/y
20	-mkdir "$(DSTROOT)\AppleInternal\Sources\WebKit2"
21	xcopy "%ConfigurationBuildDir%\obj\WebKit\DerivedSources\*" "$(DSTROOT)\AppleInternal\Sources\WebKit2" /e/v/i/h/y
22