mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-06 09:54:30 +00:00
libcrypt.rez:
- added rVersion Makefile: - specify sources vice objects so that the new *.mk macros work correctly.
This commit is contained in:
parent
227a5d4165
commit
cadd7ef99a
@ -1,13 +1,12 @@
|
||||
#
|
||||
# Makefile for libcrypt
|
||||
#
|
||||
# $Id: Makefile,v 1.1 1998/02/09 08:25:32 taubert Exp $
|
||||
# $Id: Makefile,v 1.2 1998/03/11 04:23:33 gdr-ftp Exp $
|
||||
#
|
||||
|
||||
LIB= crypt
|
||||
OBJ_ASM=crypta.o
|
||||
OBJ_C= crypt.o
|
||||
|
||||
OBJS= $(OBJ_ASM) $(OBJ_C)
|
||||
LIB = crypt
|
||||
SRCS = crypta.asm crypt.c
|
||||
|
||||
.INCLUDE: /src/gno/lib/lib.mk
|
||||
|
||||
crypta.o: crypta.mac
|
||||
|
33
lib/libcrypt/libcrypt.rez
Executable file
33
lib/libcrypt/libcrypt.rez
Executable file
@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Resources for version and comment
|
||||
*
|
||||
* $Id: libcrypt.rez,v 1.1 1998/03/11 04:23:34 gdr-ftp Exp $
|
||||
*/
|
||||
|
||||
#define LIB "libcrypt for GNO"
|
||||
#define PORTED "Ported from 4.4BSD\n"
|
||||
|
||||
#include "Types.rez"
|
||||
#include "/src/gno/build.tools/builddate.rez"
|
||||
|
||||
/*
|
||||
* Version
|
||||
*/
|
||||
resource rVersion (1, purgeable3) {
|
||||
{ 2, 0, 6, /* version */
|
||||
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
|
||||
};
|
Loading…
Reference in New Issue
Block a user