makefile调用csh文件
时间: 2023-08-11 22:30:45 浏览: 627
要在 Makefile 中调用 csh 脚本文件,可以使用以下命令:
```
target:
csh script.csh
```
其中 `target` 是 Makefile 中的目标,`script.csh` 是要执行的 csh 脚本文件。在命令前面需要使用一个 tab(制表符)缩进。
如果需要传递参数给 csh 脚本,可以在命令中添加参数,例如:
```
target:
csh script.csh arg1 arg2
```
这将会把 `arg1` 和 `arg2` 作为参数传递给 `script.csh` 脚本。
阅读全文