blob: 4673251002165010e8735e4ec0c0013ac3cfed21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(library
(name vernac)
(synopsis "Coq's Vernacular Language")
(public_name coq.vernac)
(wrapped false)
(flags :standard -open Gramlib)
(libraries tactics parsing))
(rule
(targets g_proofs.ml)
(deps (:mlg-file g_proofs.mlg))
(action (run coqpp %{mlg-file})))
(rule
(targets g_vernac.ml)
(deps (:mlg-file g_vernac.mlg))
(action (run coqpp %{mlg-file})))
|