mirror of
https://github.com/uutils/coreutils
synced 2024-12-04 18:39:52 +00:00
Merge pull request #1486 from vladimyr/recursive-make
Use `$(MAKE)` variable for recursive invocations
This commit is contained in:
commit
df44af2321
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue