mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:43:08 +02:00
[backfire] backport host build hook support
git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@25734 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
1e09ab8b72
commit
d555e6cadb
@ -22,6 +22,7 @@ override MAKEFLAGS=
|
|||||||
|
|
||||||
include $(INCLUDE_DIR)/download.mk
|
include $(INCLUDE_DIR)/download.mk
|
||||||
include $(INCLUDE_DIR)/quilt.mk
|
include $(INCLUDE_DIR)/quilt.mk
|
||||||
|
include $(INCLUDE_DIR)/autotools.mk
|
||||||
|
|
||||||
Host/Patch:=$(Host/Patch/Default)
|
Host/Patch:=$(Host/Patch/Default)
|
||||||
ifneq ($(strip $(HOST_UNPACK)),)
|
ifneq ($(strip $(HOST_UNPACK)),)
|
||||||
@ -121,12 +122,16 @@ ifndef DUMP
|
|||||||
$(HOST_STAMP_PREPARED):
|
$(HOST_STAMP_PREPARED):
|
||||||
@-rm -rf $(HOST_BUILD_DIR)
|
@-rm -rf $(HOST_BUILD_DIR)
|
||||||
@mkdir -p $(HOST_BUILD_DIR)
|
@mkdir -p $(HOST_BUILD_DIR)
|
||||||
|
$(foreach hook,$(Hooks/HostPrepare/Pre),$(call $(hook))$(sep))
|
||||||
$(call Host/Prepare)
|
$(call Host/Prepare)
|
||||||
|
$(foreach hook,$(Hooks/HostPrepare/Post),$(call $(hook))$(sep))
|
||||||
touch $$@
|
touch $$@
|
||||||
|
|
||||||
$(call Host/Exports,$(HOST_STAMP_CONFIGURED))
|
$(call Host/Exports,$(HOST_STAMP_CONFIGURED))
|
||||||
$(HOST_STAMP_CONFIGURED): $(HOST_STAMP_PREPARED)
|
$(HOST_STAMP_CONFIGURED): $(HOST_STAMP_PREPARED)
|
||||||
|
$(foreach hook,$(Hooks/HostConfigure/Pre),$(call $(hook))$(sep))
|
||||||
$(call Host/Configure)
|
$(call Host/Configure)
|
||||||
|
$(foreach hook,$(Hooks/HostConfigure/Post),$(call $(hook))$(sep))
|
||||||
touch $$@
|
touch $$@
|
||||||
|
|
||||||
$(call Host/Exports,$(HOST_STAMP_BUILT))
|
$(call Host/Exports,$(HOST_STAMP_BUILT))
|
||||||
@ -142,17 +147,23 @@ ifndef DUMP
|
|||||||
update: host-update
|
update: host-update
|
||||||
|
|
||||||
$(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED)
|
$(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED)
|
||||||
|
$(foreach hook,$(Hooks/HostCompile/Pre),$(call $(hook))$(sep))
|
||||||
$(call Host/Compile)
|
$(call Host/Compile)
|
||||||
|
$(foreach hook,$(Hooks/HostCompile/Post),$(call $(hook))$(sep))
|
||||||
touch $$@
|
touch $$@
|
||||||
|
|
||||||
$(HOST_STAMP_INSTALLED): $(HOST_STAMP_BUILT)
|
$(HOST_STAMP_INSTALLED): $(HOST_STAMP_BUILT)
|
||||||
$(call Host/Install)
|
$(call Host/Install)
|
||||||
|
$(foreach hook,$(Hooks/HostInstall/Post),$(call $(hook))$(sep))
|
||||||
mkdir -p $$(shell dirname $$@)
|
mkdir -p $$(shell dirname $$@)
|
||||||
touch $$@
|
touch $$@
|
||||||
else
|
else
|
||||||
$(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED)
|
$(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED)
|
||||||
|
$(foreach hook,$(Hooks/HostCompile/Pre),$(call $(hook))$(sep))
|
||||||
$(call Host/Compile)
|
$(call Host/Compile)
|
||||||
|
$(foreach hook,$(Hooks/HostCompile/Post),$(call $(hook))$(sep))
|
||||||
$(call Host/Install)
|
$(call Host/Install)
|
||||||
|
$(foreach hook,$(Hooks/HostInstall/Post),$(call $(hook))$(sep))
|
||||||
touch $$@
|
touch $$@
|
||||||
endif
|
endif
|
||||||
host-prepare: $(HOST_STAMP_PREPARED)
|
host-prepare: $(HOST_STAMP_PREPARED)
|
||||||
|
@ -70,10 +70,6 @@ define Download/default
|
|||||||
MD5SUM:=$(PKG_MD5SUM)
|
MD5SUM:=$(PKG_MD5SUM)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define sep
|
|
||||||
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/Exports/Default
|
define Build/Exports/Default
|
||||||
$(1) : export ACLOCAL_INCLUDE=$$(foreach p,$$(wildcard $$(STAGING_DIR)/usr/share/aclocal $$(STAGING_DIR)/usr/share/aclocal-* $$(STAGING_DIR)/host/share/aclocal $$(STAGING_DIR)/host/share/aclocal-*),-I $$(p))
|
$(1) : export ACLOCAL_INCLUDE=$$(foreach p,$$(wildcard $$(STAGING_DIR)/usr/share/aclocal $$(STAGING_DIR)/usr/share/aclocal-* $$(STAGING_DIR)/host/share/aclocal $$(STAGING_DIR)/host/share/aclocal-*),-I $$(p))
|
||||||
$(1) : export STAGING_PREFIX=$$(STAGING_DIR)/usr
|
$(1) : export STAGING_PREFIX=$$(STAGING_DIR)/usr
|
||||||
|
4
rules.mk
4
rules.mk
@ -27,6 +27,10 @@ merge=$(subst $(space),,$(1))
|
|||||||
confvar=$(call merge,$(foreach v,$(1),$(if $($(v)),y,n)))
|
confvar=$(call merge,$(foreach v,$(1),$(if $($(v)),y,n)))
|
||||||
strip_last=$(patsubst %.$(lastword $(subst .,$(space),$(1))),%,$(1))
|
strip_last=$(patsubst %.$(lastword $(subst .,$(space),$(1))),%,$(1))
|
||||||
|
|
||||||
|
define sep
|
||||||
|
|
||||||
|
endef
|
||||||
|
|
||||||
_SINGLE=export MAKEFLAGS=$(space);
|
_SINGLE=export MAKEFLAGS=$(space);
|
||||||
CFLAGS:=
|
CFLAGS:=
|
||||||
ARCH:=$(subst i486,i386,$(subst i586,i386,$(subst i686,i386,$(call qstrip,$(CONFIG_ARCH)))))
|
ARCH:=$(subst i486,i386,$(subst i586,i386,$(subst i686,i386,$(call qstrip,$(CONFIG_ARCH)))))
|
||||||
|
Loading…
Reference in New Issue
Block a user