#! /bin/sh

##
# This file was auto-generated by genconfig on Tue Aug  4 16:16:18 2015
##

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 "-L/usr/lib/i386-linux-gnu -lNetxx"
	    ;;

        --cflags)
	    echo "-I/usr/include"
	    ;;

	--cxxflags)
	    echo "-I/usr/include"
	    ;;

	*)
	    usage
	    ;;

    esac
    shift
done

exit 0
