summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRenato Botelho do Couto <renato@netgate.com>2024-06-05 18:11:46 +0000
committerDamjan Marion <dmarion@0xa5.net>2024-06-10 13:13:31 +0000
commit893dacae3f93dcab24fdeb0c7e4a44d30b2db0ee (patch)
tree56d5bfe824098b8c729bebaf87cfef056c8b97f4 /Makefile
parentfa500e98543989e4cdcbedac19a525d55a8558d5 (diff)
build: Use $(MAKE) instead of direct call to make
No functional changes, just make it to respect original make binary name used to start building Type: improvement Change-Id: Ic8568237fbb39c6a0d3b7405a9670e9410aeb752 Signed-off-by: Renato Botelho do Couto <renato@netgate.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 1ab387e94d4..18908faf537 100644
--- a/Makefile
+++ b/Makefile
@@ -495,17 +495,17 @@ test-cov:
.PHONY: test-cov-hs
test-cov-hs:
- @make -C extras/hs-test build-cov
- @make -C extras/hs-test test-cov
+ @$(MAKE) -C extras/hs-test build-cov
+ @$(MAKE) -C extras/hs-test test-cov
.PHONY: test-cov-both
test-cov-both:
@echo "Running Python, Golang tests and merging coverage reports."
find $(BR) -name '*.gcda' -delete
- @make test-cov
+ @$(MAKE) test-cov
find $(BR) -name '*.gcda' -delete
- @make test-cov-hs
- @make cov-merge
+ @$(MAKE) test-cov-hs
+ @$(MAKE) cov-merge
.PHONY: test-cov-build
test-cov-build:
@@ -580,7 +580,7 @@ test-shell-cov:
.PHONY: test-dep
test-dep:
- @make -C test test-dep
+ @$(MAKE) -C test test-dep
.PHONY: test-doc
test-doc: