Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
该算法仅针对隐含规则的匹配,L484 添加了 隐含 二字予以明确;
匹配规则第5/6条(L494/L503):
原描述:对于第一个在列表中的模式规则;
实际上应该是:对于列表中的每一个模式规则:
GNU Make手册原文:For each pattern rule in the list
匹配规则第2条,L491 按照GNU make手册,添加了补充性描述,原文如下:
If the target pattern contains a slash, it is matched against t; otherwise, against n.
翻译为:如果目标模式包含斜杠,则用该模式匹配T;否则匹配N。
规则5.2 L497/498 别字修改 以及 翻译错误修改是“每一个”而不是”第一个“
别字:如果目标模式中没有包含 斜框 字符,——修改为斜杠,前后保持一致
翻译错误:而把D加在 第一个 依赖文件的开头。——修改为每一个