summaryrefslogtreecommitdiff
path: root/scripts/Makefile
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
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')
-rw-r--r--scripts/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/Makefile b/scripts/Makefile
index cf1ba16eb69c..658b93f061ac 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -8,11 +8,11 @@
# docproc: Preprocess .tmpl file in order to generate .sgml docs
# conmakehash: Create arrays for initializing the kernel console tables
-host-progs := fixdep split-include conmakehash docproc kallsyms modpost \
- mk_elfconfig
-build-targets := $(host-progs) empty.o
+host-progs := fixdep split-include conmakehash docproc kallsyms modpost \
+ mk_elfconfig
+always := $(host-progs) empty.o
-modpost-objs := modpost.o file2alias.o
+modpost-objs := modpost.o file2alias.o
subdir-$(CONFIG_MODVERSIONS) += genksyms
@@ -20,7 +20,7 @@ subdir-$(CONFIG_MODVERSIONS) += genksyms
subdir- += lxdialog kconfig
# fixdep is needed to compile other host programs
-$(addprefix $(obj)/,$(filter-out fixdep,$(build-targets)) $(subdir-y)): $(obj)/fixdep
+$(addprefix $(obj)/,$(filter-out fixdep,$(always)) $(subdir-y)): $(obj)/fixdep
# dependencies on generated files need to be listed explicitly