#!/data/data/com.termux/files/usr/bin/sh

usage="\
Usage: ta-lib-config [--version] [--libs] [--cflags]"

if test $# -eq 0; then
      echo "${usage}" 1>&2
      exit 1
fi

while test $# -gt 0; do
  case $1 in
    --version)
      echo SVN
      ;;
    --cflags)
      echo -I${prefix}/include/ta-lib -DHAVE_CONFIG_H
      ;;
    --libs)
      echo -L/data/data/com.termux/files/usr/lib -lpthread -ldl  
      ;;
    *)
      echo "${usage}" 1>&2
      exit 1
      ;;
  esac
  shift
done
