#
# makefile for creating DLIB and DRESP3 shared object files - SGI IRIX
#
#----------------------------------------

FC = f90
FFLAG = -64 -O2 -G 0  -mips4

all: dlib.so dresp3.so

dlib.so : dlib.f
	$(FC) -shared $(FFLAG) -o $@ dlib.f
dresp3.so : dresp3.f
	$(FC) -shared $(FFLAG) -o $@ dresp3.f
