mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
cadd7ef99a
- added rVersion Makefile: - specify sources vice objects so that the new *.mk macros work correctly.
34 lines
570 B
Plaintext
Executable File
34 lines
570 B
Plaintext
Executable File
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: libcrypt.rez,v 1.1 1998/03/11 04:23:34 gdr-ftp Exp $
|
|
*/
|
|
|
|
#define LIB "libcrypt for GNO"
|
|
#define PORTED "Ported from 4.4BSD\n"
|
|
|
|
#include "Types.rez"
|
|
#include "/src/gno/build.tools/builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 2, 0, 6, /* version */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
LIB,
|
|
PORTED
|
|
BUILD_DATE
|
|
};
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
LIB "\n"
|
|
PORTED
|
|
BUILD_DATE
|
|
};
|