"Fossies" - the Fresh Open Source Software Archive

Member "schily-2021-09-18/sunpro/Make/bin/make/common/version.cc" (7 Sep 2021, 724 Bytes) of package /linux/privat/schily-2021-09-18.tar.bz2:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "version.cc" see the Fossies "Dox" file reference documentation and the latest Fossies "Diffs" side-by-side code changes reports: 2021-09-01_vs_2021-09-18 or 2021-08-14_vs_2021-09-18 or 2021-07-29_vs_2021-09-18.

    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";