mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 22:22:53 +03:00
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
|