diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-08-16 16:59:47 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-08-16 16:59:47 +0000 |
commit | 3e8bff3590764c1f6f691db7c7fbb020e6113944 (patch) | |
tree | e5743fc68af24bb635a031fdcc4f1e12ce8eaf57 /Makefile | |
parent | 21fc452c297663f6aac7ee5586309bd739559e67 (diff) |
rework parallel building to get rid of some warnings
and add back support for parallelizing the kernel build
fixes #3882
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12322 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -20,7 +20,7 @@ ifneq ($(OPENWRT_BUILD),1) # but we can't include that file in this context empty:= space:= $(empty) $(empty) - _SINGLE=MAKEFLAGS=$(space) + _SINGLE=export MAKEFLAGS=$(space); override OPENWRT_BUILD=1 export OPENWRT_BUILD @@ -50,7 +50,7 @@ $(BUILD_DIR)/.prepared: Makefile clean: FORCE rm -rf $(BUILD_DIR) $(BIN_DIR) - $(SUBMAKE) target/linux/clean + $(_SINGLE)$(SUBMAKE) target/linux/clean dirclean: clean rm -rf $(STAGING_DIR) $(STAGING_DIR_HOST) $(STAGING_DIR_TOOLCHAIN) $(TOOLCHAIN_DIR) $(BUILD_DIR_HOST) @@ -59,7 +59,7 @@ dirclean: clean tmp/.prereq_packages: .config unset ERROR; \ for package in $(sort $(prereq-y) $(prereq-m)); do \ - $(NO_TRACE_MAKE) -s -r -C package/$$package prereq || ERROR=1; \ + $(_SINGLE)$(NO_TRACE_MAKE) -s -r -C package/$$package prereq || ERROR=1; \ done; \ if [ -n "$$ERROR" ]; then \ echo "Package prerequisite check failed."; \ @@ -72,7 +72,7 @@ prereq: $(target/stamp-prereq) tmp/.prereq_packages prepare: .config $(tools/stamp-install) $(toolchain/stamp-install) world: prepare $(target/stamp-compile) $(package/stamp-cleanup) $(package/stamp-compile) $(package/stamp-install) $(package/stamp-rootfs-prepare) $(target/stamp-install) FORCE - $(SUBMAKE) package/index + $(_SINGLE)$(SUBMAKE) package/index # update all feeds, re-create index files, install symlinks package/symlinks: |