https://github.com/torvalds/linux
Raw File
Tip revision: 36f90b0a2ddd60823fe193a85e60ff1906c2a9b3 authored by Linus Torvalds on 01 February 2016, 02:12:16 UTC
Linux 4.5-rc2
Tip revision: 36f90b0
Makefile
ifndef CROSS_COMPILE
# List of programs to build
hostprogs-$(CONFIG_X86) := disable-tsc-ctxt-sw-stress-test disable-tsc-on-off-stress-test disable-tsc-test
# Tell kbuild to always build the programs
always := $(hostprogs-y)

HOSTCFLAGS_disable-tsc-ctxt-sw-stress-test.o += -I$(objtree)/usr/include
HOSTCFLAGS_disable-tsc-on-off-stress-test.o += -I$(objtree)/usr/include
HOSTCFLAGS_disable-tsc-test.o += -I$(objtree)/usr/include
endif
back to top