build/src/for: use -j for multithreaded builds

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2023-08-27 11:34:24 +01:00
parent 95f290d9e3
commit 197464bc4b
+1 -1
View File
@@ -69,7 +69,7 @@ handle_dependencies()
run_make_command()
{
if [ -z "${mode}" ]; then
make -C "${project}" || \
make -C "${project}" -j$(nproc) || \
err "run_make_command: !make -C ${project}"
else
make -C "${project}" distclean || make -C "${project}" clean \