From 862139505151a7b6700bb8b3c47e37b8f56eb913 Mon Sep 17 00:00:00 2001 From: gdr-ftp Date: Thu, 31 Dec 1998 21:34:56 +0000 Subject: [PATCH] Makefile: added kludge to allow rez files to be on Appleshare. --- usr.bin/help/Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/usr.bin/help/Makefile b/usr.bin/help/Makefile index 5d9c00a..158e1bc 100644 --- a/usr.bin/help/Makefile +++ b/usr.bin/help/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/08 17:40:53 gdr-ftp Exp $ +# $Id: Makefile,v 1.3 1998/12/31 21:34:56 gdr-ftp Exp $ # PROG = help @@ -20,4 +20,12 @@ $(OBJ_DIR)$(PROG): help.gsh $(PROG).r $(OBJ_DIR):; $(INSTALL) -d $(OBJ_DIR) +# Implicit rule to handle Rez source on case sensitive Appleshare servers +.IF $(APPLESHARE_CASE_SENSITIVE) != $(NULL) +%.r : %.rez + $(INSTALL) $< $(TMPDIR)/$< + $(REZ) -o $@ -c $(REZFLAGS) $(TMPDIR)/$< + $(RM) -f $(TMPDIR)/$< +.END + .INCLUDE: /src/gno/binrelease.mk