Is there a logical OR operator for the ‘ifneq … endif’ statement?
That is, I’d not like to execute some statements if variable ‘var1’ or ‘var2’ is defined. Something like this:
ifneq ($(WNDAP660),y) OR $(WNADAP620),y))
...
endif
I’ve tried ifneq ($(WNDAP660),$(filter $(WNADAP620),y y)), but it is not working.
Try this one: