Merge pull request #1486 from vladimyr/recursive-make

Use `$(MAKE)` variable for recursive invocations
This commit is contained in:
Sylvestre Ledru 2020-05-01 10:45:28 +02:00 committed by GitHub
commit df44af2321
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -261,7 +261,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
@ -294,7 +294,7 @@ endif
clean:
$(RM) $(BUILDDIR)
cd $(DOCSDIR) && make clean
cd $(DOCSDIR) && $(MAKE) clean
distclean: clean
$(CARGO) clean $(CARGOFLAGS) && $(CARGO) update $(CARGOFLAGS)