head     1.1;
access   ;
symbols  KSUrelease-Aug93:1.1;
locks    ; strict;
comment  @# @;


1.1
date     89.12.14.13.25.46;  author jay;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@.PHONY: all saber tags

ifdef ARCH

XX1 := $(addsuffix $(ARCH)/,$(dir $(LIB)))
XX2 := $(notdir $(LIB))
ARCHLIB := $(join $(XX1),$(XX2))
ARCHOBJS := $(addprefix $(ARCH)/,$(OBJS))

all: $(ARCHLIB)

$(ARCHLIB): $(ARCHOBJS)
	/bin/rm -f $(ARCHLIB)
	ar cq $(ARCHLIB) $(ARCHOBJS)
	ranlib $(ARCHLIB)

clean:
	-rm -f $(ARCHOBJS) $(ARCHLIB)

else 

all: $(LIB)

$(LIB): $(OBJS)
	/bin/rm -f $(LIB)
	ar cq $(LIB) $(OBJS)
	ranlib $(LIB)

clean:
	-rm -f $(OBJS) $(LIB)

endif 	# ARCH

install:

saber:
	%load $(CFLAGS) $(SRCS) $(SFLAGS)

@
