本帖最后由 zhouxinfengone 于 2009-12-01 19:36:51 编辑

解决方案 »

  1.   


    build/core/pathmap.mk
    里有定义楼主加分吧,我发贴都是100分100分的给还没人回
      

  2.   

    build/core/pathmap.mk' 61行
     include-path-for = $(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
      

  3.   

    pathmap.mk中定义了一个列表pathmap_INCL,列表中每项是"短名:路径"对。命令include-path-for使用这个 pathmap_INCL列表,输入短名,得到路径。你可以在这个列表中添加自己的对。使用$(call include-path-for, <短名>)就可以得到路径。