* How to install?

  tar -xvzf gafit-VERSION.tar.gz
  cd gafit-VERSION
  ./configure
  make
  make install

* The binaries go into $HOME/bin and other files into $HOME/share. To
* install into /usr/local (note that you need superuser permissions.), 
* use:

  ./configure --prefix=/usr/local
  make
  sudo make install

* To force a fortran compiler (e.g. ifort) use:
 
  ./configure FC=ifort

* To force a C compiler (e.g. icc) use:

  ./configure CC=icc

* Or any combination above:

  ./configure --prefix=/usr/local FC=ifort CC=icc

* To compile with debug options:

  ./configure --enable-debug

* In addition, the usual targets of Autotools apply (i.e. make distcheck, 
* make clean etc).

