vote up 1 vote down star

Is there a way to detect whether a variable has been set from the environment vs. on the command line?

I would like to distinguish between someone invoking make with make LIB=mylib vs. make and $LIB being defined.

flag

Please, tag your make-related questions with [make] tag. For rationale see meta.stackoverflow.com/questions/24030/… – Pavel Shved Oct 23 at 20:40

1 Answer

vote up 3 vote down check

Yes. You can use the origin function to determine where a variable was defined.

ifneq (,$(findstring environment,$(origin LIB)))
    # LIB was defined by the environment
else
    # LIB was defined some other way
endif
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.