diff --git a/elf2cfetbl.c b/elf2cfetbl.c index 5c701b6..a79fe24 100644 --- a/elf2cfetbl.c +++ b/elf2cfetbl.c @@ -1277,6 +1277,7 @@ void OutputVersionInfo(void) { printf("\nElf Object File to cFE Table Image File Conversion Tool\n"); printf("Version v%d.%d.%d.%d ", ELF2CFETBL_MAJOR_VERSION, ELF2CFETBL_MINOR_VERSION, ELF2CFETBL_REVISION, ELF2CFETBL_MISSION_REV); + printf("(%s-%d)\n", ELF2CFETBL_BASELINE, ELF2CFETBL_BUILDNUM); printf(" Built - %s %s\n\n", __DATE__, __TIME__); } diff --git a/elf2cfetbl_version.h b/elf2cfetbl_version.h index 8ce512c..20f86f4 100644 --- a/elf2cfetbl_version.h +++ b/elf2cfetbl_version.h @@ -30,7 +30,13 @@ #define ELF2CFETBL_VERSION_H /* - * Macro Definitions + * Development build identifiers + */ +#define ELF2CFETBL_BASELINE "Bootes" +#define ELF2CFETBL_BUILDNUM 1 + +/* + * Version Macro Definitions */ #define ELF2CFETBL_MAJOR_VERSION 3 #define ELF2CFETBL_MINOR_VERSION 1