From d97ad2d13df35c9c06c249ec86c148b99b96dfc0 Mon Sep 17 00:00:00 2001 From: Albert Graef <aggraef@gmail.com> Date: Mon, 26 Aug 2019 23:26:50 +0200 Subject: [PATCH] Allow make options like -j8 to be passed to the Gem compilation, which takes awfully long on a single cpu. --- externals/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/externals/Makefile b/externals/Makefile index 220ccb288..13eac4855 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -677,7 +677,7 @@ $(gem_src)/Gem.dll: $(gem_src)/configure --prefix=$(prefix) \ --libdir=$(objectsdir) \ --with-pd=$(DESTDIR) - $(MAKE) -C $(gem_src) + $(MAKE) $(GEM_MAKEFLAGS) -C $(gem_src) $(gem_src)/Gem.pd_linux: $(gem_src)/configure test -s $(gem_src)/Gem.pd_linux || \ @@ -687,7 +687,7 @@ $(gem_src)/Gem.pd_linux: $(gem_src)/configure --with-video=plugins \ --with-film=plugins \ --with-pd=$(pd_src) - $(MAKE) -C $(gem_src) + $(MAKE) $(GEM_MAKEFLAGS) -C $(gem_src) $(gem_src)/Gem.pd_darwin: $(gem_src)/configure cd $(gem_src) && ./configure \ @@ -701,7 +701,7 @@ $(gem_src)/Gem.pd_darwin: $(gem_src)/configure --with-video=plugins \ --with-film=plugins \ --with-pd=$(pd_src) - $(MAKE) -C $(gem_src) + $(MAKE) $(GEM_MAKEFLAGS) -C $(gem_src) gem: $(gem_src)/Gem.$(EXTENSION) -- GitLab