blob: 0669e3a3c23ebb8c85e0cf168963a05305d0803a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(library
(name parsing)
(public_name coq.parsing)
(wrapped false)
(flags :standard -open Gramlib)
(libraries coq.gramlib proofs))
(rule
(targets g_prim.ml)
(deps (:mlg-file g_prim.mlg))
(action (run coqpp %{mlg-file})))
(rule
(targets g_constr.ml)
(deps (:mlg-file g_constr.mlg))
(action (run coqpp %{mlg-file})))
|