Commit bba5f43c authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

kperf: use $(MAKE) to invoke make



Change-Id: I51e587abe2c032ff97ea3133e53dd3bc36dd58cf
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent ab7541d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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