https://jxself.org/git/linux-libre.git
Raw File
Tip revision: b03b2359db615a2e1684b7866eebabf8f24fc7ba authored by Jason Self on 08 December 2013, 16:19:03 UTC
Linux-libre 3.12.4-gnu
Tip revision: b03b235
Makefile
###
# Makefile.basic lists the most basic programs used during the build process.
# The programs listed herein are what are needed to do the basic stuff,
# such as fix file dependencies.
# 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

hostprogs-y	:= fixdep
always		:= $(hostprogs-y)

# fixdep is needed to compile other host programs
$(addprefix $(obj)/,$(filter-out fixdep,$(always))): $(obj)/fixdep
back to top