Makefile 包含 .depend

发布于 2024-08-23 02:44:35 字数 304 浏览 4 评论 0原文

在我的 makefile 中,我有一个:

include .depend

我也有一个

depend:
  rules for buiding .depend

现在,问题是,当“.depend”不存在时,我无法运行“make dependent”;我必须做“touch .depend; make dependent”

有没有办法告诉Make“如果.depend不存在,仍然允许我运行'make dependent'”?

谢谢!

In my makefile, I have a:

include .depend

I also have a

depend:
  rules for buiding .depend

Now, here is the problem, when ".depend" does not exist, I can't run "make depend"; I have to do "touch .depend; make depend"

Is there anyway to tell Make "if .depend does not exist, still allow me to run 'make depend'" ?

Thanks!

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

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

发布评论

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

评论(1

南城追梦 2024-08-30 02:44:35

我假设你的意思是你不能运行“make dependent”,因为 Make 不愿尝试包含不存在的文件。如果您使用 GNUMake,则可以使用 -include:

-include .depend

如果文件存在,这将包含该文件,但如果不存在,则继续执行,不会出现错误。

(我听说 sinclude 在其他一些版本的 Make 中也做了同样的事情。)

I assume you mean that you can't run "make depend" because Make balks at trying to include a file that doesn't exist. If you're using GNUMake you can use -include:

-include .depend

This will include the file if it exists, but continue without error if it doesn't.

(I've heard that sinclude does the same thing in some other versions of Make.)

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