#!/bin/sh

print_help()
{
  echo "Usage: mruby-config [switches]"
  echo "  switches:"
  echo "  --cflags                    print flags passed to compiler"
  echo "  --ldflags                   print flags passed to linker"
  echo "  --ldflags-before-libs       print flags passed to linker before linked libraries"
  echo "  --libs                      print linked libraries"
  echo "  --libmruby-path             print libmruby path"
  echo "  --help                      print this help"
  exit 0
}

if [ $# -eq 0 ]; then
   print_help
fi

while [ $# -gt 0 ]; do
  case $1 in
    --cflags) echo -std=gnu99 -O2 -pipe -I"/usr/ports/pobj/mruby-3.0.0/mruby-3.0.0/include" -I"/usr/ports/pobj/mruby-3.0.0/mruby-3.0.0/build/host/include";;
    --ldflags) echo  -L/usr/ports/pobj/mruby-3.0.0/mruby-3.0.0/build/host/lib;;
    --ldflags-before-libs) ;;
    --libs) echo -lmruby -lm -ltermcap -lreadline -lncurses;;
    --libmruby-path) echo /usr/ports/pobj/mruby-3.0.0/mruby-3.0.0/build/host/lib/libmruby.a;;
    *) print_help;;
  esac
  shift
done
