在 Makefile.am 中创建和删除生成文件的子目录
我正在为我的项目使用自动工具。
在构建 Qt 时,生成了 moc_*.cpp
和 ui_*.h
文件,我希望将它们放在 gen 子目录中。该目录和生成的文件应该由 make 创建并删除我的 make clean。
这里有人以前做过这个吗?我会非常感激的!
I am using autotools for my project.
While building Qt there are the generated moc_*.cpp
and ui_*.h
files which I want to have them in a gen subdirectory. The directory and the generated files should be created by make and removed my make clean.
Have anyone here done this before? I'll appreciate it really much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
清理很大程度上取决于你的 makefile 结构。如果您需要帮助,请发布示例
cleaning very much depends on your makefile structure. Please post a sample if you need help
我不知道如何删除我脑海中的目录,但您可以在
Makefile.am
的CLEANFILES
中列出任何生成的文件。I don't know about removing the directory off the top of my head, but you can list any generated files in
CLEANFILES
in yourMakefile.am
.