#!/bin/sh prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ VERSION=@VERSION@ usage() { cat <&2 fi while test $# -gt 0; do case $1 in --prefix) echo_prefix=yes ;; --exec-prefix) echo_exec_prefix=yes ;; --version) echo ${VERSION} ;; --cppflags) echo_cppflags=yes ;; --cflags) echo_cflags=yes ;; --libs) echo_libs=yes ;; --ldflags) echo_ldflags=yes ;; *) usage 1 1>&2 ;; esac shift done libmpuio_cppflags=" -I${includedir}" libmpuio_cflags=" -I${includedir}" libmpuio_ldflags=" -L${libdir}" libmpuio_libs=" -lmpu -lmpuio" if test "x${echo_prefix}" = "xyes"; then echo ${prefix} fi if test "x${echo_exec_prefix}" = "xyes"; then echo ${exec_prefix} fi if test "x${echo_cppflags}" = "xyes"; then echo ${libmpuio_cppflags} fi if test "x${echo_cflags}" = "xyes"; then echo ${libmpuio_cflags} fi if test "x${echo_ldflags}" = "xyes"; then echo ${libmpuio_ldflags} fi if test "x${echo_libs}" = "xyes"; then echo ${libmpuio_libs} fi