summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2017-01-30 15:29:34 +0100
committerPatrick Georgi <pgeorgi@google.com>2017-01-31 18:51:55 +0100
commit78a5f22994da63bb02882aacb68cbbb70c2606ac (patch)
tree9e7756c25b2909395f87572943f97b4c59baf504 /Makefile.inc
parentbe182ad380bbb335fb5d1d746f0f8ce4a113b2f2 (diff)
downloadcoreboot-78a5f22994da63bb02882aacb68cbbb70c2606ac.tar.gz
coreboot-78a5f22994da63bb02882aacb68cbbb70c2606ac.tar.bz2
coreboot-78a5f22994da63bb02882aacb68cbbb70c2606ac.zip
build system: mark sub-make invocations as parallelizable
We rely on gnu make, so we can expect the jobserver to be around in parallel builds, too. Avoids some make warnings and slightly speeds up the build if those sub-makes are executed (eg for arm-trusted-firmware and vboot). Change-Id: I0e6a77f2813f7453d53e88e0214ad8c1b8689042 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/18263 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc
index d609ac4e03de..2267f3267b6b 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -274,7 +274,7 @@ cbfs-files-processor-vsa= \
# arg2: output
cbfs-files-processor-defconfig= \
$(eval $(2): $(1) $(obj)/build.h; \
- printf " CREATE $(2) (from $(1))\n"; \
+ +printf " CREATE $(2) (from $(1))\n"; \
printf "\# This image was built using coreboot " > $(2).tmp && \
grep "\<COREBOOT_VERSION\>" $(obj)/build.h |cut -d\" -f2 >> $(2).tmp && \
$(MAKE) DOTCONFIG=$(1) DEFCONFIG=$(2).tmp2 savedefconfig && \
@@ -486,7 +486,7 @@ $(ROMCC_BIN): $(top)/util/romcc/romcc.c
IFDTOOL:=$(objutil)/ifdtool/ifdtool
$(IFDTOOL):
@printf " Compile IFDTOOL\n"
- $(MAKE) -C $(top)/util/ifdtool
+ +$(MAKE) -C $(top)/util/ifdtool
cp -a $(top)/util/ifdtool/ifdtool $@
IFDFAKE:=$(objutil)/ifdfake/ifdfake