add MAKE_VARS and MAKE_FLAGS similar to CONFIGURE_*
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6377 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
8c7f049311
commit
349177d981
|
@ -330,14 +330,20 @@ define Build/Configure
|
|||
$(call Build/Configure/Default,)
|
||||
endef
|
||||
|
||||
define Build/Compile/Default
|
||||
MAKE_VARS := \
|
||||
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) \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CROSS="$(TARGET_CROSS)" \
|
||||
CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
|
||||
ARCH="$(ARCH)" \
|
||||
$(MAKE_FLAGS) \
|
||||
$(1);
|
||||
endef
|
||||
|
||||
|
|
Loading…
Reference in New Issue