You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/makefile-cheat-sheet.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -77,11 +77,11 @@ Variables are often defined before the `make` call on the same line, such as `MY
77
77
78
78
## Cheat Sheet
79
79
80
-
***Target** Use as a subcommand to `make`, such as `make gen`.
80
+
***Target** Use as a subcommand to `make`, such as `make gen`.[Meta and dependent targets](#meta-targets-and-dependent-targets) are marked with <sup>M</sup> and <sup>D</sup> respectively.
81
81
***Description** When CI related, this aligns with the name of the check as seen on GitHub.
82
82
***CI?** Whether the target is equivalent or largely equivalent to a check run on the GitHub repository for a pull request. See [continuous integration](continuous-integration.md) for more details.
83
-
***Legacy** Whether the target is a legacy holdover. Use caution with a legacy target! It may not work, or may perform a check or fixes that do _not_ align with current practices. At a future date, this target should be removed, modernized, or verified to still have value.
84
-
***Vars**[Variables](#variables) that you can set when calling `make`, such as `MY_VAR=42 make my-target`.
83
+
***Legacy?** Whether the target is a legacy holdover. Use caution with a legacy target! It may not work, or may perform a check or fixes that do _not_ align with current practices. At a future date, this target should be removed, modernized, or verified to still have value.
84
+
***Vars**[Variables](#variables) that you can set when using the target, such as `MY_VAR=42 make my-target`. [Meta and dependent targets](#meta-targets-and-dependent-targets) run other targets that may not respect the same variables.
0 commit comments