1# Build TestWebKitAPI only on Snow Leopard and later. 2 3OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2) 4BUILD_TESTWEBKITAPI = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" ) 5 6ifeq "$(BUILD_TESTWEBKITAPI)" "YES" 7 8SCRIPTS_PATH = ../Scripts 9include ../../Makefile.shared 10 11else 12 13all: ; 14 15debug d development dev develop: ; 16 17release r deployment dep deploy: ; 18 19clean: ; 20 21endif 22