diff options
| author | Théo Zimmermann | 2018-09-21 20:14:16 +0200 |
|---|---|---|
| committer | Théo Zimmermann | 2018-09-21 20:14:16 +0200 |
| commit | 6614041c46bff5c35abc7fe27e86b11504921d34 (patch) | |
| tree | 31d2d34ee829c828667279692c4053d502149d99 /tools | |
| parent | 88ae7e74b576b83180a957ff96e24625222e0369 (diff) | |
| parent | ac38da8efc5bb9d046cb70a886edba8f31fcb600 (diff) | |
Merge PR #8522: [dune] Improve support for Coq tools.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/coqdoc/dune | 6 | ||||
| -rw-r--r-- | tools/dune | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tools/coqdoc/dune b/tools/coqdoc/dune new file mode 100644 index 0000000000..8e05c7d97e --- /dev/null +++ b/tools/coqdoc/dune @@ -0,0 +1,6 @@ +(executable + (name main) + (public_name coqdoc) + (libraries str coq.config)) + +(ocamllex cpretty) diff --git a/tools/dune b/tools/dune index 2ba0e3fe8a..05a620fb07 100644 --- a/tools/dune +++ b/tools/dune @@ -10,6 +10,10 @@ (modules coq_makefile) (libraries coq.lib)) +(install + (section lib) + (files (CoqMakefile.in as tools/CoqMakefile.in))) + (executable (name coqdep) (public_name coqdep) @@ -19,6 +23,14 @@ (ocamllex coqdep_lexer) (executable + (name coqwc) + (public_name coqwc) + (modules coqwc) + (libraries)) + +(ocamllex coqwc) + +(executable (name coq_tex) (public_name coq_tex) (modules coq_tex) |
