Makefile:

- Allow for sources to be on an appleshare volume.
This commit is contained in:
gdr-ftp 1999-01-15 06:43:16 +00:00
parent 41372644be
commit a10d56e871
1 changed files with 7 additions and 0 deletions

View File

@ -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