mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
2604b42f9a
out of 13/RInclude instead of /src/gno/build.tools. This implies that builddate.rez has to have been previously installed in 13/RInclude; this is done by the 'install' and 'release' targets in /src/gno/build.tools.
27 lines
685 B
Plaintext
27 lines
685 B
Plaintext
/*
|
|
* Copyright 1996-1997 Devin Reade <gdr@trenco.gno.org>.
|
|
* All rights reserved.
|
|
*
|
|
* For copying and distribution information, see the file "COPYING"
|
|
* accompanying this file.
|
|
*
|
|
* $Id: inst.rez,v 1.5 1998/12/22 16:05:41 gdr-ftp Exp $
|
|
*/
|
|
|
|
#include "Types.Rez"
|
|
#include "builddate.rez"
|
|
|
|
resource rVersion (0x1, purgeable3, nocrossbank) {
|
|
|
|
{ 1, 2, 0, /* version; also in inst.c and inst.desc */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 /* non-final release number */
|
|
},
|
|
verUS,
|
|
"install",
|
|
"Unix-style install program --\n"
|
|
" copies files and creates directories\n"
|
|
"Devin Reade\n"
|
|
BUILD_DATE
|
|
};
|