summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2003-02-18 23:02:59 -0600
committerKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2003-02-18 23:02:59 -0600
commit4339cd9a6e06ab6fae922e49948176fff5c79450 (patch)
tree56d3cc7b47fce5f8a48a90c47b8df0780ad713cb /scripts
parentffb5450c435e42e0eaa206cb13e6f4731e0f3ba8 (diff)
kbuild: Remove scripts/elfconfig.h with "make clean"
We have a bit of a mess with build-targets, EXTRA_TARGETS, targets, which needs cleaning up some time. Anyway, we just add $(targets) to the files which get deleted with "make clean" for now.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile2
-rw-r--r--scripts/Makefile.clean2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Makefile b/scripts/Makefile
index 9f716b01b425..c9bfe6dd2156 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -5,7 +5,7 @@
# fix-dep: Used to generate dependency information during build process
# split-include: Divide all config symbols up in a number of files in
# include/config/...
-# docproc: Preprocess .tmpl file in order to generate .sgml documentation
+# 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 \
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean
index 07af41d7933e..b88e5e494a49 100644
--- a/scripts/Makefile.clean
+++ b/scripts/Makefile.clean
@@ -35,7 +35,7 @@ subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn))
# ==========================================================================
-__clean-files := $(wildcard $(EXTRA_TARGETS) $(host-progs) $(clean-files))
+__clean-files := $(wildcard $(EXTRA_TARGETS) $(host-progs) $(clean-files) $(targets))
quiet_cmd_clean = CLEAN $(obj)
cmd_clean = rm -f $(__clean-files); $(clean-rule)