Makefile,修改列表

发布于 2024-09-10 17:23:44 字数 203 浏览 1 评论 0原文

如果我在 GNU Makefile 中有一个列表,是否可以创建一个修改原始字符串的新列表。如果某些语言有 map 高阶过程,那就完美了。

这是我想做的一个例子

DIRS=A B C D
#apply some magic to create
DIRS_INCLUDE=-IA -IB -IC -ID

If I have a list in a GNU Makefile, is it possible to create a new list with the original strings modified. This is would be perfect if there was the map higher-order procedure from some languages.

This is an example of what I'm trying to do

DIRS=A B C D
#apply some magic to create
DIRS_INCLUDE=-IA -IB -IC -ID

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

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

发布评论

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

评论(1

薄荷→糖丶微凉 2024-09-17 17:23:45

既然你已经说过它是 GNU Make:

DIRS_INCLUDE=$(foreach dir,$(DIRS),-I$(dir))

请参阅 http ://www.gnu.org/software/make/manual/html_node/Foreach-Function.html#Foreach-Function

Since you've said it's GNU Make:

DIRS_INCLUDE=$(foreach dir,$(DIRS),-I$(dir))

See http://www.gnu.org/software/make/manual/html_node/Foreach-Function.html#Foreach-Function

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