#!/bin/sh
ENIGMA=./src/enigma
if test -e $ENIGMA; then
    $ENIGMA $*
else
    echo "Please run './configure' and 'make' to build Enigma."
fi
