File: rules.mk

package info (click to toggle)
skiboot 6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,572 kB
  • sloc: ansic: 114,759; cpp: 5,501; sh: 2,203; asm: 1,254; tcl: 884; python: 582; makefile: 519; pascal: 66
file content (18 lines) | stat: -rw-r--r-- 765 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# NOTE: shared lib versioning has *NOTHING* to do with software package version
#
# If source code has changed, revision++
# if any interfaces have been added, removed, or changed, current++, revision=0
# if any interfaces have been added, age++
# if any interfaces have been removed or changed, age=0
#
# i.e. AGE refers to backwards compatibility.
# e.g. If we start with 5.3.0 and we're releasing new version:
#      - bug fix no api change: 5.4.0
#      - new API call, backwards compatible otherwise: 6.0.1
#      - API removed, or changed (i.e. not backwards compat): 6.0.0

LIBFLASH_VERSION_CURRENT=5
LIBFLASH_VERSION_REVISION=3
LIBFLASH_VERSION_AGE=0

SHARED_NAME=libflash.so.${LIBFLASH_VERSION_CURRENT}.${LIBFLASH_VERSION_REVISION}.${LIBFLASH_VERSION_AGE}