1obj-m += hello.o
2
3all:
4	make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
5
6clean:
7	make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean
8