如果 makefile 更改,如何强制 make 运行干净的目标

发布于 2024-11-05 08:05:20 字数 216 浏览 0 评论 0原文

如果makefile发生变化,make会重建所有目标,对吗?

但是如何告诉 ma​​ke 如果在 makefile 更改后,它应该运行 make clean 然后运行 ​​make 呢?

或者在这种情况下如何指示 make 运行其他命令?我必须写一种特殊的目标吗?

If makefile changes, make rebuilds all targets right?

But how to tell make that if after makefile changed, it shall run make clean and then make?

Or how to instruct make to run some other command in that situation? Do I have to write a special kind of target?

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

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

发布评论

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

评论(3

默嘫て 2024-11-12 08:05:20

可以尝试一下:

all: Makefile.uptodate yourMainTarget

Makefile.uptodate: Makefile
    make clean
    touch Makefile.uptodate

我不是make专家,所以我不知道这是否是一个可怕的黑客,但它在我有限的测试中有效;-)

You could try this:

all: Makefile.uptodate yourMainTarget

Makefile.uptodate: Makefile
    make clean
    touch Makefile.uptodate

I'm not a make expert so I don't know if that's a horrible hack, but it worked in my limited tests ;-)

夜清冷一曲。 2024-11-12 08:05:20

粗糙但有效(我想不出更优雅的东西):

include marker

marker: Makefile
    @touch $@
    $(MAKE) clean
    $(MAKE)

Crude but effective (I can't think of anything more elegant):

include marker

marker: Makefile
    @touch $@
    $(MAKE) clean
    $(MAKE)
时光倒影 2024-11-12 08:05:20

我相信您希望自动运行 clean,因为您希望在调用 make 时重建某些目标。这可以通过将名为 FORCE 的依赖项添加到要始终构建其目标的规则中来实现,然后像这样定义 FORCE:即没有规则,也没有依赖项。

FORCE:

请参阅 http://www.gnu.org/software/make /manual/make.html#Force-Targets

如果您希望重新编译所有文件,请将以下内容添加到 makefile 中:

%.o : %.cpp FORCE
    $(CXX) -c $(CXXFLAGS) 
lt; -o $@

I believe that you want to run clean automatically because you want certain targets to be rebuilt whenever make is called. This can be achieved by adding a dependency named FORCE to the rule whose target you want to build always and then define FORCE like this: ie no rule and no dependency.

FORCE:

Please see http://www.gnu.org/software/make/manual/make.html#Force-Targets

If you want all files to be recompiled, you add the following to the makefile:

%.o : %.cpp FORCE
    $(CXX) -c $(CXXFLAGS) 
lt; -o $@
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文