将其命令行参数传递给另一个脚本的 Makefile

发布于 2024-12-11 17:52:29 字数 456 浏览 0 评论 0原文

在一个项目中,我有一个名为 make.sh 的脚本,它可以构建项目并执行其他一些操作。到目前为止,它运行良好。

然后,出于好奇,我尝试创建一个 Makefile,将其命令行参数传递给该脚本,以便我可以调用它 制作快照 而不是 ./make.sh snapshot

这是我现在正在使用的Makefile

.PHONY: snapshot

%: 
    ./make.sh $@

snapshot: 
    ./make.sh snapshot

但是这种方法有一些问题,我无法将“build”作为参数传递,因为我有一个“Build”目录(由SCons使用),我无法传递要传递给脚本的第二个参数,例如: 上传192.168.1.10 因为 make 将其解释为两个不同的目标...

有没有办法用 Makefile 来做到这一点?

In a project, I have a script called make.sh that builds the project and does some other stuff too. It is working well so far.

Then, just out of curiosity I've tried to create a Makefile that just passed its command-line parameters to this script so I could call it
make snapshot
instead of
./make.sh snapshot

this is the Makefile that I'm using right now

.PHONY: snapshot

%: 
    ./make.sh $@

snapshot: 
    ./make.sh snapshot

But this approach have some problems, I can't pass "build" as a parameter, because I have a "Build" directory (used by SCons), and I can't pass a second parameter to be passed to the script, like:
make upload 192.168.1.10
as make interprets it as two different targets...

Is there a way I can do this with the Makefile?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

格子衫的從容 2024-12-18 17:52:29

是的,你可以做到:

%:all
    @true

all:
    ./make.sh $(MAKECMDGOALS)

但这是对 Make 的滥用。这个想法是 Make 应该将其参数解释为一组目标,而不是通用参数的有序列表。您可能应该使用不同的工具。

Yes, you can do it:

%:all
    @true

all:
    ./make.sh $(MAKECMDGOALS)

but this is an abuse of Make. The idea is that Make should interpret its arguments as a set of targets, not an ordered list of general arguments. You should probably use a different tool.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文