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