]> git.ipfire.org Git - thirdparty/linux.git/blame - tools/testing/selftests/intel_pstate/Makefile
Merge tag 'drm/tegra/for-5.7-fixes' of git://anongit.freedesktop.org/tegra/linux...
[thirdparty/linux.git] / tools / testing / selftests / intel_pstate / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
ed2d26d7 2CFLAGS := $(CFLAGS) -Wall -D_GNU_SOURCE
93a4388b 3LDLIBS += -lm
ed2d26d7 4
6aa69043
DD
5uname_M := $(shell uname -m 2>/dev/null || echo not)
6ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
7
8ifeq (x86,$(ARCH))
29fa1d43 9TEST_GEN_FILES := msr aperf
67b2e30e 10endif
ed2d26d7 11
29fa1d43 12TEST_PROGS := run.sh
ed2d26d7 13
29fa1d43 14include ../lib.mk
ed2d26d7 15
29fa1d43 16$(TEST_GEN_FILES): $(HEADERS)