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.
29 lines
532 B
Plaintext
Executable File
29 lines
532 B
Plaintext
Executable File
/*
|
|
* $Id: compile.rez,v 1.2 1998/12/22 16:05:38 gdr-ftp Exp $
|
|
*/
|
|
|
|
#define NAME "compile/cmpl/assemble/asml"
|
|
#define DESC "Compile (or assemble) a source file."
|
|
|
|
#include "Types.rez"
|
|
#include "builddate.rez"
|
|
|
|
/* Comment Templates */
|
|
resource rComment (1, purgeable3) {
|
|
NAME " v1.1\n"
|
|
DESC
|
|
};
|
|
|
|
/* Version */
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 1, 0, /* version */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 /* non-final release number */
|
|
},
|
|
verUS,
|
|
NAME,
|
|
DESC "\n"
|
|
BUILD_DATE
|
|
};
|
|
|