meta data for this page
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
programming:makefile:default_variables [2024/03/19 13:00] – created niziak | programming:makefile:default_variables [2024/03/22 10:36] (current) – niziak | ||
---|---|---|---|
Line 57: | Line 57: | ||
Note that we use a special stylistic convention when we talk about these automatic variables; we write “the value of ‘$< | Note that we use a special stylistic convention when we talk about these automatic variables; we write “the value of ‘$< | ||
+ | |||
+ | |||
+ | ===== special variables ===== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | * .DEFAULT_GOAL | ||
+ | * .MAKE_RESTARTS | ||
+ | * .VARIABLES - Expands to a list of the names of all global variables defined so far. | ||
+ | * .FEATURES | ||
+ | * .INCLUDE_DIRS | ||
+ | |||
+ | From [[https:// | ||
+ | <code make> | ||
+ | dump: | ||
+ | $(foreach v, \ | ||
+ | $(shell echo " | ||
+ | $(info $(shell printf " | ||
+ | ) | ||
+ | </ | ||