summaryrefslogtreecommitdiffstats
path: root/WebKitTools/WebKitTestRunner/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'WebKitTools/WebKitTestRunner/Makefile')
-rw-r--r--WebKitTools/WebKitTestRunner/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/WebKitTools/WebKitTestRunner/Makefile b/WebKitTools/WebKitTestRunner/Makefile
deleted file mode 100644
index 4648f98..0000000
--- a/WebKitTools/WebKitTestRunner/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Build WebKitTestRunner only on Snow Leopard and later.
-
-OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
-BUILD_WEBKITTESTRUNNER = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
-
-ifeq "$(BUILD_WEBKITTESTRUNNER)" "YES"
-
-SCRIPTS_PATH = ../Scripts
-include ../../Makefile.shared
-
-else
-
-all: ;
-
-debug d development dev develop: ;
-
-release r deployment dep deploy: ;
-
-clean: ;
-
-endif