#! /bin/sh

prefix="/usr/local"
exec_prefix=${prefix}

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

Known values for OPTION are:

  --prefix              NEST install prefix for architecture-independent files
  --exec-prefix         NEST install prefix for architecture-dependent files
  --libs                print library linking information
  --cflags              print pre-processor and compiler flags
  --includes            print includes
  --compiler            print the compiler used to compile NEST
  --python-executable   print full path to Python interpreter used
  --python-version      print Python version string for interpreter
  --static-libraries    print "ON" if configured for static libraries, "OFF" otherwise
  --docdir              print the relative path (to prefix) to the installed documentation
  --datadir             print the relative path (to prefix) to the installed data
  --libdir              print the relative path (to prefix) to the installed libraries
  --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
        ;;
    --exec-prefix)
        echo $exec_prefix
        ;;
    --version)
        echo "3.3"
        ;;
    --help)
        usage 0
        ;;
    --includes)
        echo " -I/usr/local/include/nest -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/usr/local/include "
        ;;
    --cflags)
        echo " -pipe -I/usr/local/include -I/usr/local/include/ncurses -O2 -fno-strict-aliasing -O2 -std=c++11 -Wall -fopenmp -fdiagnostics-color=auto  -pipe -I/usr/local/include -I/usr/local/include/ncurses -O2 -fno-strict-aliasing"
        ;;
    --libs)
        echo "-L$prefix/lib/nest -lnestutil -lnest -lsli -lnestkernel -fopenmp /usr/local/lib/libltdl.so /usr/local/lib/libreadline.so /usr/local/lib/libncurses.so /usr/local/lib/libgsl.so /usr/local/lib/libgslcblas.so     "
        ;;
    --compiler)
        echo "/usr/bin/g++"
        ;;
    --python-executable)
        echo "/usr/local/bin/python3.9"
        ;;
    --python-version)
        echo "3.9.16"
        ;;

    --static-libraries)
        echo "OFF"
        ;;
    --docdir)
        echo "share/doc/nest"
        ;;
    --datadir)
        echo "share/nest"
        ;;
    --libdir)
        echo "lib"
        ;;
    *)
        usage
        exit 1
        ;;
    esac
    shift
done

exit 0
