;; This is an implementation of the virtual library:
;; the file Driver.ml is present,
;; the file Driver.mli is absent.
(library
  (name driver_stage1)
  (implements driver)
  (libraries menhirSdk base front)
  (flags :standard -open MenhirSdk -open Base -open Front)
)

;; The lexer is the same in all stages.
;; It must be placed in this directory because it depends on Parser.

(ocamllex  Lexer)

;; In stage 1, Menhir's parser is generated by ocamlyacc.

(ocamlyacc Parser)
