ifneq ($(KERNELRELEASE),)
obj-m:=xxxxx.o
else
KERNELDIR:=/lib/modules/$(shell uname -r)/build
PWD:=$(shell pwd)
default:
make -C $(KERNELDIR) M=$(PWD) modules
clean:
rm -rf *.o *.mod.c *.mod.o *.ko
endif
适配自己的Makefile 只需要修改 第二行的 xxxxx和自己的匹配即可。
---------------------