blob: 4648f98077d880c2b818901db74a4816023c449c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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
|