Skip to content

Commit

Permalink
chore: Replace make with $(MAKE) in example Makefile (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
Integral-Tech authored Dec 2, 2024
1 parent 4206db3 commit 5da5f20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5da5f20

Please sign in to comment.