include ../../include/make.inc

.SUFFIXES : .f90 .o .a

LIB=../../../lib/libCube.a

OBJ= mat1.o mat2.o smcube.o

RM      = /bin/rm -f

COMPILE.f = $(FC) -c $(FFLAGS)

${LIB}: ${OBJ}
	ar r $@ ${OBJ}

.f90.o:
	$(COMPILE.f) $<
	
clean: 
	${RM} ${OBJ} ${LIB}

