How do I express the following logic in a Makefile?
if $(XORG_VERSION) > "7.7"
<do some thing>
fi
Conditional Parts of Makefiles only provides ifeq or ifneq.
How do I express the following logic in a Makefile?
if $(XORG_VERSION) > "7.7"
<do some thing>
fi
Conditional Parts of Makefiles only provides ifeq or ifneq.