mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
2e3646e51b
Now that kconfig can load multiple configurations, it becomes simple to integrate the split config step, by simply comparing the new .config file with the old auto.conf (and then saving the new auto.conf). A nice side effect is that this saves a bit of disk space and cache, as no data needs to be read from or saved into the splitted config files anymore (e.g. include/config is now 648KB instead of 5.2MB). Signed-off-by: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
16 lines
716 B
Makefile
16 lines
716 B
Makefile
###
|
|
# Makefile.basic list the most basic programs used during the build process.
|
|
# The programs listed herein is what is needed to do the basic stuff,
|
|
# such as fix dependency file.
|
|
# This initial step is needed to avoid files to be recompiled
|
|
# when kernel configuration changes (which is what happens when
|
|
# .config is included by main Makefile.
|
|
# ---------------------------------------------------------------------------
|
|
# fixdep: Used to generate dependency information during build process
|
|
# docproc: Used in Documentation/docbook
|
|
|
|
hostprogs-y := fixdep docproc
|
|
always := $(hostprogs-y)
|
|
|
|
# fixdep is needed to compile other host programs
|
|
$(addprefix $(obj)/,$(filter-out fixdep,$(always))): $(obj)/fixdep
|