使用 Make 隐藏中间文件的删除
我在 Makefile 中使用中间文件,但是 make 打印出 rm 命令,然后用它来删除它们。如何隐藏此打印语句?
I use intermediate files in my Makefile, however make prints out the rm command that it uses to delete them all afterwards. How do I hide this print statement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
make 手册 指出标记为
的目标.SECONDARY
的行为与.INTERMEDIATE
相同,但不会自动删除。您可以将所有中间目标标记为次要目标,然后自己删除这些文件,就像应该做的那样。
The make manual says that targets marked
.SECONDARY
will behave as.INTERMEDIATE
but won't be automatically deleted. You could mark all the intermediate targets as secondary, and then remove the files yourself, something likeshould do.