Currently variable definitions come before project definitions in the makefile. This may seem like an odd order at times. Perhaps the makefile should be updated so variable definitions can come after the project definitions to which they apply. Ideally, it should be the user's choice where they wish to place the variable definitions.
This may require changes from immediately evaluated variables (:=) to regular variables (=).
Linux only issue.
Currently variable definitions come before project definitions in the
makefile
. This may seem like an odd order at times. Perhaps the makefile should be updated so variable definitions can come after the project definitions to which they apply. Ideally, it should be the user's choice where they wish to place the variable definitions.This may require changes from immediately evaluated variables (
:=
) to regular variables (=
).