Makefile简要分析
所有这些目录的编译连接都是由顶层目录的makefile来确定的。
1.在makefile中有:
unconfig:
@rm -f $(obj)include/config.h $(obj)include/config.mk \
$(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
%是个通配符,make xxx_config都是这个目标.目标的依赖是unconfig,
unconfig的命令是删除一些文件,而这些文正是从make xxx_config过程中产生的.unconfig就是清理配置的.
MKCONFIG := $(SRCTREE)/mkconfig
100ask2