From bba5f43ce50f2761523418880390733a2efac4d4 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Mon, 22 Feb 2016 14:17:11 -0700 Subject: [PATCH] kperf: use $(MAKE) to invoke make Change-Id: I51e587abe2c032ff97ea3133e53dd3bc36dd58cf Signed-off-by: Daniel Verkamp --- examples/ioat/kperf/kmod/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ioat/kperf/kmod/Makefile b/examples/ioat/kperf/kmod/Makefile index 350ddac4f..e32921912 100644 --- a/examples/ioat/kperf/kmod/Makefile +++ b/examples/ioat/kperf/kmod/Makefile @@ -37,6 +37,6 @@ dmaperf-y := dma_perf.o KDIR := /lib/modules/$(shell uname -r)/build all: - make -C $(KDIR) M=$(shell pwd) modules + $(MAKE) -C $(KDIR) M=$(shell pwd) modules clean: - make -C $(KDIR) M=$(shell pwd) clean + $(MAKE) -C $(KDIR) M=$(shell pwd) clean