Reviewed by Mark Rowe.
* Makefile:
WebKit2: Only build on SnowLeopard and later when using the Makefile.
Reviewed by Mark Rowe.
* Makefile:
WebKitTools: Add MiniBrowser to the lists of modules to build and only build it on
SnowLeopard and later.
Reviewed by Mark Rowe.
* Makefile:
* MiniBrowser/Makefile:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@58443
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2010-04-28 Sam Weinig <sam@webkit.org>
+
+ Reviewed by Mark Rowe.
+
+ Add WebKit2 to the lists of modules to build.
+
+ * Makefile:
+
2010-04-21 Xan Lopez <xlopez@igalia.com>
Reviewed by Adam Barth.
-MODULES = JavaScriptCore JavaScriptGlue WebCore WebKit WebKitTools
+MODULES = JavaScriptCore JavaScriptGlue WebCore WebKit WebKit2 WebKitTools
all:
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
+2010-04-28 Sam Weinig <sam@webkit.org>
+
+ Reviewed by Mark Rowe.
+
+ Only build on SnowLeopard and later when using the Makefile.
+
+ * Makefile:
+
2010-04-27 Sam Weinig <sam@webkit.org>
Reviewed by Maciej Stachowiak.
+# Build WebKit2 only on SnowLeopard and later.
+
+OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
+BUILD_WEBKIT2 = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
+
+ifeq "$(BUILD_WEBKIT2)" "YES"
+
include ../Makefile.shared
+
+else
+
+all: ;
+
+debug d development dev develop: ;
+
+release r deployment dep deploy: ;
+
+clean: ;
+
+endif
+2010-04-28 Sam Weinig <sam@webkit.org>
+
+ Reviewed by Mark Rowe.
+
+ Add MiniBrowser to the lists of modules to build and only build it on
+ SnowLeopard and later.
+
+ * Makefile:
+ * MiniBrowser/Makefile:
+
2010-04-28 Sam Weinig <sam@webkit.org>
Reviewed by Mark Rowe.
-MODULES = DumpRenderTree
+MODULES = DumpRenderTree MiniBrowser
all:
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
+# Build MiniBrowser only on SnowLeopard and later.
+
+OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
+BUILD_MINIBROWSER = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
+
+ifeq "$(BUILD_MINIBROWSER)" "YES"
+
SCRIPTS_PATH = ../Scripts
include ../../Makefile.shared
+
+else
+
+all: ;
+
+debug d development dev develop: ;
+
+release r deployment dep deploy: ;
+
+clean: ;
+
+endif