From 4ee399ce881ee730c6caef53eeb810a65840d098 Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Wed, 11 Feb 2026 14:20:16 +0100 Subject: [PATCH] Update make reference with `make coverage` and `DEBUG` --- docs/makefile_reference.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/makefile_reference.md b/docs/makefile_reference.md index 657d54366..1b894d99e 100644 --- a/docs/makefile_reference.md +++ b/docs/makefile_reference.md @@ -19,5 +19,8 @@ AliECS comes with a `make`-based build system, with all `.PHONY` targets. | `make tools/protoc` | ensures `protoc-gen-go` is present (included in `make tools`) | | `make doc`
`make docs` | regenerates command reference documentation for command line tools | | `make help` | displays inline documentation | +| `make coverage` | builds a test coverage report | The variable `WHAT` is obeyed by `make build` (or `make`) and `make install` in order to customize the components to build. For example `make WHAT=coconut install` builds and installs only `coconut`. By default `WHAT` includes all components. + +Add `DEBUG=1` before `make` to enable non-optimized, debug builds.