#! /bin/sh
# pinball-config.  Generated from pinball-config.in by configure.
#

prefix=/usr/pkg
exec_prefix=/usr/pkg

usage()
{
	cat <<EOF
Usage: pinball-config [OPTION]
Options:
		[--version]
		[--libs]
		[--cflags]
		[--datadir]
		[--libdir]
		[--prefix]
		[--exec-prefix]
EOF
	exit $1
}

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

while test $# -gt 0; do
  case $1 in
    --version)
      echo 0.3.20201218
      ;;
    --cflags)
      echo_cflags=yes
      ;;
    --libs)
      echo_libs=yes
      ;;
    --datadir)
      echo_datadir=yes
      ;;
    --libdir)
      echo_libdir=yes
      ;;
    --prefix)
      echo_prefix=yes
      ;;
    --exec-prefix)
      echo_execprefix=yes
      ;;
    *)
      usage 1 1>&2
      ;;
  esac
  shift
done

if test "$echo_cflags" = "yes"; then
      echo -I${prefix}/include/pinball
fi

if test "$echo_libs" = "yes"; then
      echo -L${exec_prefix}/lib/pinball
fi      
if test "$echo_datadir" = "yes"; then
      echo ${prefix}/share/pinball
fi
if test "$echo_libdir" = "yes"; then
      echo ${exec_prefix}/lib/pinball
fi      
if test "$echo_prefix" = "yes"; then
      echo /usr/pkg
fi      
if test "$echo_execprefix" = "yes"; then
      echo @execprefix@
fi      
