make
Installation
SKILL.md
Make
Intent Router
| Request | Reference | Load When |
|---|---|---|
| Install tool, first-time setup | references/install-and-setup.md |
Install or verify GNU Make |
| Makefile syntax, variables, targets | references/makefile-syntax.md |
Write or debug a Makefile |
| CLI commands, flags, dry run | references/command-cookbook.md |
Run make with specific options |
| Patterns, functions, conditionals | references/patterns-and-functions.md |
Use advanced Make features |
Quick Start
# Run default target (usually 'all')
make
# Preview what would run (dry run — no changes)
make -n