From 5da5f20b4d582cf0199277dcd09706bb6d22c4da Mon Sep 17 00:00:00 2001 From: Integral Date: Mon, 2 Dec 2024 17:44:57 +0800 Subject: [PATCH] chore: Replace make with $(MAKE) in example Makefile (#175) --- example/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/Makefile b/example/Makefile index 274e174d..d2fd59ef 100644 --- a/example/Makefile +++ b/example/Makefile @@ -4,8 +4,8 @@ KERNEL_BUILD=/lib/modules/$(VER)/build obj-m += lkm_example.o all: - make -C $(KERNEL_BUILD) M=$(PWD) modules + $(MAKE) -C $(KERNEL_BUILD) M=$(PWD) modules install: - make -C $(KERNEL_BUILD) M=$(PWD) modules_install + $(MAKE) -C $(KERNEL_BUILD) M=$(PWD) modules_install clean: - make -C $(KERNEL_BUILD) M=$(PWD) clean + $(MAKE) -C $(KERNEL_BUILD) M=$(PWD) clean