Make
Variables Commands
Make variables control build behavior. Master assignment operators and automatic variables for flexible, maintainable Makefiles.
9 commands
Pro Tips
Use := for simple expansion to avoid recursive evaluation issues.
Use ?= to set defaults that can be overridden by environment.
Common Mistakes
= (recursive) variables expand each use - can cause infinite loops.