commit 4b12fe6bce151c8f1d4d7d65a0b2461fc0f780af
parent 2f9ee2943948454638d724feeacbbae63a63179c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Wed, 9 Oct 2024 10:38:10 +0200
build: Add paralelism to libc builds
The + command modifier has a side effect which enables parallel
build for the submake.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libc/Makefile b/src/libc/Makefile
@@ -21,7 +21,7 @@ NODEP = 1
TARGET = $(LIBC) $(BINDIR)/gcc-scc
all: $(DIRS)
- $(MAKE) $(TARGET)
+ +@$(MAKE) $(TARGET)
$(LIBC): $(OBJS)
$(AR) $(PROJ_ARFLAGS) $(LIBC) $?