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