From 7c24f0f837567698d25c48446328f1a6f0600d60 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Fri, 28 Jun 2019 21:11:06 +0000 Subject: [PATCH] gadget0: allow parallel submake allows "make -j10" work properly --- tests/gadget-zero/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gadget-zero/Makefile b/tests/gadget-zero/Makefile index 52841cd0..8aa770d8 100644 --- a/tests/gadget-zero/Makefile +++ b/tests/gadget-zero/Makefile @@ -9,7 +9,7 @@ all: $(GZ_ALL:=.all) clean: $(GZ_ALL:=.clean) %.all: - make -f $* all + $(MAKE) -f $* all %.clean: - make -f $* clean + $(MAKE) -f $* clean