Changeset 248


Ignore:
Timestamp:
Dec 3, 2021, 10:27:13 PM (3 years ago)
Author:
Gregg Young
Message:

Update wis build to use the same enviroment variables as the build level string.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/packaging/warpin/makefile

    r213 r248  
    33# $Id: makefile 1679 2013-01-01 21:42:27Z gyoung $
    44
    5 
    6 !ifndef EFTE2_VER                  # if defined on wmake command, use it
    7 EFTE2_VER=-1-1-0                   # default value
    8 !ifdef %EFTE2_VER                  # if defined via env. var.
    9 EFTE2_VER=$(%EFTE2_VER)            #   use the env. var.
     5!ifdef %EFTEMAJOR
     6EFTEMAJOR = $(%EFTEMAJOR)
     7!else
     8EFTEMAJOR = 1
    109!endif
     10!ifdef %EFTEMINOR
     11EFTEMINOR = $(%EFTEMINOR)
     12!else
     13EFTEMINOR = 1
    1114!endif
     15!ifdef %EFTEREVISION
     16EFTEREVISION = $(%EFTEREVISION)
     17!else
     18EFTEREVISION = 0
     19!endif
     20!ifdef %EFTEFIXLEVEL
     21EFTEFIXLEVEL = $(%EFTEFIXLEVEL)
     22!else
     23EFTEFIXLEVEL = 0
     24!endif
     25                 
     26EFTE2_VER=-$(EFTEMAJOR)-$(EFTEMINOR)-$(EFTEREVISION)-$(EFTEFIXLEVEL)
    1227
    1328all: wpi .symbolic
Note: See TracChangeset for help on using the changeset viewer.