Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 310
aaronman Avatar asked Jul 31 '13 20:07

aaronman


2 Answers

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))
like image 137
MadScientist Avatar answered Nov 11 '22 07:11

MadScientist


If the only effect you are trying to achieve is to use either the one or the other compiler, I think the best way is to use a variable for that special compilation step and set this depending on your condition.

ifeq (condition)
    MYCC=$(CC2)
    LIBS=$(LIBS_FOR_CC2)
else
    MYCC=$(CC)
    LIBS=$(LIBS_FOR_CC)
endif

and then later in the rule to compile use

$(MYCC) -o foo $(objects) $(LIBS)

At least this is how I remember structuring the makefiles into a) configuration and b) the rule sets.

Sorry if that doesn't answer your question, but I am not aware of a ternay operator for GNU make (and I presume you are referring to GNU make?).

like image 30
Chris Avatar answered Nov 11 '22 09:11

Chris