add MAKE_VARS and MAKE_FLAGS similar to CONFIGURE_*
SVN-Revision: 6377
This commit is contained in:
parent
6d6b1ac683
commit
350b686ffd
1 changed files with 12 additions and 6 deletions
|
@ -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) -C $(PKG_BUILD_DIR) \
|
|
||||||
|
MAKE_FLAGS := \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CROSS="$(TARGET_CROSS)" \
|
CROSS="$(TARGET_CROSS)" \
|
||||||
CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
|
CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
|
||||||
ARCH="$(ARCH)" \
|
ARCH="$(ARCH)"
|
||||||
|
|
||||||
|
define Build/Compile/Default
|
||||||
|
$(MAKE_VARS) \
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
$(MAKE_FLAGS) \
|
||||||
$(1);
|
$(1);
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue