mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
8b1eeb2e86
- the rez fork rules is now in one of the *.mk files; don't include it here - make sure the contrib.h header gets installed libcontrib.rez: - added the build date
35 lines
701 B
Plaintext
35 lines
701 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: libcontrib.rez,v 1.2 1998/03/08 18:11:50 gdr-ftp Exp $
|
|
*/
|
|
#define LIB "lcontrib"
|
|
#define DESC "A library of non-standard but still useful subroutines.\n"
|
|
#define GNO_VER "GNO v2.0.6\n"
|
|
|
|
#include "Types.rez"
|
|
#include "/src/gno/build.tools/builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 0, 0, /* Version 1.0.0 */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
LIB, /* Program name */
|
|
DESC GNO_VER
|
|
BUILD_DATE
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
LIB " v1.0 (September 1997)\n"
|
|
DESC GNO_VER
|
|
BUILD_DATE
|
|
};
|