mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 16:43:09 +02:00
add MAKE_VARS and MAKE_FLAGS similar to CONFIGURE_*
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6377 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
209b854997
commit
fb2ec8a718
@ -330,14 +330,20 @@ define Build/Configure
|
|||||||
$(call Build/Configure/Default,)
|
$(call Build/Configure/Default,)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile/Default
|
MAKE_VARS := \
|
||||||
CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
|
CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
|
||||||
LDFLAGS="$(EXTRA_LDFLAGS) " \
|
LDFLAGS="$(EXTRA_LDFLAGS) "
|
||||||
|
|
||||||
|
MAKE_FLAGS := \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CROSS="$(TARGET_CROSS)" \
|
||||||
|
CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
|
||||||
|
ARCH="$(ARCH)"
|
||||||
|
|
||||||
|
define Build/Compile/Default
|
||||||
|
$(MAKE_VARS) \
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(MAKE_FLAGS) \
|
||||||
CROSS="$(TARGET_CROSS)" \
|
|
||||||
CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
|
|
||||||
ARCH="$(ARCH)" \
|
|
||||||
$(1);
|
$(1);
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user