mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 18:49:33 +02:00
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
18
meta/recipes-sato/webkit/files/Makefile.shared
Normal file
18
meta/recipes-sato/webkit/files/Makefile.shared
Normal file
@@ -0,0 +1,18 @@
|
||||
SCRIPTS_PATH ?= ../WebKitTools/Scripts
|
||||
XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()'` $(ARGS)
|
||||
|
||||
all:
|
||||
( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} )
|
||||
|
||||
debug d development dev develop: force
|
||||
$(SCRIPTS_PATH)/set-webkit-configuration --debug
|
||||
( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} )
|
||||
|
||||
release r deployment dep deploy: force
|
||||
$(SCRIPTS_PATH)/set-webkit-configuration --release
|
||||
( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} )
|
||||
|
||||
clean:
|
||||
( xcodebuild $(OTHER_OPTIONS) -alltargets clean $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} )
|
||||
|
||||
force: ;
|
||||
Reference in New Issue
Block a user