Makefile:

changed to handle the new *.mk files
help.rez:
	added build date
This commit is contained in:
gdr-ftp 1998-03-08 17:40:55 +00:00
parent 4028b2d317
commit 7c0cc1c3d4
2 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# #
# $Id: Makefile,v 1.1 1997/10/30 03:51:55 gdr Exp $ # $Id: Makefile,v 1.2 1998/03/08 17:40:53 gdr-ftp Exp $
# #
PROG = help PROG = help
@ -12,10 +12,12 @@ MANDIR = /usr/man
RELBIN = $(RELEASE_DIR)$(BINDIR) RELBIN = $(RELEASE_DIR)$(BINDIR)
RELMAN = $(RELEASE_DIR)$(MANDIR) RELMAN = $(RELEASE_DIR)$(MANDIR)
build: $(PROG) build: $(OBJ_DIR) $(OBJ_DIR)$(PROG)
$(PROG): help.gsh $(PROG).r $(OBJ_DIR)$(PROG): help.gsh $(PROG).r
$(INSTALL) -m755 help.gsh $@ $(INSTALL) -m755 help.gsh $@
$(CATREZ) -d $@ $(PROG).r $(CATREZ) -d $@ $(OBJ_DIR)$(PROG).r
$(OBJ_DIR):; $(INSTALL) -d $(OBJ_DIR)
.INCLUDE: /src/gno/binrelease.mk .INCLUDE: /src/gno/binrelease.mk

View File

@ -1,8 +1,9 @@
/* /*
* $Id: help.rez,v 1.1 1997/10/30 03:51:56 gdr Exp $ * $Id: help.rez,v 1.2 1998/03/08 17:40:55 gdr-ftp Exp $
*/ */
#include "Types.Rez" #include "Types.Rez"
#include "/src/gno/build.tools/builddate.rez"
resource rVersion (0x1, purgeable3, nocrossbank) { resource rVersion (0x1, purgeable3, nocrossbank) {
@ -12,5 +13,6 @@ resource rVersion (0x1, purgeable3, nocrossbank) {
}, },
verUS, verUS,
"help", "help",
"Print the help file for an ORCA utility" "Print the help file for an ORCA utility\n"
BUILD_DATE
}; };