blob: 848f16d3c4dae1a652db17bb6e63e43ddcdc657f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Masahiro Yamada22433fc2014-02-04 17:24:27 +09002###
3# Makefile.basic lists the most basic programs used during the build process.
4# The programs listed herein are what are needed to do the basic stuff,
5# such as fix file dependencies.
6# This initial step is needed to avoid files to be recompiled
7# when kernel configuration changes (which is what happens when
8# .config is included by main Makefile.
9# ---------------------------------------------------------------------------
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020010# fixdep: Used to generate dependency information during build process
Masahiro Yamada22433fc2014-02-04 17:24:27 +090011
12hostprogs-y := fixdep
13always := $(hostprogs-y)
14
15# fixdep is needed to compile other host programs
16$(addprefix $(obj)/,$(filter-out fixdep,$(always))): $(obj)/fixdep