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

后文待续

原文地址:https://www.cnblogs.com/gaojian/p/2684481.html