makefile中$(notdir $(shell pwd))什么作用
时间: 2024-06-13 12:06:12 浏览: 209
shell脚本与Makefile区别.docx
`$(notdir $(shell pwd))`在Makefile中的作用是获取当前工作目录的名称,即去除当前工作目录的路径,只保留最后的目录名。其中,`$(shell pwd)`用于获取当前工作目录的路径,`$(notdir)`函数用于去除路径,只保留目录名。
举个例子,如果当前工作目录的路径为`/home/user/project/src`,那么`$(notdir $(shell pwd))`的值就是`src`。
阅读全文