#!/bin/sh

# This script will compile the version of libcfitsio in this directory
# The latest build will be in lib64 and include in this directory


cd libcfitsio
make clean
./configure
make clean
make
make install
