usage()
{
cat <<EOF
Usage: libusb-config [OPTIONS] [LIBRARIES]
Options:
[--prefix[=DIR]]
[--exec-prefix[=DIR]]
[--version]
[--libs]
[--cflags]
EOF
exit $1
}
if test $# -eq 0; then
fi
while test $# -gt 0; do
case "$1" in
*) optarg= ;;
esac
case $1 in
--prefix=*)
if test $exec_prefix_set = no ; then
fi
;;
--prefix)
;;
--exec-prefix=*)
;;
--exec-prefix)
;;
--version)
echo 0.1.7
exit 0
;;
--cflags)
includes="-I${prefix}/include"
fi
;;
--libs)
;;
*)
;;
esac
shift
done
if test "$echo_prefix" = "yes"; then
echo $prefix
fi
if test "$echo_exec_prefix" = "yes"; then
echo $exec_prefix
fi
if test "$echo_cflags" = "yes"; then
echo $includes
fi
if test "$echo_libs" = "yes"; then
fi