mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-04 22:08:21 +00:00
7eb6be5172
- modifications to allow the object files to be in the /obj hierarchy. - rename the object files during the build such that they can reside on a ProDOS partition. An unfortunate consequence of this is the requirement in this file for explicit recipes for any of the renamed object files. libnetdb.rez: - add an rVersion for the final library
32 lines
552 B
Plaintext
Executable File
32 lines
552 B
Plaintext
Executable File
/*
|
|
* $Id: libnetdb.rez,v 1.1 1998/02/15 19:27:20 gdr-ftp Exp $
|
|
*/
|
|
|
|
#define LIB "libnetdb for GNO"
|
|
#define PORTED "Ported from 4.4BSD by Derek Taubert.\n"
|
|
|
|
#include "Types.rez"
|
|
#include "/src/gno/build.tools/builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 2, 0, 6, /* Version 2.0.6 */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
LIB,
|
|
PORTED
|
|
BUILD_DATE
|
|
};
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
LIB "\n"
|
|
PORTED
|
|
BUILD_DATE
|
|
};
|