mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-20 02:32:46 +00:00
4ddaf23478
- modified for use with the new *.mk files descc.rez, describe.rez, descu.rez: - added build date
38 lines
745 B
Plaintext
38 lines
745 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: descu.rez,v 1.4 1998/03/08 17:58:44 gdr-ftp Exp $
|
|
*/
|
|
#include "Types.rez"
|
|
|
|
/* Don't forget to update the version numbers, below (two places) */
|
|
#define PROG "descu"
|
|
#define DESC "describe(1) source update utility"
|
|
#define AUTHOR "Author: Devin Reade"
|
|
#define BUILD_DATE "Build Date: " $$Date
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 0, 6, /* Version */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC " (GNO)\n"
|
|
BUILD_DATE
|
|
};
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v1.0.6\n"
|
|
DESC " (GNO) \n"
|
|
BUILD_DATE "\n"
|
|
AUTHOR
|
|
};
|
|
|
|
|