summaryrefslogtreecommitdiff
path: root/scripts/Makefile.lib
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.ravnborg.org>2003-03-11 00:03:40 +0100
committerSam Ravnborg <sam@mars.ravnborg.org>2003-03-11 00:03:40 +0100
commit87b2da2b95644551d44dce487b818155bd4b0f9c (patch)
treeb1344c7dd551c8127bd9ffcec98302aa4b7879c1 /scripts/Makefile.lib
parentf94e5fd7e5d09a56a60670a9bb211a791654bba8 (diff)
kbuild: build-targets replaced with always
The former name "kbuild-targets" did not give the user the intuitive feeling that this target will be build regards less of any dependencies no matter if we compile modules or not. The new name "always" imply that this will be build always, and tus is more informative. Fixed the few users of build-targets, and added a warning in Makefile.build
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r--scripts/Makefile.lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index 81952e85d25f..5d4b44b7150a 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -87,7 +87,7 @@ host-cshobjs := $(sort $(foreach m,$(host-cshlib),$($(m:.so=-objs))))
# Add subdir path
extra-y := $(addprefix $(obj)/,$(extra-y))
-build-targets := $(addprefix $(obj)/,$(build-targets))
+always := $(addprefix $(obj)/,$(always))
targets := $(addprefix $(obj)/,$(targets))
obj-y := $(addprefix $(obj)/,$(obj-y))
obj-m := $(addprefix $(obj)/,$(obj-m))