Makefile 359 B

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