Makefile,修改列表
如果我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
既然你已经说过它是 GNU Make:
请参阅 http ://www.gnu.org/software/make/manual/html_node/Foreach-Function.html#Foreach-Function
Since you've said it's GNU Make:
See http://www.gnu.org/software/make/manual/html_node/Foreach-Function.html#Foreach-Function