Skip to content

Commit

Permalink
Merge pull request #4 from Integral-Tech/makefile-refactor
Browse files Browse the repository at this point in the history
refactor: replace make with $(MAKE) in Makefile
  • Loading branch information
ferstar authored Dec 20, 2024
2 parents 9d3acd8 + 0f512d1 commit 19a8139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ MODULE_NAME = ideapad-laptop-tb
obj-m := $(MODULE_NAME).o

all:
make -C $(KERNEL_DIR)/build/ M=$(PWD) modules
$(MAKE) -C $(KERNEL_DIR)/build/ M=$(PWD) modules
clean:
make -C $(KERNEL_DIR)/build/ M=$(PWD) clean
$(MAKE) -C $(KERNEL_DIR)/build/ M=$(PWD) clean

install:
sudo insmod ideapad-laptop-tb.ko
Expand Down

0 comments on commit 19a8139

Please sign in to comment.