sz0802 发表于 2009-5-14 14:03:34

u-boot makefile问题

各位大侠,我在u-boot的fs文件夹下添加了一个sourc文件夹,里面test1.c,test2.c文件
之前fs下的makefile文件如下:
SUBDIRS        := jffs2 cramfs fdos fat reiserfs ext2

.depend all:
        @for dir in $(SUBDIRS) ; do \
                $(MAKE) -C $$dir $@ ; done
请问我如何修改fs下的makefile文件呢?

zbluecn 发表于 2009-5-14 16:25:42

你要在 sourc 添加Makefile文件


SUBDIRS      := jffs2 cramfs fdos fat reiserfs ext2 后面加上你的目录名字

SUBDIRS      := jffs2 cramfs fdos fat reiserfs ext2 sourc
页: [1]
查看完整版本: u-boot makefile问题