在 makefile 规则中使用模式匹配
我有一个包含如下规则的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 GNU Make,
???
应该是$*
。Assuming GNU Make,
???
should be$*
.