From 6e9725bb5311d1d980847e67088f89385b4bf911 Mon Sep 17 00:00:00 2001 From: whaffman Date: Sun, 21 Sep 2025 00:11:56 +0200 Subject: [PATCH] Enable parallel build for release target in Makefile for improved build performance --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5fe4e12..b8594c5 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ $(BUILD_DIR): # Build targets with specific build types release: $(BUILD_DIR) $(CMAKE) -B $(BUILD_DIR) $(CMAKE_FLAGS) -DCMAKE_BUILD_TYPE=Release - $(CMAKE_BUILD) $(BUILD_DIR) --target webserv + $(CMAKE_BUILD) $(BUILD_DIR) --target webserv --parallel debug: $(BUILD_DIR) $(CMAKE) -B $(BUILD_DIR) $(CMAKE_FLAGS) -DCMAKE_BUILD_TYPE=Debug