Changes in version [6068476:0767eb2] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • version

    r6068476 r0767eb2  
    2727#
    2828
     29## This file defines the release information of HelenOS.
     30#
     31# The release string RELEASE consists of three or four components
     32# (version, patch level, sublevel and optionally an extra level).
     33#
     34# The NAME string is the code name of the given release.
     35#
    2936
    30 HELENOS_RELEASE = 0.9.1
    31 HELENOS_CODENAME = Armonia
    32 HELENOS_COPYRIGHT = Copyright (c) 2001-2019 HelenOS project
     37VERSION = 0
     38PATCHLEVEL = 9
     39SUBLEVEL = 1
     40
     41ifdef EXTRAVERSION
     42        RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL).$(EXTRAVERSION)
     43else
     44        RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)
     45endif
     46
     47NAME = Armonia
     48COPYRIGHT = Copyright (c) 2001-2019 HelenOS project
Note: See TracChangeset for help on using the changeset viewer.