From 309a17c3b994a0d53f1b2f3e5dc10eba3cb930bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Fri, 2 Apr 2021 12:55:57 +0200 Subject: [PATCH] build: Pass make flags and parallel flags to module rule. --- build/makefile_base.mak | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/makefile_base.mak b/build/makefile_base.mak index ce6b8c50..72b1fd97 100644 --- a/build/makefile_base.mak +++ b/build/makefile_base.mak @@ -354,12 +354,12 @@ redist: dist | $(filter-out dist deploy install redist,$(MAKECMDGOALS)) module32: private SHELL := $(CONTAINER_SHELL) module32: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure32 module32: | all-source wine-configure32 - +$(MAKE) -C $(WINE_OBJ32)/dlls/$(module) + +$(MAKE) -j$(J) $(filter -j%,$(MAKEFLAGS)) $(MFLAGS) $(MAKEOVERRIDES) -C $(WINE_OBJ32)/dlls/$(module) module64: private SHELL := $(CONTAINER_SHELL) module64: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure64 module64: | all-source wine-configure64 - +$(MAKE) -C $(WINE_OBJ64)/dlls/$(module) + +$(MAKE) -j$(J) $(filter -j%,$(MAKEFLAGS)) $(MFLAGS) $(MAKEOVERRIDES) -C $(WINE_OBJ64)/dlls/$(module) module: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure module: | all-source wine-configure