#!/bin/sh

BIN="bin/vlmc"
if [ -f $BIN ]; then
    exec $BIN "$@"
else
    echo "VLMC not build, read INSTALL first"
fi
