1.Makefile模板
#generate the path
CURRENT_PATH:=$(shell pwd)
#the absolute path
LINUX_KERNEL_PATH:=/home/steven/PCU/linux-2.6.35.3
#complie object
all:
make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) modules
clean:
make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) clean
obj-m +=hello.o
2.关键词解释
(1) shell pwd: 会取得当前工作路径
(2) LINUX_KERNEL_PATH: 该变量便是当前内核的源代码目录
(3) CURRENT_PATH: 当前模块程序代码目录(假设为:/home/study/prog/mod/hello/)
(4) make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) modules //编译模块,首先改变目录到-C选项指定的位置(即内核源代码目录),M=选项让该Makefile在构造modules 目标之前返回到模块程序代码目录;然后,modules目标指向obj-m变量中设定的模块
在上面的例子中,我们将该变量设置成hello.o
3.编译说明
由于make后面没有目标,所以make会在Makefile中的第一个不是以.开头的目标作为默认的目标执行,于是all成为make的目标。
make会执行 make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) modules ,假设当前内核版本的路径为/home/steven/PCU/linux-2.6.35.3,所以整句话实际运行的是
make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) modules <==> make -C /home/steven/PCU/linux-2.6.35.3 M=/home/study/prog/mod/hello/ modules
-C 表示到存放内核的目录执行其makefile;
M=$(CURRENT_PATH) 表示返回到当前目录,再次执行makefile
modules 表示翻译成模块的意思
obj-m +=hello.o 表示会将hello.o目标编译成hello.ko模块,换模块的时候只需要把hello.o换成对应的目标文件即可
参考博客:http://blog.csdn.net/shanzhizi/article/details/8626474