ocamlyacc is a Parser generator for OCaml (mostly deprecated by Menhir)
ocamlyacc is a Parser generator for OCaml, derived from yacc.
Used to build the OCaml compiler, it is included in the official distribution. However, it is not supported anymore, and the official policy is that OCaml users should use Menhir[2] instead. Indeed, Menhir is mostly backward compatible (it can read ocamlyacc source files), but improves over ocamlyacc in many directions (grammars can be combined, symbols can be named, etc.)
[2] http://gallium.inria.fr/~fpottier/menhir/
See also: