gpt4 book ai didi

unix - Makefile 中的规则参数

转载 作者:行者123 更新时间:2023-12-03 23:20:16 25 4
gpt4 key购买 nike

我需要制作一个 Makefile,它应该有一个 run规则。但是,运行需要一些参数。

有谁知道在 Makefile 中运行规则时如何传递参数?我希望能够运行 run通过键入 make run foo bar 带参数的规则.

我试过这个,但没有用:

run:
make compile
./scripts/runTrips $1 $2 $PLACES $OUT $VERS

我想要提供的参数是第一个和第二个。

最佳答案

将参数传递给 make 命令时,请像引用其他内部 make 变量一样引用它们。

如果你的 makefile 看起来像:

run:
script $(param1) $(param2)

您可以使用以下语法调用它:
$> make run param1=20 param2=30

并且 make 应该像这样调用脚本:
script 20 30

关于unix - Makefile 中的规则参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4783098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com