blob: 3358d1a4e288a8822d794a606a2d6f62cc18bb74 (
plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
|
(install
(section lib)
(package coq)
(files
(CoqMakefile.in as tools/CoqMakefile.in)
(TimeFileMaker.py as tools/TimeFileMaker.py)
(make-one-time-file.py as tools/make-one-time-file.py)
(make-both-time-files.py as tools/make-both-time-files.py)
(make-both-single-timing-files.py as tools/make-both-single-timing-files.py)))
(executable
(name coq_makefile)
(public_name coq_makefile)
(package coq)
(modules coq_makefile)
(libraries coq.lib))
(executable
(name coqc)
(public_name coqc)
(package coq)
(modules coqc)
(libraries coq.toplevel))
(executable
(name coqdep)
(public_name coqdep)
(package coq)
(modules coqdep_lexer coqdep_common coqdep)
(libraries coq.lib))
(ocamllex coqdep_lexer)
(executable
(name coqwc)
(public_name coqwc)
(package coq)
(modules coqwc)
(libraries))
(ocamllex coqwc)
(executable
(name coq_tex)
(public_name coq_tex)
(package coq)
(modules coq_tex)
(libraries str))
(executable
(name coq_dune)
(public_name coq_dune)
(package coq)
(modules coq_dune)
(libraries str))
|