#! /bin/sh

##
# This file was auto-generated by genconfig on Mon Jul 18 20:54:17 2005
##

usage()
{
    cat <<EOH
Usage: Netxx-config [options]
  --version   print the version number for Netxx
  --libs      print the list of libraries you must use
  --cxxflags  print the C++ compiler flags to use
EOH

    exit 1
}

if test $# -eq 0; then
    usage
fi

while test $# -gt 0; do
    case "$1" in
	--version)
	    echo "0.3.2"
	    exit 0
	    ;;

	--libs)
	    echo "--slinkwith /home/jason/head/sip/tfm/contrib/Netxx-0.3.2/src,Netxx"
	    ;;

        --cflags)
	    echo "--include /home/jason/head/sip/tfm/contrib/Netxx-0.3.2/include"
	    ;;

	--cxxflags)
	    echo "--include /home/jason/head/sip/tfm/contrib/Netxx-0.3.2/include"
	    ;;

	*)
	    usage
	    ;;

    esac
    shift
done

exit 0
