在 makefile 规则中使用模式匹配

发布于 2024-10-20 09:45:11 字数 471 浏览 0 评论 0原文

我有一个包含如下规则的 makefile:

data/foo-trunk.xml:
    svn log -v --xml http://www.example.com/svn/foo/trunk > $@

data/bar-trunk.xml:
    svn log -v --xml http://www.example.com/svn/bar/trunk > $@

data/baz-trunk.xml:
    svn log -v --xml http://www.example.com/svn/baz/trunk > $@

我如何将其抽象为规则?例如,有没有办法做这样的事情(即,什么可以取代???)

data/%-trunk.xml:
    svn log -v --xml http://www.example.com/svn/???/trunk > $@

I have a makefile with rules that look like this:

data/foo-trunk.xml:
    svn log -v --xml http://www.example.com/svn/foo/trunk > $@

data/bar-trunk.xml:
    svn log -v --xml http://www.example.com/svn/bar/trunk > $@

data/baz-trunk.xml:
    svn log -v --xml http://www.example.com/svn/baz/trunk > $@

How could I abstract this into a rule? For example, is there a way to do something like this (i.e., what would replace the ???)

data/%-trunk.xml:
    svn log -v --xml http://www.example.com/svn/???/trunk > $@

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

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

发布评论

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

评论(1

睡美人的小仙女 2024-10-27 09:45:11

假设 GNU Make,??? 应该是 $*

Assuming GNU Make, ??? should be $*.

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