如何在makefile中列出源?

发布于 2024-12-08 23:12:51 字数 223 浏览 0 评论 0原文

列出最终以逗号分隔的一系列源文件的最简洁方法是什么?

我对 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 技术交流群。

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

发布评论

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

评论(1

反话 2024-12-15 23:12:53

解决方法:在 GNU Make 中创建逗号分隔列表

sources = my/file1 \
my/file2 \
my/file3

null  :=
space := $(null) #
comma := ,

FULL_SOURCES := $(subst $(space),$(comma),$(strip $(sources)))

Solved with thanks to: Create comma-separated lists in GNU Make

sources = my/file1 \
my/file2 \
my/file3

null  :=
space := $(null) #
comma := ,

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