shell make $makefile_cm_para $makefile_dumpfsdb_para $makefile_dumpvpd_para $makefile_seed_para是什么意思
时间: 2023-07-29 09:14:47 浏览: 120
这是一条在 shell 中执行的命令,其中包含了四个变量:
- `$makefile_cm_para`
- `$makefile_dumpfsdb_para`
- `$makefile_dumpvpd_para`
- `$makefile_seed_para`
这些变量的值可以在命令行中通过赋值来设置,例如:
```
makefile_cm_para="-cm_name mycov -cm_dir cov_dir" makefile_dumpfsdb_para="-fsdb dump.fsdb" makefile_dumpvpd_para="-vpd dump.vpd" makefile_seed_para="-s 1234" make
```
这个命令会执行 Makefile,并将 `makefile_cm_para`、`makefile_dumpfsdb_para`、`makefile_dumpvpd_para` 和 `makefile_seed_para` 四个变量的值传递给 Makefile。
在 Makefile 中,可以使用 `$()` 或 `${}` 语法来获取变量的值,例如:
```
cm_name = $(makefile_cm_para:.*-cm_name\s\+\(\S\+\).*=\1)
cm_dir = $(makefile_cm_para:.*-cm_dir\s\+\(\S\+\).*=\1)
dumpfsdb = $(makefile_dumpfsdb_para:.*-fsdb\s\+\(\S\+\).*=\1)
dumpvpd = $(makefile_dumpvpd_para:.*-vpd\s\+\(\S\+\).*=\1)
seed = $(makefile_seed_para:.*-s\s\+\(\S\+\).*=\1)
```
在这个例子中,使用了 `$()` 语法来获取变量的值。例如,`$(makefile_cm_para:.*-cm_name\s\+\(\S\+\).*=\1)` 表示从 `makefile_cm_para` 变量的值中提取 `-cm_name` 参数的值。这样,就可以在 Makefile 中使用这些变量来控制编译选项、路径、文件名等。
需要注意的是,在 shell 中使用变量时,变量名前面必须加 `$` 符号,而在 Makefile 中使用变量时,变量名前面必须加 `$()` 或 `${}` 语法。
阅读全文