summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2006-08-03 18:30:00 +0000
committerMike Baker <mbm@openwrt.org>2006-08-03 18:30:00 +0000
commit05f548c0b20256d35d13549ac2277998878d4e02 (patch)
treebd4c19f22037bf155002ced95c9c7bd8a9743b7b
parent8d3609858c0e8c7394f41c51b5773049f04d86d6 (diff)
downloadmtk-20170518-05f548c0b20256d35d13549ac2277998878d4e02.zip
mtk-20170518-05f548c0b20256d35d13549ac2277998878d4e02.tar.gz
mtk-20170518-05f548c0b20256d35d13549ac2277998878d4e02.tar.bz2
clean up smp compiles
SVN-Revision: 4428
-rw-r--r--openwrt/package/Makefile20
1 files changed, 13 insertions, 7 deletions
diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile
index c2015b3..b9392c0 100644
--- a/openwrt/package/Makefile
+++ b/openwrt/package/Makefile
@@ -19,22 +19,22 @@ $(STAMP_DIR) $(TARGET_DIR):
mkdir -p $@
%-prereq: $(STAMP_DIR) $(TARGET_DIR)
- $(MAKE) -C $(patsubst %-prereq,%,$@) prereq MAKEFLAGS="$(BUILD_MAKEFLAGS)"
+ $(MAKE) -C $(patsubst %-prereq,%,$@) prereq
%-download: $(STAMP_DIR) $(TARGET_DIR)
- $(MAKE) -C $(patsubst %-download,%,$@) download MAKEFLAGS="$(BUILD_MAKEFLAGS)"
+ $(MAKE) -C $(patsubst %-download,%,$@) download
%-prepare: $(STAMP_DIR) $(TARGET_DIR)
- $(MAKE) -C $(patsubst %-prepare,%,$@) prepare MAKEFLAGS="$(BUILD_MAKEFLAGS)"
+ $(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: $(STAMP_DIR) $(TARGET_DIR)
- $(MAKE) -C $(patsubst %-compile,%,$@) compile MAKEFLAGS="$(BUILD_MAKEFLAGS)"
+ $(MAKE) -C $(patsubst %-compile,%,$@) compile
%-install: $(STAMP_DIR) $(TARGET_DIR)
- $(MAKE) -C $(patsubst %-install,%,$@) install MAKEFLAGS="$(BUILD_MAKEFLAGS)"
+ $(MAKE) -C $(patsubst %-install,%,$@) install
%-clean: $(STAMP_DIR) $(TARGET_DIR)
- $(MAKE) -C $(patsubst %-clean,%,$@) clean MAKEFLAGS="$(BUILD_MAKEFLAGS)"
+ $(MAKE) -C $(patsubst %-clean,%,$@) clean
ifeq ($(SDK),1)
GENDEP_OPTS := -s
@@ -49,7 +49,7 @@ prereq: $(PREREQ_PACKAGES)
download: $(DOWNLOAD_PACKAGES)
compile-targets: $(COMPILE_PACKAGES)
compile:
- $(MAKE) -j$(CONFIG_JLEVEL) compile-targets
+ $(MAKE) compile-targets
install-targets: base-files-install $(INSTALL_PACKAGES)
install:
rm -rf $(BUILD_DIR)/root
@@ -60,3 +60,9 @@ index: $(PACKAGE_DIR)/Packages
$(PACKAGE_DIR)/Packages: $(PACKAGE_DIR)/*.ipk
(cd $(PACKAGE_DIR); $(STAGING_DIR)/usr/bin/ipkg-make-index . > Packages)
+
+ifeq ($(MAKECMDGOALS),compile-targets)
+MAKEFLAGS:=$(MAKEFLAGS) -j$(CONFIG_JLEVEL)
+else
+.NOTPARALLEL:
+endif