diff options
Diffstat (limited to 'meta/recipes-sato/webkit/files/Makefile.shared')
| -rw-r--r-- | meta/recipes-sato/webkit/files/Makefile.shared | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/files/Makefile.shared b/meta/recipes-sato/webkit/files/Makefile.shared new file mode 100644 index 0000000000..aa9fa728d6 --- /dev/null +++ b/meta/recipes-sato/webkit/files/Makefile.shared | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | SCRIPTS_PATH ?= ../WebKitTools/Scripts | ||
| 2 | XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()'` $(ARGS) | ||
| 3 | |||
| 4 | all: | ||
| 5 | ( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} ) | ||
| 6 | |||
| 7 | debug d development dev develop: force | ||
| 8 | $(SCRIPTS_PATH)/set-webkit-configuration --debug | ||
| 9 | ( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} ) | ||
| 10 | |||
| 11 | release r deployment dep deploy: force | ||
| 12 | $(SCRIPTS_PATH)/set-webkit-configuration --release | ||
| 13 | ( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} ) | ||
| 14 | |||
| 15 | clean: | ||
| 16 | ( xcodebuild $(OTHER_OPTIONS) -alltargets clean $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} ) | ||
| 17 | |||
| 18 | force: ; | ||
