X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=WebKitLibraries%2FMakefile;h=c29aadfc01e4b7c8f227f1c394892360f467a8d1;hp=a85e03d25bb7fac83a6422da4ae92747f21a5b10;hb=1c184651d523d41a8034e70e22da8d0043d35392;hpb=c6313daca854f79601cad3f29915e16a9d3f6e59 diff --git a/WebKitLibraries/Makefile b/WebKitLibraries/Makefile index a85e03d25bb7..c29aadfc01e4 100644 --- a/WebKitLibraries/Makefile +++ b/WebKitLibraries/Makefile @@ -1,7 +1,16 @@ SCRIPTS_PATH = ../Tools/Scripts +ifeq ($(shell sw_vers -productVersion | cut -d. -f-2), 10.10) libs: - perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory --wksi --llvm + @true +cleanlibs: + @true +else +libs: + perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory --wksi +cleanlibs: + perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory --clean +endif all: libs @@ -13,3 +22,9 @@ release r: $(SCRIPTS_PATH)/set-webkit-configuration --release @$(MAKE) libs +analyze: + $(SCRIPTS_PATH)/set-webkit-configuration --debug + @$(MAKE) libs + +clean: + @$(MAKE) cleanlibs