在 makefile 中用新行替换空格
有谁知道如何将字符串中的所有空格替换为 Makefile(GNU make) 中的新行
Does anyone know how to replace all spaces in a string in to a new line in a Makefile(GNU make)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 GNU Make 的
shell
函数和sed
来进行替换可能更容易,也更干净,而不是尝试完全在make
中完成。代码>.或者,如果您的 shell 是
bash
而不是默认的sh
,则稍好一些:It's probably easier -- and cleaner -- to use GNU Make's
shell
function withsed
to do the replacement, rather than trying to do it entirely withinmake
.Or, slightly better, if your shell is
bash
instead of the defaultsh
: