将构建后行写入 makefile

发布于 2024-12-13 18:31:59 字数 85 浏览 0 评论 0原文

我希望在每次“make”后自动将多个文件从“folderA”复制到“folderB”。

有谁知道如何将构建后行添加到 makefile 中?

I would like several files to be copied from "folderA" to "folderB" automatically after each "make".

Does anyone know how to add a post-build line into the makefile?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

人心善变 2024-12-20 18:31:59

您可以将类似的内容添加到默认 make 目标的末尾(makefile 中的第一个目标始终是默认目标):

install folderA/{file1,file2,file3} folderA/*.foo folderB

如果您想要更复杂的内容,请查看 man installman cp

You could add something like this to the end of your default make target (the first target in the makefile is always the default):

install folderA/{file1,file2,file3} folderA/*.foo folderB

If you want something more complicated, have a look at man install and man cp.

心意如水 2024-12-20 18:31:59

通常,这将是一个依赖于可执行文件构建的安装目标。它通常使用 cp 或 install 命令来复制文件。

这里的示例说明了这一点。

Normally this would be an install target that is dependent on the build of the executable. It typically uses the cp or install commands to copy the files.

Here's an example that illustrates this.

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