mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-30 03:23:20 -05:00
Do not descend to sub-directories when unneeded. I used subdir-$(CONFIG_...) for hidraw, seccomp, and vfs because they only contain host programs. While we are here, let's add SPDX License tag, and sort the directories alphabetically. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
11 lines
249 B
Makefile
11 lines
249 B
Makefile
# List of programs to build
|
|
hostprogs-y := \
|
|
test-fsmount \
|
|
test-statx
|
|
|
|
# Tell kbuild to always build the programs
|
|
always := $(hostprogs-y)
|
|
|
|
HOSTCFLAGS_test-fsmount.o += -I$(objtree)/usr/include
|
|
HOSTCFLAGS_test-statx.o += -I$(objtree)/usr/include
|