Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save abhishekjiitr/f2101e70b9afab013042b9977b9b1826 to your computer and use it in GitHub Desktop.
Save abhishekjiitr/f2101e70b9afab013042b9977b9b1826 to your computer and use it in GitHub Desktop.
Medium Blog Linux Kernel Module Programming Supporting Code
# Makefile
obj-m += hello.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) cleanvv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment