#**********************************************************************
#
#     Copyright (C) 1991-1992  Roland W. Freund and Noel M. Nachtigal
#     All rights reserved.
#
#**********************************************************************
#
#  Makefile for the EISPACK subdirectory.
#

#
#  Files in this directory:
#
LIB = libdeis.a
OBJ = balanc.o cbal.o comqr.o hqr.o
SRC = dummy

#
#  Makefile include files.
#
include ../../header.mak
include ../../incl/local.mak

#
#  This is the local help target.
#
help::
	@echo "   make lib     - make the EISPACK library"
	@echo "   make nolib   - remove EISPACK library"

#
#  Dependencies for files in this directory.
#
dummy:
	@true

#
#  EISPACK library target.
#
$(LIB):	$(OBJ)
	@echo Making $@
	@$(AR) $(ARFLAGS) $@ $(OBJ)
	@$(RANLIB) $@
