GNU make manual 翻译(四十一)

简介:
继续翻译

   For example, if you have three `.mk' files, `a.mk', `b.mk', and 
`c.mk', and `$(bar)' expands to `bish bash', then the following                    
expression         
     include foo *.mk $(bar)
   is equivalent to 
     include foo a.mk b.mk c.mk bish bash                    
例如,如果你有三个 .mk文件,a.mk, b.mk, c.mk, 并且 $(bar) 会被展开为 bish bash,那么如下的表达式:

      include foo *.mk $(bar)

等同于:

     include foo  a.mk  b.mk  c.mk  bish bash

后文待续


本文转自健哥的数据花园博客园博客,原文链接:http://www.cnblogs.com/gaojian/archive/2012/09/14/2684481.html,如需转载请自行联系原作者
目录
相关文章
|
Linux C语言
make: gcc:命令未找到
make: gcc:命令未找到
make: gcc:命令未找到
|
C语言 C++ Perl
如何处理错误消息Please install the gcc make perl packages
如何处理错误消息Please install the gcc make perl packages
153 0