Is it possible to perform some operations on variables in a makefile? For instance, defining
JPI=4 JPJ=2
Is it possible to define in the sa
The GNU Make Standard Library provides integer arithmetic functions.
include gmsl JPI = 4 JPJ = 2 JPIJ = $(call plus,$(JPI),$(JPJ))