1 # SPDX-License-Identifier: GPL-2.0 2 ifndef CROSS_COMPILE 3 uname_M := $(shell uname -m 2>/dev/null || echo not) 4 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) 5 6 ifeq ($(ARCH),x86) 7 TEST_GEN_PROGS := power_floor_test 8 9 include ../../../lib.mk 10 11 endif 12 endif
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.