#!/bin/bash
# Definitions for the CURVI package
# N. Gould, April 10th, 2019

# The name of the package
export PACKAGE=curvi

# Subdirectory of ${CUTEST}/src where the package lives
export PACKDIR=curvi

# Precision for which the package was written
# Valid values are "single", "double", "single double" and "double single"
export PACK_PRECISION="double"

# Define the name of any package object files used; any object file without
# a full path must occur in ${CUTEST}/objects/(architecture)/(precision)/
export PACKOBJS="${CURVI}/curvif.o ${CURVI}/curvig.o ${CURVI}/curvih.o ${CURVI}/rutf.o ${CURVI}/rutgh.o ${CURVI}/rut.o"

# Define package and system libraries using -llibrary to include library.a
# or library.so together with any nonstandard library paths using -L(path)
export PACKLIBS=""

# Define the name of the package specification file if any. This possibly
# precision-dependent file must either lie in the current directory or in
# ${CUTEST}/src/${PACKDIR}
export SPECS="CURVI.SPC"
