https://github.com/torvalds/linux
Raw File
Tip revision: 2a24ab628aa7b190be32f63dfb6d96f3fb61580a authored by Linus Torvalds on 25 May 2005, 03:31:20 UTC
Linux 2.6.12-rc5
Tip revision: 2a24ab6
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 splitting .config and 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
# split-include: Divide all config symbols up in a number of files in
#                include/config/...
# docproc:	 Used in Documentation/docbook

hostprogs-y	:= fixdep split-include docproc
always		:= $(hostprogs-y)

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