Skip to content

Commit d6c5ad1

Browse files
committed
docs/make: Fix up small issues
1 parent 6bd03f9 commit d6c5ad1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/makefile-cheat-sheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ Variables are often defined before the `make` call on the same line, such as `MY
7777

7878
## Cheat Sheet
7979

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.
8181
* **Description** When CI related, this aligns with the name of the check as seen on GitHub.
8282
* **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.
8383
* **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`.
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.
8585

8686
| Target | Description | CI? | Legacy? | Vars |
8787
| --- | --- | --- | --- | --- |

0 commit comments

Comments
 (0)