(env
 (dev
  (flags
   (:standard -w "+a-4-7-9-27-29-30-32..42-44-45-48-50-60-66..70"))))

(executable
 (public_name main)
 (name main)
 (modules main range lexer parser ast)
 (libraries unix str)
 (promote (until-clean)))

(executable 
  (public_name handparser)
  (name handparser)
  (modules handparser)
  (promote (until-clean))
)

(ocamllex lexer)

(menhir
 (modules parser)
 (flags --explain))
