brintos

brintos / linux-shallow public Read only

0
0
Text · 544 B · c382f57 Raw
19 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2# Makefile for amd-pstate/ function selftests3 4# No binaries, but make sure arg-less "make" doesn't trigger "run_tests"5all:6 7ARCH ?= $(shell uname -m 2>/dev/null || echo not)8ARCH := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/)9 10ifeq (x86,$(ARCH))11TEST_FILES += ../../../power/x86/amd_pstate_tracer/amd_pstate_trace.py12TEST_FILES += ../../../power/x86/intel_pstate_tracer/intel_pstate_tracer.py13endif14 15TEST_PROGS += run.sh16TEST_FILES += basic.sh tbench.sh gitsource.sh17 18include ../lib.mk19