selftests/intel_pstate: Update makefile to match new style

Recent changes from Bamvor (88baa78d1f) 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: Stafford Horne <shorne@gmail.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
This commit is contained in:
Stafford Horne 2017-01-12 00:16:06 +09:00 коммит произвёл Shuah Khan
Родитель aff985fd07
Коммит 29fa1d436e
1 изменённых файлов: 4 добавлений и 9 удалений

Просмотреть файл

@ -1,15 +1,10 @@
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)