Add a small make help target that prints the most common developer commands.
Why: New contributors should be able to discover the basic workflow without reading the whole Makefile. This is a small, low-risk improvement that makes the repo easier to approach.
Acceptance criteria:
- Add
help to .PHONY.
- Implement
make help with short descriptions for common targets such as make, make iso, make run, make test, make clean, make docker-build-only, and make docker-shell.
- Keep the output concise and easy to scan.
- Update README or CONTRIBUTING if needed to mention
make help.
Add a small
make helptarget that prints the most common developer commands.Why: New contributors should be able to discover the basic workflow without reading the whole Makefile. This is a small, low-risk improvement that makes the repo easier to approach.
Acceptance criteria:
helpto.PHONY.make helpwith short descriptions for common targets such asmake,make iso,make run,make test,make clean,make docker-build-only, andmake docker-shell.make help.