#
# makefile for creating DLIB and DRESP3 shared object files - Compaq Tru64
#
#----------------------------------------

FC = /usr/bin/f77
FFLAG = -O -automatic

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
