include ../include/make.inc
.SUFFIXES : .f90 .o .a

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

OBJ= lagrang3.o linear.o spline.o splint.o atang1.o avrh.o \
     polin2.o polint.o

RM      = /bin/rm -f


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

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

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

