blob: b290672919610a7e6cfdcc88fa56ba9dcfb20323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
(library
(name
translator
)
(libraries menhirLib sounds modifiers repr)
)
(menhir
(modules tokens)
(flags --only-tokens) )
(menhir
(modules prononciation)
(flags --table --explain --dump) )
(menhir
(modules tokens parser)
(merge_into parser)
(flags --external-tokens Tokens --table --explain --dump) )
(ocamllex lexer)
|