分类:
2009-07-30 19:09:08
obj-m : = test.o
KERNELDIR := /lib/modules/$(shell uname -r)/build
default:
(tab键)make -C $(KERNELDIR) M=$(shell pwd) modules
install:
insmod test.ko
uninstall:
rmmod test.ko
clean:
make -C $(KERNELDIR) M=$(shell pwd) clean