mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-23 14:44:28 +00:00
Review: https://reviewboard.asterisk.org/r/1891/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369517 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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
|
|
|