Makefile 从 2 个目录构建源代码

发布于 2024-10-15 23:22:10 字数 169 浏览 1 评论 0原文

我在项目的主目录中有 2 个目录:

src 和 utls

我有 makefile 来在 src 目录中构建源文件和头文件。现在在 utils dir 中设置 src 文件所依赖的一些 *.c 和 *.h 文件。我如何构建这两个目录?

谢谢。

I have 2 directories in main directory of project:

src and utls

I have makefile to build source and header file in src dir. Now in utils dir sets some *.c and *.h files which src files depend. How can i build both of this directories?

Thank you.

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

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

发布评论

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

评论(2

零度℉ 2024-10-22 23:22:10

有很多方法...
例如,您可以在 utils 目录中构建一个库,并在 src 中依赖它。但它需要规则如何在 src 目录中重建 libutils 和依赖项。

但如果不值得大惊小怪,在更高级别的 makefile 中只需构建 utils,然后构建 src,从 utils 标头写入依赖项以重建 src .c 和 .h,以防万一。

There are plenty of ways...
For example you can build a library in utils dir, and depend on it in src. But it requires the rule how to rebuild the libutils and dependencies in src dir.

But if it doesn't worth the fuss, in higher level makefile just build utils, and then src, writing dependencies from utils headers to rebuild src .c and .h in case.

匿名的好友 2024-10-22 23:22:10

您可以使用 make 的 -C 选项。假设您位于您要创建的 src 目录中。
您的 makefile 很可能有一个名为“all”的目标。您可以将目标实用程序添加到其依赖项列表中。

all : utils

utils:
      make -C ../utils

You can use make's -C option. Assume you are in the src dir from where you are trying to make.
Your makefile will most probably have a target named 'all'. You can add the target utils to its list of dependencies.

all : utils

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