I want to have a if condition in GNUmakefile with logical && operator.
Eg:-
TEST:=1
LOG:=""
ifeq ($(TEST) == 1 && $(LOG) == "")
dosomething
else
....
endif
Can find something @ Makefile ifeq logical AND , it looks ugly way of concatenating the variable and checking the same.. Is there any other nicer way to have a if check for this ?