# version decode: client.major.minor.release # client: the proposed client ID # major: increase the major number every year # 2020=>K.2.2.0 2021=>K.3.2.0 2022=>K.4.2.0 # minor: increase the minor number every promotion # K.2.1.0=>K.2.2.0=>K.2.3.0=>...=>K.2.255.0 # release: change the release number with each release VERSION_FILE = $(SRC_PATH)/VERSION GCC_VER_GE9 = $(shell echo `gcc -dumpversion | cut -f1-2 -d.`\>=9 | bc) GCC_VER_GE6 = $(shell echo `gcc -dumpversion | cut -f1-2 -d.`\>=6 | bc)