Changeset 229
- Timestamp:
- Jul 7, 2018, 9:09:36 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r228 r229 33 33 # in the environment, so it also influences recursive make invocations. 34 34 # 35 %RELEASE=y35 #~ %RELEASE=y 36 36 37 37 # DEFINITIONS AND STUFF -
trunk/include/version.h
r222 r229 43 43 #define BLDLVL_MAJOR_VERSION "1" 44 44 #define BLDLVL_MIDDLE_VERSION "1" 45 #define BLDLVL_MINOR_VERSION " 4"45 #define BLDLVL_MINOR_VERSION "6" 46 46 47 47 // Build date 48 #define BLDLVL_YEAR "201 7"49 #define BLDLVL_MONTH " 11"50 #define BLDLVL_DAY " 09"48 #define BLDLVL_YEAR "2018" 49 #define BLDLVL_MONTH "??" 50 #define BLDLVL_DAY "??" 51 51 52 52 // Build time 53 53 #define BLDLVL_HOURS "01" 54 54 #define BLDLVL_MINUTES "01" 55 #define BLDLVL_SECONDS "0 4"55 #define BLDLVL_SECONDS "06" 56 56 57 57 #else … … 60 60 #define BLDLVL_MAJOR_VERSION "1" 61 61 #define BLDLVL_MIDDLE_VERSION "1" 62 #define BLDLVL_MINOR_VERSION " 3"62 #define BLDLVL_MINOR_VERSION "5" 63 63 64 64 // Build date 65 #define BLDLVL_YEAR "201 7"66 #define BLDLVL_MONTH " 11"67 #define BLDLVL_DAY "0 8"65 #define BLDLVL_YEAR "2018" 66 #define BLDLVL_MONTH "07" 67 #define BLDLVL_DAY "05" 68 68 69 69 // Build time -
trunk/include/version.inc
r222 r229 32 32 AB_MAJOR_VERSION EQU 1 33 33 AB_MIDDLE_VERSION EQU 1 34 AB_MINOR_VERSION EQU 434 AB_MINOR_VERSION EQU 6 35 35 36 36 ; The Year, Month and Day in BCD so we can easily extract nibbles. 37 AB_YEAR EQU 201 7h38 AB_MONTH EQU 11h39 AB_DAY EQU 09h37 AB_YEAR EQU 2018h 38 AB_MONTH EQU ??h 39 AB_DAY EQU ??h 40 40 41 41 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation. … … 50 50 AB_MAJOR_VERSION EQU 1 51 51 AB_MIDDLE_VERSION EQU 1 52 AB_MINOR_VERSION EQU 352 AB_MINOR_VERSION EQU 5 53 53 54 54 ; The Year, Month and Day in BCD so we can easily extract nibbles. 55 AB_YEAR EQU 201 7h56 AB_MONTH EQU 11h57 AB_DAY EQU 0 8h55 AB_YEAR EQU 2018h 56 AB_MONTH EQU 07h 57 AB_DAY EQU 05h 58 58 59 59 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note:
See TracChangeset
for help on using the changeset viewer.