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
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