#! /bin/sh
TARGET=x.xhtml
cd tst
if test $# -eq 0
then
    exec make "${TARGET}"
else
    exec make "$@"
fi
