mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-05 13:05:44 +00:00
0cd26df27a
- renamed makefile.mk to Makefile
30 lines
573 B
Plaintext
30 lines
573 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*/
|
|
#define PROG "cat"
|
|
#define DESC "Concatenate and list files."
|
|
|
|
#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."
|
|
};
|