7 lines
109 B
Makefile
7 lines
109 B
Makefile
|
obj-m += hello.o
|
||
|
|
||
|
KDIR := /usr/src/linux-headers-$(shell uname -r)
|
||
|
|
||
|
%:
|
||
|
$(MAKE) -Wall -C $(KDIR) M=$(PWD) $@
|