#!/bin/bash

#settings:
# Mac OSX:
flags='-O3 -mmacosx-version-min=10.5'
# Linux:
flags='-O2 -ffree-line-length-none -static'
F77=gfortran

#compiling the code:
$F77 $flags  -o opconsat opconsat_tot.f90
$F77 $flags  -o eps2exc eps2exc_tot.f 
$F77 $flags  -o feff85L feff85L.f

