Skip to content

Instantly share code, notes, and snippets.

@itrobotics
Last active August 29, 2015 14:19
Show Gist options
  • Save itrobotics/9f80c78a1d888e99f299 to your computer and use it in GitHub Desktop.
Save itrobotics/9f80c78a1d888e99f299 to your computer and use it in GitHub Desktop.
simple makefile example for hello.ko
obj-m += hello.o
KERNEL=/lib/modules/`uname -r`/build
all:
make -C $(KERNEL) M=$(shell pwd) modules V=1 ARCH=arm
clean:
make -C $(KERNEL) M=$(shell pwd) clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment