File: dune

package info (click to toggle)
coq-doc 8.16.1-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 42,788 kB
  • sloc: ml: 219,673; sh: 4,035; python: 3,372; ansic: 2,529; makefile: 728; lisp: 279; javascript: 87; xml: 24; sed: 2
file content (43 lines) | stat: -rw-r--r-- 1,510 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
(library
 (name top_printers)
 (public_name coq-core.top_printers)
 (synopsis "Coq's Debug Printers")
 (wrapped false)
 (modules top_printers)
 (optional)
 (libraries coq-core.toplevel coq-core.plugins.ltac))

(rule
  (targets dune-dbg)
  (deps
    dune-dbg.in
    ../checker/coqchk.bc
    ../topbin/coqc_bin.bc
    ../ide/coqide/coqide_main.bc
    ; We require all the OCaml libs to be in place and searchable
    ; by OCamlfind, this is a bit of a hack but until Dune gets
    ; proper ocamldebug support we have to live with that.
    %{lib:coq-core.config:config.cma}
    %{lib:coq-core.clib:clib.cma}
    %{lib:coq-core.lib:lib.cma}
    %{lib:coq-core.kernel:kernel.cma}
    %{lib:coq-core.vm:coqrun.cma}
    %{lib:coq-core.vm:../../stublibs/dllcoqrun_stubs.so}
    %{lib:coq-core.library:library.cma}
    %{lib:coq-core.engine:engine.cma}
    %{lib:coq-core.pretyping:pretyping.cma}
    %{lib:coq-core.gramlib:gramlib.cma}
    %{lib:coq-core.interp:interp.cma}
    %{lib:coq-core.proofs:proofs.cma}
    %{lib:coq-core.parsing:parsing.cma}
    %{lib:coq-core.printing:printing.cma}
    %{lib:coq-core.tactics:tactics.cma}
    %{lib:coq-core.vernac:vernac.cma}
    %{lib:coq-core.stm:stm.cma}
    %{lib:coq-core.sysinit:sysinit.cma}
    %{lib:coq-core.toplevel:toplevel.cma}
    %{lib:coq-core.plugins.ltac:ltac_plugin.cma}
    %{lib:coq-core.top_printers:top_printers.cmi}
    %{lib:coq-core.top_printers:top_printers.cma}
    %{lib:coq-core.top_printers:../META})
  (action (copy dune-dbg.in dune-dbg)))