From 8b1eeb2e86a526e4eba7b69dd2f2a849d753610b Mon Sep 17 00:00:00 2001 From: gdr-ftp Date: Sun, 8 Mar 1998 18:11:50 +0000 Subject: [PATCH] Makefile: - the rez fork rules is now in one of the *.mk files; don't include it here - make sure the contrib.h header gets installed libcontrib.rez: - added the build date --- lib/libcontrib/Makefile | 9 ++++++--- lib/libcontrib/libcontrib.rez | 7 +++++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/lib/libcontrib/Makefile b/lib/libcontrib/Makefile index 87f9a52..41e9a79 100644 --- a/lib/libcontrib/Makefile +++ b/lib/libcontrib/Makefile @@ -1,7 +1,7 @@ # # This is the makefile for libcontrib, GNO v2.0.6 # -# $Id: Makefile,v 1.3 1998/02/08 03:47:29 gdr-ftp Exp $ +# $Id: Makefile,v 1.4 1998/03/08 18:11:49 gdr-ftp Exp $ # LIB = contrib @@ -11,7 +11,10 @@ CFLAGS += -I. -Slibcontrib .INCLUDE: /src/gno/lib/lib.mk -$(LIBTARGET):: lib$(LIB).r - $(CATREZ) -d $@ lib$(LIB).r +HDIR = $(RELEASE_DIR)/usr/include/gno + +release:: + $(INSTALL) -d $(HDIR) + $(INSTALL) contrib.h $(HDIR) $(OBJS):: contrib.h diff --git a/lib/libcontrib/libcontrib.rez b/lib/libcontrib/libcontrib.rez index 2635117..74cd21e 100644 --- a/lib/libcontrib/libcontrib.rez +++ b/lib/libcontrib/libcontrib.rez @@ -1,13 +1,14 @@ /* * Resources for version and comment * - * $Id: libcontrib.rez,v 1.1 1997/10/03 04:49:40 gdr Exp $ + * $Id: libcontrib.rez,v 1.2 1998/03/08 18:11:50 gdr-ftp Exp $ */ #define LIB "lcontrib" #define DESC "A library of non-standard but still useful subroutines.\n" -#define GNO_VER "GNO v2.0.6" +#define GNO_VER "GNO v2.0.6\n" #include "Types.rez" +#include "/src/gno/build.tools/builddate.rez" /* * Version @@ -19,6 +20,7 @@ resource rVersion (1, purgeable3) { verUS, /* Country */ LIB, /* Program name */ DESC GNO_VER + BUILD_DATE }; @@ -28,4 +30,5 @@ resource rVersion (1, purgeable3) { resource rComment (1, purgeable3) { LIB " v1.0 (September 1997)\n" DESC GNO_VER + BUILD_DATE };