参考:http://blog.csdn.net/yusiguyuan/article/details/16951413
在Makefile中写shell代码有点诡异,和不同的shell语法不太一样,如果不了解,看Makefile会莫名其妙。下面总结了一些。
1:尽在Makefile文件的目标项冒号后的另起一行的代码才是shell代码。
eg:
xx = xx1 // 这里时makefile代码
yy:xx = xx2 // 这是是makefile代码,makefile允许变量赋值时,'='号两边留空格