linux – 使用$(basename $(notdir $@))了解Makefile

前端之家收集整理的这篇文章主要介绍了linux – 使用$(basename $(notdir $@))了解Makefile前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试了解一个Makefile,但是我不明白配方的意见.
...
...
sample.a:
    cd ../$(basename $(notdir $@)) && make    ##i don't understand this
...
...

我还是个新手.你可以给我一个很简单的解释:

$(basename $(notdir $@))

解决方法

如果你打破它:

$(notdir $@)从文件名中删除路径,只留下文件名(所以/x/y/foo.a变成foo.a)
$(basename …)带走了扩展名(所以foo.a变成foo)

这里有一个体面的参考:http://www.gnu.org/software/make/manual/html_node/File-Name-Functions.html

原文链接:https://www.f2er.com/linux/393707.html

猜你在找的Linux相关文章