Use $(MAKE) variable for recursive invocations

This commit is contained in:
Dario Vladovic 2020-04-28 04:20:20 +02:00
parent f734d48405
commit 3f03e5fa3c
No known key found for this signature in database
GPG key ID: 87F43AAF74B61286

View file

@ -260,7 +260,7 @@ build-uutils:
${CARGO} build ${CARGOFLAGS} --features "${EXES}" ${PROFILE_CMD} --no-default-features
build-manpages:
cd $(DOCSDIR) && make man
cd $(DOCSDIR) && $(MAKE) man
build: build-uutils build-pkgs build-manpages
@ -293,7 +293,7 @@ endif
clean:
$(RM) $(BUILDDIR)
cd $(DOCSDIR) && make clean
cd $(DOCSDIR) && $(MAKE) clean
distclean: clean
$(CARGO) clean $(CARGOFLAGS) && $(CARGO) update $(CARGOFLAGS)