使用 makefile 写入文件
如何使用我的 makefile 写入文件? 例如,如何将当前目录下的所有.cpp文件名写入到一个文件中。我需要这些名称各占一个新行。
How I can write to a file with my makefile?
For example, how to write all .cpp file names in current directory to a file. I need that these names will be each on a new line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用其他可用的工具:
ls -l >一些文件
。您可以将该命令放入 makefile 中。Just use other available tools:
ls -l > somefile
. You can put that command in the makefile.