#!/bin/sh

PRE=`dirname $0`

if [ $# == 0 ] 
then
    echo "
Provide arguments to $PRE/tmp/bin/bisonc++. 
The skeletons in ${PRE}/share are used.
"
    exit 1
fi

${PRE}/tmp/bin/bisonc++ -B ${PRE}/share/bisonc++base.h \
                        -C ${PRE}/share/bisonc++.h \
                        -I ${PRE}/share/bisonc++.ih \
                        -P ${PRE}/share/bisonc++.cc $*
