在 Makefile.am 中创建和删除生成文件的子目录

发布于 2024-10-30 23:46:09 字数 176 浏览 0 评论 0原文

我正在为我的项目使用自动工具。

在构建 Qt 时,生成了 moc_*.cppui_*.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

晒暮凉 2024-11-06 23:46:09
targetdir/bin/launcher: sourcefile1 sourcefile1 sourcefile1 | dep1
     mkdir -pv "${@D}"
     # the rest

清理很大程度上取决于你的 makefile 结构。如果您需要帮助,请发布示例

targetdir/bin/launcher: sourcefile1 sourcefile1 sourcefile1 | dep1
     mkdir -pv "${@D}"
     # the rest

cleaning very much depends on your makefile structure. Please post a sample if you need help

青衫儰鉨ミ守葔 2024-11-06 23:46:09

我不知道如何删除我脑海中的目录,但您可以在 Makefile.amCLEANFILES 中列出任何生成的文件。

I don't know about removing the directory off the top of my head, but you can list any generated files in CLEANFILES in your Makefile.am.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文