for f in $@
do
  echo "Processing $f file..."
  faust -lang fir $f -o ${f%.dsp}.fir
  diff ${f%.dsp}.fir ../reference/${f%.dsp}.fir ; echo Done
done
