标签:
1.vim Makefile 或 vim makefile
2.
targetName:a.o b.o #targetFileName:A.c B.c ,split with a space
gcc #gcc command,startwith a ‘\t‘
a.o:a.c depency.h
gcc ...
clean: # execute the following command when run "make clean" in CLI
rm ...
3.定义宏()变量
VARNAME= VALUE
调用${VARNAME}
4.内置宏(略解释)
$^ 、 $@ 、 $< 、$+ 、$? 、$*
5.执行make targetName,在当前目录下找Makefile或makefile且第一个target为targetName的文件执行
标签:
原文地址:http://www.cnblogs.com/lyuavery/p/5348037.html