#########################################################################
# File          : makefile                                              #
# Purpose       : Create complex version of Lanczos (A'A) Code          #
# Author        : Michael W. Berry (August 1999)                        #
#                                                                       #
#########################################################################
LINK		=  f77  
F77      	=  f77  -O -c  
#########################################################################
#

.f.o:  		 $*.f 
		${F77} $*.f

all:    	clas3.x
 
clas3.x:	clas3.o 
		${LINK} -o $@ clas3.o 

clean:
		/bin/rm -f ${UTILS}  *.o clas3.x 
