mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 19:09:41 +01:00
* Update the following files with 1.3.2 version in upstream:
GNUmakefile.am
Makefile
Makefile.shared
autogen.sh
configure.ac
* Update the .bb with the one in openembeded(91eefa1e)
* inherit pkgconfig and remove dolt stuff according to RP's comments
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
19 lines
728 B
Makefile
19 lines
728 B
Makefile
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: ;
|