Makefile规则定义中的分号

Makefile规则定义中的分号,第1张

概述我在Makefile中看到如下几个规则: $(PATH)/foo.inc:;include $(PATH)/foo.inc$(PATH)/bar.inc:;include $(PATH)/bar.inc 规则定义末尾的分号是无 *** 作的还是具有特定含义? 与目标先决条件一致的分号是执行此规则的第一个命令行,至少在GNU make中. 从本手册的第5章: The commands of a ru 我在Makefile中看到如下几个规则:
$(PATH)/foo.inc:;include $(PATH)/foo.inc$(PATH)/bar.inc:;include $(PATH)/bar.inc

规则定义末尾的分号是无 *** 作的还是具有特定含义?

@R_502_6120@ 与目标先决条件一致的分号是执行此规则的第一个命令行,至少在GNU make中.

从本手册的第5章:

The commands of a rule consist of shell command lines to be executed
one by one. Each command line must start with a tab,except that the
first command line may be attached to the target-and-prerequisites
line with a semicolon in between.

在你的情况下,因为在分号之后没有命令,所以它最终是一个无 *** 作的.

总结

以上是内存溢出为你收集整理的Makefile规则定义中的分号全部内容,希望文章能够帮你解决Makefile规则定义中的分号所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1251283.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存