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