#!/bin/sh

exec 2>&1

set -e

test_calceph() {
  # Build the test program against the installed development libs
  gcc -o test-calceph test/src/test-calceph.c -lsupernovas -lsolsys-calceph -lcalceph
  
  # Run the test program
  ./test-calceph test/ephem
}

. shunit2
