13 lines · plain
1# SPDX-License-Identifier: GPL-2.02ifndef CROSS_COMPILE3uname_M := $(shell uname -m 2>/dev/null || echo not)4ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)5 6ifeq ($(ARCH),x86)7TEST_GEN_PROGS := power_floor_test8 9include ../../../lib.mk10 11endif12endif13