Skip to content

Commit

Permalink
docs/make: Fix up small issues
Browse files Browse the repository at this point in the history
  • Loading branch information
YakDriver committed May 30, 2024
1 parent 6bd03f9 commit d6c5ad1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/makefile-cheat-sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ Variables are often defined before the `make` call on the same line, such as `MY

## Cheat Sheet

* **Target** Use as a subcommand to `make`, such as `make gen`.
* **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.
* **Description** When CI related, this aligns with the name of the check as seen on GitHub.
* **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.
* **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.
* **Vars** [Variables](#variables) that you can set when using the target, such as `MY_VAR=42 make my-target`.
* **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.

| Target | Description | CI? | Legacy? | Vars |
| --- | --- | --- | --- | --- |
Expand Down

0 comments on commit d6c5ad1

Please sign in to comment.