Makefile shell 中绝对路径的正确处理
目录
Makefile 与 shell(主要是 Bash) 中绝对路径的处理。
版权声明:本文为博主 xwi88 的原创文章,遵循 CC BY-NC 4.0 版权协议,禁止商用,转载请注明出处,欢迎关注 https://github.com/xwi88
Makefile
make version:
3.81
BASEDIR = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
|
Linux Shell
Bash version:
5.1
DIR=$(cd $(dirname $0) && pwd)
DIR=$(cd $(dirname $0); pwd)
DIR=$(cd dirname $0; pwd)
DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
ROOT_DIR="${DIR##*/}"
FILE_NAME=$(basename "$0")
警告
BASH_SOURCE
只适用于有 bash 环境
cat /etc/shells
本机支持shell
查看
实例
以上使用实例请参考: docker-compose-resources