Browse Source

add MAKE_VARS and MAKE_FLAGS similar to CONFIGURE_*

SVN-Revision: 6377
Felix Fietkau 19 years ago
parent
commit
350b686ffd
1 changed files with 12 additions and 6 deletions
  1. 12 6
      include/package.mk

+ 12 - 6
include/package.mk

@@ -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