diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-01 17:50:25 -0400 |
---|---|---|
committer | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-09 14:04:38 -0400 |
commit | e0318d85be66ff1ff55c4cbc832cb3ee9e669da8 (patch) | |
tree | c0617f5ec00b58626361104031ff124f254cb57d /scripts/Kbuild.include | |
parent | 55922c9d1b84b89cb946c777fddccb3247e7df2c (diff) |
kbuild: add `baseprereq'
On the same model as `basetarget', it represents the filename of first
prerequisite with directory and extension stripped.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Diffstat (limited to 'scripts/Kbuild.include')
-rw-r--r-- | scripts/Kbuild.include | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index be39cd1c74cf..d897278b1f97 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include | |||
@@ -21,6 +21,10 @@ depfile = $(subst $(comma),_,$(dot-target).d) | |||
21 | basetarget = $(basename $(notdir $@)) | 21 | basetarget = $(basename $(notdir $@)) |
22 | 22 | ||
23 | ### | 23 | ### |
24 | # filename of first prerequisite with directory and extension stripped | ||
25 | baseprereq = $(basename $(notdir $<)) | ||
26 | |||
27 | ### | ||
24 | # Escape single quote for use in echo statements | 28 | # Escape single quote for use in echo statements |
25 | escsq = $(subst $(squote),'\$(squote)',$1) | 29 | escsq = $(subst $(squote),'\$(squote)',$1) |
26 | 30 | ||