From a10d56e8718657918f35407892560572874b37b0 Mon Sep 17 00:00:00 2001 From: gdr-ftp Date: Fri, 15 Jan 1999 06:43:16 +0000 Subject: [PATCH] Makefile: - Allow for sources to be on an appleshare volume. --- usr.orca.bin/describe/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/usr.orca.bin/describe/Makefile b/usr.orca.bin/describe/Makefile index 45bd54c..3bb0c2a 100644 --- a/usr.orca.bin/describe/Makefile +++ b/usr.orca.bin/describe/Makefile @@ -86,3 +86,10 @@ install: $(INSTALL) $(OBJ_DIR)descc $(OBJ_DIR)descu $(SBINDIR) $(INSTALL) describe.1 $(MANDIR)/man1 $(INSTALL) descc.8 descu.8 $(MANDIR)/man8 + +.IF $(APPLESHARE_CASE_SENSITIVE) != $(NULL) +%.r : %.rez + $(INSTALL) $< $(TMPDIR) + cd $(TMPDIR); $(REZ) -o $@ -c $(REZFLAGS) $(TMPDIR)/$< + $(RM) -f $(TMPDIR)/$< +.END