Similarly to Make files, the syntax `VAR ?= value` is added to define
variables only when they were previously undefined.
In this case, if the environment variable `VAR` was undefined, then it
will be defined with the value `value`, otherwise the previous content
of `VAR` will be preserved.
This is useful to define default flags in the config file that can be
easily overridden by using environment variables.