mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +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
|
${CARGO} build ${CARGOFLAGS} --features "${EXES}" ${PROFILE_CMD} --no-default-features
|
||||||
|
|
||||||
build-manpages:
|
build-manpages:
|
||||||
cd $(DOCSDIR) && make man
|
cd $(DOCSDIR) && $(MAKE) man
|
||||||
|
|
||||||
build: build-uutils build-pkgs build-manpages
|
build: build-uutils build-pkgs build-manpages
|
||||||
|
|
||||||
|
@ -294,7 +294,7 @@ endif
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(BUILDDIR)
|
$(RM) $(BUILDDIR)
|
||||||
cd $(DOCSDIR) && make clean
|
cd $(DOCSDIR) && $(MAKE) clean
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
$(CARGO) clean $(CARGOFLAGS) && $(CARGO) update $(CARGOFLAGS)
|
$(CARGO) clean $(CARGOFLAGS) && $(CARGO) update $(CARGOFLAGS)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue