blob: 80836cfb5885ebfa706b4dc81dc7d1e199516177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
###
# scripts contains sources for various helper programs used throughout
# the kernel for the build process.
# ---------------------------------------------------------------------------
hostprogs-y += usage
always := $(hostprogs-y)
# Let clean descend into subdirs
subdir- += basic kconfig
HOSTCFLAGS_usage.o = -I$(srctree)/include
|