diff options
author | Sam Ravnborg <sam@mars.(none)> | 2005-07-25 08:51:08 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@mars.(none)> | 2005-07-25 08:51:08 -0400 |
commit | 7c6b155fb49fbc63e0b30a1d49552693c0b45be7 (patch) | |
tree | 55451f57b3963421522a2662bc3d537f6b58f5cd /scripts | |
parent | 43af5f23354dbd67d2fd2d523eefad8053ac388b (diff) |
kbuild: drop descend - converting existing users
There was only two users left of descend. Fix them so they
use $(clean)= and $(build)=.
Drop definition of descend.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
---
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.lib | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 7cf75cc4f849..6e079f38a2c6 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
@@ -229,11 +229,6 @@ if_changed_rule = $(if $(strip $? $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ),\ | |||
229 | 229 | ||
230 | cmd = @$(if $($(quiet)cmd_$(1)),echo ' $(subst ','\'',$($(quiet)cmd_$(1)))' &&) $(cmd_$(1)) | 230 | cmd = @$(if $($(quiet)cmd_$(1)),echo ' $(subst ','\'',$($(quiet)cmd_$(1)))' &&) $(cmd_$(1)) |
231 | 231 | ||
232 | # $(call descend,<dir>,<target>) | ||
233 | # Recursively call a sub-make in <dir> with target <target> | ||
234 | # Usage is deprecated, because make do not see this as an invocation of make. | ||
235 | descend =$(Q)$(MAKE) -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj=$(1) $(2) | ||
236 | |||
237 | # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj= | 232 | # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj= |
238 | # Usage: | 233 | # Usage: |
239 | # $(Q)$(MAKE) $(build)=dir | 234 | # $(Q)$(MAKE) $(build)=dir |