Makefile 417 B

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