c++if-statementmakefileconditional-expressions

Conditional expression in Makefile


I know you can use if statements like the following in makefiles:

foo: $(objects)
ifeq ($(CC),gcc)
        $(CC) -o foo $(objects) $(libs_for_gcc)
else
        $(CC) -o foo $(objects) $(normal_libs)
endif

Is there a way to do a conditional replacement like possibly a ternary type operator.

(condition?$(CC):$(CC2)) -o foo $(objects) $(libs_for_gcc)  

And if there isn't what would be the most idiomatic way to achieve the example

I added the c++ tag because the question had only 7 views and I figured someone who used c++ might be likely to know the answer,I know this isn't strictly a c++ question(though I am planning to compile c++ with it)

EDIT: looks like there is an if function using this syntax
$(if condition,then-part[,else-part])
I'm still a little confused on how it works though


Solution

  • The $(if ...) function can serve as a ternary operator, as you've discovered. The real question is, how do conditionals (true vs. false) work in GNU make? In GNU make anyplace where a condition (boolean expression) is needed, an empty string is considered false and any other value is considered true.

    So, to test whether $(CC) is the string gcc, you'll need to use a function that will return an empty value when it isn't, and a non-empty value when it is.

    Typically the filter and filter-out functions are used for this. Unfortunately it's easiest to use these in such a way that you get the "not equal" result; in other words, using these functions it's much simpler to accurately generate a non-empty string (true) if the string is not gcc, and an empty string (false) if the value is gcc. For example:

    $(if $(filter-out gcc,$(CC)),$(info is not gcc),$(info is gcc))