blob: 011af9c28cbf7e900dfe239d4221c218b5a72dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(library
(name kernel)
(synopsis "The Coq Kernel")
(public_name coq.kernel)
(wrapped false)
(modules_without_implementation cinstr nativeinstr)
(libraries clib config lib byterun))
(rule
(targets copcodes.ml)
(deps (:h-file byterun/coq_instruct.h) make-opcodes)
(action (run ./make_opcodes.sh %{h-file} %{targets})))
(documentation
(package coq))
|