#!/bin/bash
# Definitions for the DFO package
# D. Orban, June 3, 2009.

# The name of the package
export PACKAGE=dfo

# Subdirectory of ${CUTEST}/src where the package lives
export PACKDIR=dfo
	
# Precision for which the package was written
# Valid values are "single", "double", "single double" and "double single"
PACK_PRECISION="double"

# Define the names of the object files for the package which must lie in
# a full path must occur in ${CUTEST}/objects/(architecture)/(precision)/
export PACKOBJS="${DFO}/ranlux.o"

# Define package and system libraries using -llibrary to include library.a
# or library.so together with any nonstandard library paths using -L(path).
# No need to mention the BLAS.
export PACKLIBS="-ldfo_ipopt `cat ${CUTEST}/objects/${ARCH}/${PRECISION}/ipopt.liblist`"

# 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="DFO.SPC"
