aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-20 02:31:01 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-07-20 05:03:47 -0300
commit8ee610eb10a176aa1d106efe00a5d9e5daa082c0 (patch)
tree49c37633de16326833d74e306aa5531be67ad701 /Makefile
parenthostnames.c: fix scan-build warning (diff)
downloadfirejail-8ee610eb10a176aa1d106efe00a5d9e5daa082c0.tar.gz
firejail-8ee610eb10a176aa1d106efe00a5d9e5daa082c0.tar.zst
firejail-8ee610eb10a176aa1d106efe00a5d9e5daa082c0.zip
build: fix hardcoded make in recursive make calls
Use the `$(MAKE)` macro to ensure that the same make program is used in the recursive invocation. Note: Most recursive calls already use `$(MAKE)`.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fdf83beb4..039dd6946 100644
--- a/Makefile
+++ b/Makefile
@@ -320,7 +320,7 @@ DISTFILES_TEST = test/Makefile test/apps test/apps-x11 test/apps-x11-xorg test/c
320dist: config.mk 320dist: config.mk
321 mv config.sh config.sh.old 321 mv config.sh config.sh.old
322 mv config.status config.status.old 322 mv config.status config.status.old
323 make distclean 323 $(MAKE) distclean
324 mv config.status.old config.status 324 mv config.status.old config.status
325 mv config.sh.old config.sh 325 mv config.sh.old config.sh
326 rm -fr $(TARNAME)-$(VERSION) $(TARNAME)-$(VERSION).tar.xz 326 rm -fr $(TARNAME)-$(VERSION) $(TARNAME)-$(VERSION).tar.xz
@@ -358,7 +358,7 @@ cppcheck: clean
358 358
359.PHONY: scan-build 359.PHONY: scan-build
360scan-build: clean 360scan-build: clean
361 scan-build make 361 scan-build $(MAKE)
362 362
363.PHONY: codespell 363.PHONY: codespell
364codespell: clean 364codespell: clean