mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
a3f34fb4b7
This leaves our firefox diff to gecko instrumentation changes only. Drive-by: rename webkit "src" folder into "embedder".
22 lines
377 B
Makefile
22 lines
377 B
Makefile
# Build Playwright only on SnowLeopard and later.
|
|
|
|
OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
|
|
BUILD_PLAYWRIGHT = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
|
|
|
|
ifeq "$(BUILD_PLAYWRIGHT)" "YES"
|
|
|
|
SCRIPTS_PATH = ../Scripts
|
|
include ../../Makefile.shared
|
|
|
|
else
|
|
|
|
all: ;
|
|
|
|
debug d development dev develop: ;
|
|
|
|
release r deployment dep deploy: ;
|
|
|
|
clean: ;
|
|
|
|
endif
|