Makefile 716 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3
###
# 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,
4
# such as fix dependency file.
L
Linus Torvalds 已提交
5 6 7 8 9 10 11
# 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

12
hostprogs-y	:= fixdep docproc
L
Linus Torvalds 已提交
13 14 15 16
always		:= $(hostprogs-y)

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