Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2019-06-29 00:11:06 +0300
committerKarl Palsson <karlp@tweak.net.au>2019-06-29 00:45:14 +0300
commit7c24f0f837567698d25c48446328f1a6f0600d60 (patch)
treed87f2c617a403e57c485ab1a28210212c5e5a7a4
parent8b4d952629f9c43a89939b83290bc2fe3fd46f0f (diff)
gadget0: allow parallel submake
allows "make -j10" work properly
-rw-r--r--tests/gadget-zero/Makefile4
1 files 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