#
# makefile for creating DLIB and DRESP3 shared object files - Sun Solaris
#
#----------------------------------------

FC = /opt/SUNWspro/bin/f95
FFLAG = -O2 -dalign -xtarget=generic64 -xcode=pic32

all: dlib.so dresp3.so

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