From: Stafford Horne Date: Wed, 11 Jan 2017 15:16:06 +0000 (+0900) Subject: selftests/intel_pstate: Update makefile to match new style X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=29fa1d436e96954ebcdac0beecb2e0d96c26350d;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git selftests/intel_pstate: Update makefile to match new style Recent changes from Bamvor (88baa78d1f318) 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 Signed-off-by: Stafford Horne Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/intel_pstate/Makefile b/tools/testing/selftests/intel_pstate/Makefile index f5f1a28715ff..19678e90efb2 100644 --- a/tools/testing/selftests/intel_pstate/Makefile +++ b/tools/testing/selftests/intel_pstate/Makefile @@ -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)