#!/bin/tcsh -f

g++ -O2 -o bddcalc hashtbl.cxx lexer.cxx parser.cxx -lbdd -lm
foreach calfile ( `ls {.,examples}/*.cal` )
    echo "Running with cal file : $calfile" >> result
    ./bddcalc $calfile | egrep -v '^Garbage collection' >> result
end

