1 /* @(#)version.cc 1.27 21/09/07 Copyright 2017-2019 J. Schilling */ 2 #include <schily/mconfig.h> 3 #ifndef lint 4 static UConst char sccsid[] = 5 "@(#)version.cc 1.27 21/09/07 Copyright 2017-2019 J. Schilling"; 6 #endif 7 8 /* 9 * Copyright (c) 2019 J. Schilling 10 * 11 * @(#)version.cc 1.27 21/09/07 2017-2019 J. Schilling 12 */ 13 14 #define VERSION_DATE "2021/09/07" 15 #define VERSION_STR "1.1" 16 #ifdef SCHILY_BUILD 17 #define VERSION_NAME "Schily-Tools" 18 #else 19 #define VERSION_NAME "SchilliX-ON" 20 #endif 21 #ifdef PMAKE 22 #define MAKE_TYPE " Parallel " 23 #else 24 #define MAKE_TYPE " Serial " 25 #endif 26 27 char verstring[] = VERSION_NAME MAKE_TYPE "Make " VERSION_STR " " \ 28 HOST_OS "-" HOST_CPU " " \ 29 VERSION_DATE \ 30 "\n\tderived from SunPro Make sources";