aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Delgadillo <adelg@google.com>2021-02-02 21:56:11 +0000
committerAndrew G. Morgan <morgan@kernel.org>2021-02-02 18:22:34 -0800
commit9c740a5e26a5faf4440ef19e659b2c8ffe9330d2 (patch)
treea20721fe4dc1317638b8b69c2b693d4d0afe4c38 /Makefile
parentdf5a19910839f91061fe2c986b004da64aac85d4 (diff)
downloadlibcap-9c740a5e26a5faf4440ef19e659b2c8ffe9330d2.tar.gz
libcap: Use $(MAKE) instead of make
Using naked make causes make to emit jobserver warning. So replace uses of naked make with $(MAKE) to avoid these warnings. Signed-off-by: Andrew Delgadillo <adelg@google.com> Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 13 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 53ee901..7150b9b 100644
--- a/Makefile
+++ b/Makefile
@@ -42,32 +42,32 @@ release: distclean
cd .. && ln -s libcap libcap-$(VERSION).$(MINOR) && tar cvf libcap-$(VERSION).$(MINOR).tar --exclude patches libcap-$(VERSION).$(MINOR)/* && rm libcap-$(VERSION).$(MINOR)
test: all
- make -C libcap $@
- make -C tests $@
+ $(MAKE) -C libcap $@
+ $(MAKE) -C tests $@
ifneq ($(PAM_CAP),no)
$(MAKE) -C pam_cap $@
endif
ifeq ($(GOLANG),yes)
- make -C go $@
+ $(MAKE) -C go $@
endif
- make -C progs $@
+ $(MAKE) -C progs $@
sudotest: all
- make -C tests $@
+ $(MAKE) -C tests $@
ifneq ($(PAM_CAP),no)
$(MAKE) -C pam_cap $@
endif
ifeq ($(GOLANG),yes)
- make -C go $@
+ $(MAKE) -C go $@
endif
- make -C progs $@
+ $(MAKE) -C progs $@
distcheck:
./distcheck.sh
- make DYNAMIC=yes clean all test sudotest
- make CC=/usr/local/musl/bin/musl-gcc clean all test sudotest
- make clean all test sudotest
- make distclean
+ $(MAKE) DYNAMIC=yes clean all test sudotest
+ $(MAKE) CC=/usr/local/musl/bin/musl-gcc clean all test sudotest
+ $(MAKE) clean all test sudotest
+ $(MAKE) distclean
morgangodoc:
@echo "Now the release is made, you want to remember to run:"
@@ -84,7 +84,7 @@ morganrelease: distcheck
git tag -u D41A6DF2 -s v$(GOMAJOR).$(VERSION).$(MINOR) -m "This is the version tag for the 'libcap' Go base directory associated with libcap-$(VERSION).$(MINOR)."
git tag -u D41A6DF2 -s psx/v$(GOMAJOR).$(VERSION).$(MINOR) -m "This is the version tag for the 'psx' Go package associated with libcap-$(VERSION).$(MINOR)."
git tag -u D41A6DF2 -s cap/v$(GOMAJOR).$(VERSION).$(MINOR) -m "This is the version tag for the 'cap' Go package associated with libcap-$(VERSION).$(MINOR)."
- make release
+ $(MAKE) release
@echo "sign the tar file using korg key"
cd .. && gpg -sba -u E2CCF3F4 libcap-$(VERSION).$(MINOR).tar
- make morgangodoc
+ $(MAKE) morgangodoc