mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-16 06:08:20 +00:00
b00e9eb797
- Renamed from makefile.mk to Makefile. - Updated for proper operation as part of GNO build. - Discontinue use of vaend.c, basename.c for GNO v2.0.6. descu: - Document ability to specify an output file vice stdout (this feature was already in, but not documented) - Allow the output file to be the same name as the first input file (it will be overwritten). - Fix buffer overrun bugs that occured when: a) There was no initial input file; or b) There are no headers in the first input file; or c) There are no trailers in the first input file; or - Increased SLOTS_QUANTUM from 20 to 64, hopefully increasing the speed on large files. - fixed stack check code to use the new routines names - put version number in lockstep with descc and describe descc: - descc will now change the database file type to BIN, if it wasn't already so. - changed default location of system database - fixed stack check code to use the new routines names - put version number in lockstep with descu and describe describe: - changed default location of system database - fixed stack check code to use the new routines names - put version number in lockstep with descu and descc *.rez: - added resource source files
35 lines
690 B
Plaintext
35 lines
690 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: descc.rez,v 1.1 1997/09/24 06:34:58 gdr Exp $
|
|
*/
|
|
#include "Types.rez"
|
|
|
|
/* Don't forget to update the version numbers, below (two places) */
|
|
#define PROG "descc"
|
|
#define DESC "describe(1) source compiler"
|
|
#define AUTHOR "Author: James Brookes <jamesb@ecst.csuchico.edu>"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 0, 4, /* Version 1.0.4 */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC " (GNO)"
|
|
};
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v1.0.4\n"
|
|
DESC " (GNO) \n"
|
|
AUTHOR
|
|
};
|
|
|
|
|