#
# makefile for creating DLIB and DRESP3 shared object files - HP HP-UX (PA-RISC)
#
#----------------------------------------

FC = /opt/fortran90/bin/f90
FFLAG = -O +U77 +DA2.0W +DS2.0 +ppu +pic=long

all: dlib.so dresp3.so

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