From the looks of things, your makefile expects the yacc
executable to be available, and also not, or it is not in your path.
Since bison
supposed to be compatible with yacc
, the first thing I will try is:
alias yacc="bison"
and try again. In my setup, /usr/bin/yacc
is just a script containing:
#! /bin/sh exec '/usr/bin/bison' -y " $@ "
You can try to find yacc
or bison
executables using the command (replace bison with yacc if necessary):
which yacc
But they are probably in one of the standard places, such as /bin
or /usr/bin
.
source share