git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Change probe code to use static_assert instead of COMPILE_ASSERT.
[WebKit-https.git]
/
WebKitLibraries
/
Makefile
diff --git
a/WebKitLibraries/Makefile
b/WebKitLibraries/Makefile
index ed0ffba697a301c4915a681f0e2558b7c6900ed1..c29aadfc01e4b7c8f227f1c394892360f467a8d1 100644
(file)
--- a/
WebKitLibraries/Makefile
+++ b/
WebKitLibraries/Makefile
@@
-3,9
+3,13
@@
SCRIPTS_PATH = ../Tools/Scripts
ifeq ($(shell sw_vers -productVersion | cut -d. -f-2), 10.10)
libs:
@true
ifeq ($(shell sw_vers -productVersion | cut -d. -f-2), 10.10)
libs:
@true
+cleanlibs:
+ @true
else
libs:
else
libs:
- perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory --wksi --llvm
+ perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory --wksi
+cleanlibs:
+ perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory --clean
endif
all: libs
endif
all: libs
@@
-19,5
+23,8
@@
release r:
@$(MAKE) libs
analyze:
@$(MAKE) libs
analyze:
- $(SCRIPTS_PATH)/set-webkit-configuration --release
- @$(MAKE) libs
\ No newline at end of file
+ $(SCRIPTS_PATH)/set-webkit-configuration --debug
+ @$(MAKE) libs
+
+clean:
+ @$(MAKE) cleanlibs