如何在makefile中列出源?
列出最终以逗号分隔的一系列源文件的最简洁方法是什么?
我对 makefile 的了解很差,所以我用伪代码写下了我的内容:
sources = array(
'my/file1',
'my/file2',
//...
'my/file30'
)
executable -source=${implode(',', sources)}
What is the tidiest way to list a series of source files which will eventually be comma delimited?
My knowledge of makefiles is poor, so I have written what I am after using pseudo-code:
sources = array(
'my/file1',
'my/file2',
//...
'my/file30'
)
executable -source=${implode(',', sources)}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方法:在 GNU Make 中创建逗号分隔列表
Solved with thanks to: Create comma-separated lists in GNU Make