如何在makefile中调用perl脚本并捕获其输出

时间:2017-06-27 04:30:30

标签: perl makefile gnu-make

我有一个Perl脚本,必须在makefile中捕获该Perl脚本的输出。

variable: = <path of script>
output: = $(shell $(echo))

1 个答案:

答案 0 :(得分:1)

根据this

var := $(shell script)