--- /dev/null
+#!/bin/bash
+set -e
+
+function usage {
+ cat <<USAGE
+configure PROJECT
+PROJECT = webssh
+USAGE
+}
+
+if [ -z "$1" ]
+then
+ usage
+ exit 7
+fi
+
+case $1 in
+webssh)
+ cat <<WEBSSH >debian/webssh.conf
+# generated by configure
+compile_type=ANY
+target_type=DEB
+WEBSSH
+ mconfigure -V webssh
+ ;;
+*)
+ echo "Invalid project."
+ usage
+ exit 25
+ ;;
+esac