#!/bin/sh

if [ -d src ] ; then
  cd src;
  ./configure $*;
else
  echo "Error! src: not found."
fi

