I would like to check multiple conditions in an if loop of GNU make file. Here\'s an example:
if
ifeq ($(TEST_FLAG),TRUE && ($(DEBUG_FLAG),
Although Hasturkun's solution will work, I think the idiomatic way to write this is:
ifeq ($(TEST_FLAG),TRUE) ifeq ($(DEBUG_FLAG),FALSE) # Stuff endif endif