Hi,
I'm trying to do this in a Makefile:
value = 2.0
if ${greaterthan ${value}, 1.50}
-> execute a rule
elseif ${lessthan ${value}, 0.50}
-> execute a rule
endif
Seems like quite a common thing to want to do, what's the best way of doing this?
Thanks, Dan