view taskmanager-config.in @ 20:29835fc96f9f default tip

add Scheduler add some documents.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Thu, 14 Jan 2010 15:08:06 +0900
parents
children
line wrap: on
line source

#!/bin/sh

prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@

usage="\
Usage: taskmanager-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]"

if [ $# -eq 0 ]; then
	echo "$usage" 1>&2
	exit 1
fi

while [ ! x"$1" = "x" ]; do
  case $1 in
    --prefix)
      echo $prefix
      ;;
    --exec-prefix)
      echo $exec_prefix
      ;;
    --version)
      echo @TM_VERSION@
      ;;
    --cflags)
      echo -I@includedir@ @TM_CFLAGS@
      ;;
    --libs)
      echo -L@libdir@ @TM_RLD_FLAGS@ @TM_LIBS@
      ;;
    *)
      echo "$usage" 1>&2
      exit 1
      ;;
  esac
  shift
done