#! /bin/bash

#C="$0"
#C=`readlink -f "$C"`
#C=`dirname "$C"`
#C=`ls -d1 "$C"`

# NOTE: if you moved this config please either use the above or
# make sure the following variables are up to date
prefix=/usr 
exec_prefix=/usr
includedir=/usr/include
libdir=/usr/lib64

ECHO="echo"
ECHOn="printf"

usage()
{
    cat <<EOF
Usage: libpolys-config [OPTION]

Known values for OPTION are:

  --prefix		show libpolys installation prefix 
  --libsg		print library linking information (with debug)
  --cflagsg		print pre-processor and compiler flags (with debug)
  --libs		print library linking information
  --cflags		print pre-processor and compiler flags
  --help		display this help and exit
  --version		output version information

EOF

    exit $1
}

if test $# -eq 0; then
    usage 1
fi

cflags=false
libs=false

while test $# -gt 0; do
    case "$1" in
    -*=*) optarg=`${ECHO} "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
    *) optarg= ;;
    esac

    case "$1" in
    --prefix=*)
	prefix=$optarg
	;;

    --prefix)
	${ECHO} $prefix
	;;

    --version)
	${ECHO} 3.1.2.sw
	exit 0
	;;

    --help)
	usage 0
	;;

    --cflagsg)
	${ECHOn} " -I${includedir} -I${includedir}/singular   "
	;;

    --cflags)
	${ECHOn} " -I${includedir} -I${includedir}/singular    -DNDEBUG -DOM_NDEBUG"
	;;

    --libsg)
	${ECHOn} " -L${libdir} -L${libdir}/singular -lpolys_g -lcoeffs_g -lreporter_g -lmisc_g -lfactory -lomalloc_g -lfindexec_g  -ldl -lgmp" 
	;;

    --libs)
	${ECHOn} " -L${libdir} -L${libdir}/singular -lpolys -lcoeffs -lreporter -lmisc -lfactory -lomalloc -lfindexec  -ldl -lgmp" 
	;;

    *)
	usage
	exit 1
	;;
    esac
    shift
done
${ECHO}

exit 0
