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