#
# This is the make file for the user_lib library.
#
#				Gershon Elber, Aug 1990
#

include ../makeflag.ami

OBJS =  srfray.o srf_cntr.o user_ftl.o user_err.o

all:	libuser.a

libuser.a: $(OBJS)
	rm -f libuser.a
	ar rcv libuser.a *.o
	-ranlib libuser.a

install: libuser.a
	mv -f libuser.a $(LIB_DIR)

# DO NOT DELETE THIS LINE -- make depend depends on it.
