To get the most recent version of

rdseed and evalresp go to

ftp://ftp.iris.washington.edu/pub/programs/

To get the most recent versions of Doug Neuhauser's
qmerge, ms2sac qlib2 caldata go to 

http://www.passcal.nmt.edu/software/software.html#downloads

-------

NOTE I HAVE CHANGED rdseed4.5/Main/output_resp.c to give more information
from the dataless SEED

----------------------
Order of compiling


#!/bin/sh

#####
#	Script for compiling the IRIS utilities
#####
DEST=../../bin


cd rdseed4.5
make rdseed clean
mv rdseed ${DEST}
cd Man
groff -man rdseed.l -P-plettter > rdseed.ps
ps2pdf rdseed.ps
mv rdseed.pdf ../../../DOC/IRIS.pdf 
cd ..
cd ..

cd evalresp-3.2.25
configure
make 
make clean
mv evalresp ${DEST}
groff -man evalresp.man -P-pletter > evalresp.ps
ps2pdf evalresp.ps
mv evalresp.pdf ../../DOC/IRIS.pdf
cd ..

cd qlib2
make 
groff -man qlib2.man -P-pletter > qlib2.ps
ps2pdf qlib2.ps
mv qlib2.pdf ../../DOC/IRIS.pdf
cd ..

cd ms2sac
make
make clean
mv ms2sac ${DEST}
groff -man ms2sac.man -P-pletter > ms2sac.ps
ps2pdf ms2sac.ps
mv ms2sac.pdf ../../DOC/IRIS.pdf
cd ..

cd qmerge
make
make clean
mv qmerge ${DEST}
groff -man qmerge.man -P-pletter > qmerge.ps
ps2pdf qmerge.ps
mv qmerge.pdf ../../DOC/IRIS.pdf
cd ..

cd caldate
make
make clean
mv caldate ${DEST}
groff -man caldate.man -P-pletter > caldate.ps
ps2pdf caldate.ps
mv caldate.pdf ../../DOC/IRIS.pdf
cd ..

-------------------------
MAC OSX INTEL gcc
	There is no malloc.h - change all instances of this in the code
	to stdlib.h   -- RBH 13 OCT 2006
