-
KDIR:=/home/xqf/dvsdk/linux-2-6-18_pro500
-
CC = $(CROSS_COMPILE)gcc
-
.PHONY: modules clean
-
obj-m := hello.o
-
modules:
-
make -C $(KDIR) M=`pwd` modules
-
clean:
-
make -C $(KDIR) M=`pwd` modules clean
刚开始第9行 rm -f modules.order, make时出现错误Makefile:9: *** missing separator. Stop
,把第9行删除。make出现make:Nothing to be done for ‘modules’ 。./vimrc中tabstop=4也是对的,搜索了很多资料,终于找到解决方法。od -c Makefile 查看,发现没有制表符/t,而是用4个空格代替了。解决:在
./vimrc中把set expandtab注释掉,再修改Makefile中make前的制表符。make成功,
od -c Makefile也能看到制表符。终于可以开始学习Makefile啦
阅读(5998) | 评论(0) | 转发(0) |