mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-23 14:44:28 +00:00
17 lines
437 B
Makefile
17 lines
437 B
Makefile
![]() |
# Don't change the "export PJ_VERSION_xxx" style, they are parsed by setup.py
|
||
|
export PJ_VERSION_MAJOR := 2
|
||
|
export PJ_VERSION_MINOR := 0
|
||
|
export PJ_VERSION_REV :=
|
||
|
export PJ_VERSION_SUFFIX :=
|
||
|
|
||
|
export PJ_VERSION := $(PJ_VERSION_MAJOR).$(PJ_VERSION_MINOR)
|
||
|
|
||
|
ifneq ($(PJ_VERSION_REV),)
|
||
|
export PJ_VERSION := $(PJ_VERSION).$(PJ_VERSION_REV)
|
||
|
endif
|
||
|
|
||
|
ifneq ($(PJ_VERSION_SUFFIX),)
|
||
|
export PJ_VERSION := $(PJ_VERSION)-$(PJ_VERSION_SUFFIX)
|
||
|
endif
|
||
|
|