Skip to content

Instantly share code, notes, and snippets.

@sepfy
Created August 30, 2020 05:48
Show Gist options
  • Save sepfy/6700e54ca97cb90fcaa827867d15e45b to your computer and use it in GitHub Desktop.
Save sepfy/6700e54ca97cb90fcaa827867d15e45b to your computer and use it in GitHub Desktop.
PWD := $(shell pwd)
KVERSION := $(shell uname -r)
KERNEL_DIR = /usr/src/linux-headers-$(KVERSION)/
MODULE_NAME = mydev
obj-m := $(MODULE_NAME).o
all:
make -C $(KERNEL_DIR) M=$(PWD) modules
clean:
make -C $(KERNEL_DIR) M=$(PWD) clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment