blob: ed01cce4cf50dedb06bce3f686511440e5b2fb05 [file] [log] [blame]
# Build TestWebKitAPI only on Snow Leopard and later.
OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
BUILD_TESTWEBKITAPI = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
ifeq "$(BUILD_TESTWEBKITAPI)" "YES"
SCRIPTS_PATH = ../Scripts
include ../../Makefile.shared
else
all: ;
debug d development dev develop: ;
release r deployment dep deploy: ;
clean: ;
endif