Skip to content

Instantly share code, notes, and snippets.

@jrelo
Created April 24, 2016 02:38
Show Gist options
  • Save jrelo/bd5762fd8231e015e54821bcf3c8f784 to your computer and use it in GitHub Desktop.
Save jrelo/bd5762fd8231e015e54821bcf3c8f784 to your computer and use it in GitHub Desktop.
Basic linux kernel module Makefile.
obj-m += test_module.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment