#
# Makefile for the generation of the distributed array library
#
# DALIB, UNILIB, HOSTLIB
#
#  host program will run on the control processor (SUN4)
#
LIB   = dalib.a
LIB1  = unilib.a
#
#
ARCH    = CM5
AR      = ar
CC      = cc
COPT    = -g -D$(ARCH)
#
ALL     = $(LIB) $(LIB1)
#
include ../make.body
#
$(LIB): $(MODULES)
	$(AR) r $(LIB) $(MODULES)
	ranlib $(LIB)
#
$(LIB1): $(MODULES1)
	$(AR) r $(LIB1) $(MODULES1)
	ranlib $(LIB1)
#
