Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29fa1d43 authored by Stafford Horne's avatar Stafford Horne Committed by Shuah Khan
Browse files

selftests/intel_pstate: Update makefile to match new style



Recent changes from Bamvor (88baa78d) have standardized the
variable names like TEST_GEN_FILES and removed the need for make targets
all and clean.

These changes bring the intel_pstate test inline with those changes.

Cc: Prarit Bhargava <prarit@redhat.com>
Signed-off-by: default avatarStafford Horne <shorne@gmail.com>
Signed-off-by: default avatarShuah Khan <shuahkh@osg.samsung.com>
parent aff985fd
Loading
Loading
Loading
Loading
+4 −9
Original line number Diff line number Diff line
CC := $(CROSS_COMPILE)gcc
CFLAGS := $(CFLAGS) -Wall -D_GNU_SOURCE
LDFLAGS := $(LDFLAGS) -lm

TARGETS := msr aperf
TEST_GEN_FILES := msr aperf

TEST_PROGS := $(TARGETS) run.sh
TEST_PROGS := run.sh

.PHONY: all clean
all: $(TARGETS)
include ../lib.mk

$(TARGETS): $(HEADERS)

clean:
	rm -f $(TARGETS)
$(TEST_GEN_FILES): $(HEADERS)