makefile 当前工作目录 当前路径
时间: 2023-08-31 21:10:16 浏览: 248
多级目录Makefile示例
makefile 中的当前工作目录和当前路径可以使用 makefile 中的内置变量来获取。
当前工作目录可以使用内置变量 $(CURDIR) 来获取,例如:
```
$(info Current working directory is $(CURDIR))
```
而当前路径可以使用内置变量 $(abspath path) 来获取,其中 path 是相对路径或绝对路径。例如:
```
$(info Absolute path of current directory is $(abspath .))
```
这两个变量都是 makefile 中的内置变量,无需定义即可使用。
阅读全文