#!/bin/sh

#LIBS="-lInterface -lassembly -lOLA -lCutPart -lRatPart -lratext -lBH  -lAmpl_eval  -lRateval -lCuteval  -lCut_wCI -lBG -lfd  -lBHcore -lIntegrals -lSpinors "
LIBS="-lInterface -lassembly -lOLA -lCutPart -lRatPart -lratext -lBH  -lAmpl_eval  -lRateval -lCuteval  -lCut_wCI -lBG -lBHcore -lIntegrals -lSpinors "

case $1 in
  --version)
    echo 0.9.9;;
  --prefix)
    echo /usr;;
  --libs)
    echo -L/usr/lib64/blackhat $LIBS -L/usr/lib -lqd ;;
  --include)
    echo /usr/include;;
  *)
    echo "blackhat-config: configuration script";
    echo "Options:";
    echo "  blackhat-config --version : returns the version";
    echo "  blackhat-config --prefix  : returns the installation path";
    echo "  blackhat-config --include  : returns the path of the header";
    echo "  blackhat-config --libs    : returns the linker arguments to link blackhat";;
esac

