mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-10 13:05:56 +00:00
0acddc1899
- renamed makefile.mk to Makefile
30 lines
564 B
Plaintext
30 lines
564 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*/
|
|
#define PROG "head"
|
|
#define DESC "Print the first part of a file."
|
|
|
|
#include "Types.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 2, 0, 0, /* Version 2.0.0 */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC " Released with GNO/ME."
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v2.0 (August 1997)\n"
|
|
"GNO utility: " DESC "\n"
|
|
"Ported from FreeBSD code by Dave Tribby."
|
|
};
|