#
# makefile for creating DLIB and DRESP3 shared object files - ia64 Linux
#
#----------------------------------------

FC = ifort
FFLAG = -O

all: dlib.so dresp3.so

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