include foo *.mk $(bar)
is equivalent to
include foo a.mk b.mk c.mk bish bash
想在该makefile中加入a.mk b.mk c.mk以及bar(其实就是等于用bish bash)
相关
include filenames...
filenames can contain shell file name patterns.
(问题:foo是什么?是该目录下的文件,还是创建的文件?还是其他的?)
override variable = value
override variable := value
override variable += value
override define variable
(其中定义时,override是什么意思?)
child processes.用于export
Tell make to export all variables to child processes by default.
See section Communicating Variables to a Sub-make.
export variable
export variable = value
export variable := value
export variable += value
unexport variable
Tell make whether or not to export a particular variable to child processes.
See section Communicating Variables to a Sub-make.
其中的export将特殊的变量传输到child processes
(child processes,export什么意思?)