build: Use $(MAKE) instead of direct call to make 83/41083/2
authorRenato Botelho do Couto <[email protected]>
Wed, 5 Jun 2024 18:11:46 +0000 (18:11 +0000)
committerDamjan Marion <[email protected]>
Mon, 10 Jun 2024 13:13:31 +0000 (13:13 +0000)
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 <[email protected]>
Makefile
build-root/Makefile
build/external/Makefile
build/external/packages/ipsec-mb.mk
build/external/packages/xdp-tools.mk
docs/Makefile
extras/hs-test/Makefile
extras/strongswan/vpp_sswan/Makefile

index 1ab387e..18908fa 100644 (file)
--- 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:
index d69a94c..df4434d 100644 (file)
@@ -997,7 +997,7 @@ $(PLATFORM_IMAGE_DIR)/ro.img ro-image: $(patsubst %,%-find-source,$(ROOT_PACKAGE
                | xargs sign $($(PLATFORM)_public_key)                  \
                             $($(PLATFORM)_private_key_passphrase) ;    \
          fi ;                                                          \
-         : make read-only file system ;                                \
+         : $(MAKE) read-only file system ;                             \
          mksquashfs                                                    \
            $${tmp_dir} $${ro_image}                                    \
            -no-exports -no-progress -no-recovery ;                     \
index 046dd74..3cb7b47 100644 (file)
@@ -94,7 +94,7 @@ build-deb: $(DEV_DEB)
 
 install-deb:
 ifneq ($(INSTALLED_VER),$(DEB_VER)-$(PKG_SUFFIX))
-       @make $(DEV_DEB)
+       @$(MAKE) $(DEV_DEB)
        @sudo dpkg -i $(DEV_DEB)
 else
        @echo "=========================================================="
@@ -175,7 +175,7 @@ ifeq ($(INSTALLED_VER)$(INSTALLED_RPM_VER),)
        $(MAKE) config
 else
 ifneq ($(INSTALLED_VER),)
-       make check-deb
+       $(MAKE) check-deb
 endif
 ifneq ($(INSTALLED_RPM_VER),)
        $(MAKE) check-rpm
index d38f2e3..ffdbcd2 100644 (file)
@@ -32,7 +32,7 @@ define  ipsec-mb_config_cmds
 endef
 
 define  ipsec-mb_build_cmds
-       @make -C $(ipsec-mb_src_dir)/lib -j \
+       @$(MAKE) -C $(ipsec-mb_src_dir)/lib -j \
          SHARED=n \
          SAFE_PARAM=n \
          SAFE_LOOKUP=n \
index b65ae13..b928597 100644 (file)
@@ -24,15 +24,15 @@ define  xdp-tools_config_cmds
 endef
 
 define  xdp-tools_build_cmds
-       @cd ${xdp-tools_src_dir} && make V=1 BUILD_STATIC_ONLY=y > $(xdp-tools_build_log)
+       @cd ${xdp-tools_src_dir} && $(MAKE) V=1 BUILD_STATIC_ONLY=y > $(xdp-tools_build_log)
 endef
 
 define  xdp-tools_install_cmds
        @rm -f $(xdp-tools_install_log)
        @cd ${xdp-tools_src_dir} && \
-               make -C lib/libbpf/src install V=1 BUILD_STATIC_ONLY=y PREFIX='' DESTDIR='$(xdp-tools_install_dir)' >> $(xdp-tools_install_log)
+               $(MAKE) -C lib/libbpf/src install V=1 BUILD_STATIC_ONLY=y PREFIX='' DESTDIR='$(xdp-tools_install_dir)' >> $(xdp-tools_install_log)
        @cd ${xdp-tools_src_dir} && \
-               make libxdp_install V=1 BUILD_STATIC_ONLY=y PREFIX='' DESTDIR='$(xdp-tools_install_dir)' >> $(xdp-tools_install_log)
+               $(MAKE) libxdp_install V=1 BUILD_STATIC_ONLY=y PREFIX='' DESTDIR='$(xdp-tools_install_dir)' >> $(xdp-tools_install_log)
 endef
 
 $(eval $(call package,xdp-tools))
index 01e8d65..9f20935 100644 (file)
@@ -70,7 +70,7 @@ venv:
 spell: venv
        @( \
          . ${VENV_DIR}/bin/activate; \
-         make -C ${SCRIPTS_DIR} generate && \
+         $(MAKE) -C ${SCRIPTS_DIR} generate && \
          $(SPHINXBUILD) -b spelling $(SPHINXOPTS) $(BUILDDIR_SRC) $(BUILDDIR_OUT); \
        )
 
@@ -81,7 +81,7 @@ rebuild-spell: clean spell
 docs: venv
        @( \
          . ${VENV_DIR}/bin/activate; \
-         make -C ${SCRIPTS_DIR} generate && \
+         $(MAKE) -C ${SCRIPTS_DIR} generate && \
          $(SPHINXBUILD) $(SPHINXOPTS) -b html $(BUILDDIR_SRC) $(BUILDDIR_OUT); \
        )
 
@@ -90,7 +90,7 @@ rebuild: clean docs
 
 .PHONY: clean
 clean:
-       @make -C ${SCRIPTS_DIR} clean
+       @$(MAKE) -C ${SCRIPTS_DIR} clean
 
 .PHONY: build
 build: docs
index dc34e53..d459d9d 100644 (file)
@@ -87,15 +87,15 @@ list-tests:
 
 .PHONY: build-vpp-release
 build-vpp-release:
-       @make -C ../.. build-release
+       @$(MAKE) -C ../.. build-release
 
 .PHONY: build-vpp-debug
 build-vpp-debug:
-       @make -C ../.. build
+       @$(MAKE) -C ../.. build
 
 .PHONY: build-vpp-gcov
 build-vpp-gcov:
-       @make -C ../.. build-vpp-gcov
+       @$(MAKE) -C ../.. build-vpp-gcov
 
 .build.ok: build
        @touch .build.ok
@@ -129,7 +129,7 @@ test-cov: .deps.ok .build.cov.ok
        -bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) \
                --unconfigure=$(UNCONFIGURE) --debug=$(DEBUG) --test=$(TEST-HS) --cpus=$(CPUS) \
                --vppsrc=$(VPPSRC)
-       @make -C ../.. test-cov-post HS_TEST=1
+       @$(MAKE) -C ../.. test-cov-post HS_TEST=1
        @bash ./script/compress.sh
 
 .PHONY: build-go
@@ -155,7 +155,7 @@ build-debug: .deps.ok build-vpp-debug build-go
        @touch .build.ok
 
 .deps.ok:
-       @sudo make install-deps
+       @sudo $(MAKE) install-deps
 
 .PHONY: install-deps
 install-deps:
index 254b90b..85fb506 100644 (file)
@@ -76,8 +76,8 @@ install-swan:
          echo "SSWAN not downloaded, please run "make" or "make pull-swan" first." ; \
          exit 1 ; \
        fi
-       cd ${SWANDIR} && make -j$(nproc)
-       cd ${SWANDIR} && sudo make install
+       cd ${SWANDIR} && $(MAKE) -j$(nproc)
+       cd ${SWANDIR} && sudo $(MAKE) install
 
 # check if VPP is installed
 ifneq ($(shell test "$(shell ldconfig -p | grep vppinfra.so | awk 'NR==1{print $$1;}')" && echo "yes"), yes)