makefile学习笔记(1)- @^$符号的意义
makefile的基本用法如下,target:components ------<依赖语句>TAB rule ------<规则语句>这两行一般同时出现。第一行表示的是依赖关系,举例:某个.o目标文件依赖几个.c和.h,那么可以这么写: main.o:main.c mytool1.h mytool2.h又...